Merge pull request #418 from b4n/spell-windows-windows

Spell "Windows" as "Windows", not "Win".
This commit is contained in:
Colomban Wendling 2015-03-04 15:58:47 +01:00
commit e0116ccd9c
2 changed files with 2 additions and 2 deletions

View File

@ -7706,7 +7706,7 @@
<object class="GtkRadioMenuItem" id="crlf">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">Convert and Set to _CR/LF (Win)</property>
<property name="label" translatable="yes">Convert and Set to _CR/LF (Windows)</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_crlf_activate" swapped="no"/>
</object>

View File

@ -374,7 +374,7 @@ const gchar *utils_get_eol_name(gint eol_mode)
{
switch (eol_mode)
{
case SC_EOL_CRLF: return _("Win (CRLF)"); break;
case SC_EOL_CRLF: return _("Windows (CRLF)"); break;
case SC_EOL_CR: return _("Classic Mac (CR)"); break;
default: return _("Unix (LF)"); break;
}