GNOME Bugzilla – Bug 708248
inconsistency in strings: libtool, whitespace use
Last modified: 2017-11-03 20:19:31 UTC
just this one is lowercase "libtool" #: ../plugins/am-project/am-project.c:124 msgid "Shared Library (libtool)" msgstr "Zdieľaná knižnica (libtool)" #: ../plugins/am-project/am-project.c:132 msgid "Module (Libtool)" msgstr "Modul (Libtool)" # Typ cieľa #: ../plugins/am-project/am-project.c:140 #, fuzzy msgid "Static Library (Libtool)"
why is a space in front of a bracket? #: ../plugins/document-manager/anjuta-docman.c:164 #, fuzzy #| msgid "[read-only]" msgid " [read-only]"
Spaces should not be at the end, use UI files to align #: ../plugins/language-support-js/anjuta-language-javascript.ui.h:12 msgid "Gir repository's directory: " #: ../plugins/language-support-js/anjuta-language-javascript.ui.h:13 msgid "Gjs repository's directory: " #: ../plugins/language-support-js/anjuta-language-javascript.ui.h:14 msgid "Min character for completion: "
#: ../plugins/language-support-python/anjuta-language-support-python.ui.h:9 msgid "Path: "
why space before ellipsis #: ../plugins/snippets-manager/snippets-browser.c:809 msgid "Add Snippet …" #: ../plugins/snippets-manager/snippets-browser.c:819 msgid "Add Snippets Group …"
This should be "PROFILE_FILE" #: ../src/anjuta-application.c:408 msgid "profile file"
Thank you for reporting all these. I have fixed everything except the > why is a space in front of a bracket? > #: ../plugins/document-manager/anjuta-docman.c:164 > #, fuzzy > #| msgid "[read-only]" > msgid " [read-only]" This string is concatenated after the filename, it is better to have a whitespace here. Do you think a translator comment is needed here? Another option would be to use format string but it's a bit more complex. I'm not sure it worths it.
(In reply to Sébastien Granjoux from comment #6) > This string is concatenated after the filename, it is better to have a > whitespace here. Do you think a translator comment is needed here? > A translator comment never hurt anybody. :)
Ok, I have just added a comment.