Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Tue, 10 Feb 2015 16:15:38 UTC Commit: b2e5d08dad61b725f8cb89fc753497123d5570ec https://github.com/geany/geany/commit/b2e5d08dad61b725f8cb89fc753497123d5570...
Log Message: ----------- Spell "Windows" as "Windows", not "Win"
This makes the labels more clear using the canonical name, and avoids any confusion with the English word "win".
Modified Paths: -------------- data/geany.glade src/utils.c
Modified: data/geany.glade 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -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>
Modified: src/utils.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -373,7 +373,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; }
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).