Merge branch 'mjog/i18n-fixes' into 'mainline'
I18n fixes See merge request GNOME/geary!547
This commit is contained in:
commit
6b87249959
7 changed files with 19 additions and 5 deletions
|
|
@ -114,10 +114,19 @@ src/client/plugin/email-templates/email-templates.plugin.desktop.in
|
|||
src/client/plugin/email-templates/email-templates.vala
|
||||
src/client/plugin/folder-highlight/folder-highlight.plugin.desktop.in
|
||||
src/client/plugin/folder-highlight/folder-highlight.vala
|
||||
src/client/plugin/mail-merge/mail-merge-csv.vala
|
||||
src/client/plugin/mail-merge/mail-merge-folder.vala
|
||||
src/client/plugin/mail-merge/mail-merge-processor.vala
|
||||
src/client/plugin/mail-merge/mail-merge-test-processor.vala
|
||||
src/client/plugin/mail-merge/mail-merge-test-reader.vala
|
||||
src/client/plugin/mail-merge/mail-merge-test.vala
|
||||
src/client/plugin/mail-merge/mail-merge.plugin.desktop.in
|
||||
src/client/plugin/mail-merge/mail-merge.vala
|
||||
src/client/plugin/messaging-menu/messaging-menu.plugin.desktop.in
|
||||
src/client/plugin/messaging-menu/messaging-menu.vala
|
||||
src/client/plugin/notification-badge/notification-badge.plugin.desktop.in
|
||||
src/client/plugin/notification-badge/notification-badge.vala
|
||||
src/client/plugin/notification-badge/unity-launcher-entry.vala
|
||||
src/client/plugin/sent-sound/sent-sound.plugin.desktop.in
|
||||
src/client/plugin/sent-sound/sent-sound.vala
|
||||
src/client/plugin/special-folders/special-folders.plugin.desktop.in
|
||||
|
|
|
|||
|
|
@ -564,7 +564,7 @@ public class Application.MainWindow :
|
|||
// Translators: An info bar status label
|
||||
_("Security problem"),
|
||||
// Translators: An info bar description label
|
||||
_("An account has reported an untrusted server..")
|
||||
_("An account has reported an untrusted server.")
|
||||
);
|
||||
// Translators: An info bar button label
|
||||
var cert_retry = new Gtk.Button.with_label(_("Check"));
|
||||
|
|
|
|||
|
|
@ -846,7 +846,7 @@ public class Composer.Widget : Gtk.EventBox, Geary.BaseInterface {
|
|||
if (message.has_html_body()) {
|
||||
body = message.get_html_body(null);
|
||||
body_complete = body.contains(
|
||||
"""id="%s"""".printf(WebView.BODY_HTML_ID)
|
||||
"id=\"%s\"".printf(WebView.BODY_HTML_ID)
|
||||
);
|
||||
} else {
|
||||
body = message.get_plain_body(true, null);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
[Plugin]
|
||||
Module=desktop-notifications
|
||||
# Translators: This is an internal plugin so this name does not need
|
||||
# to be tanslated
|
||||
Name=Desktop Notifications
|
||||
Description=Displays desktop notifications when new email is delivered
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
[Plugin]
|
||||
Module=folder-highlight
|
||||
# Translators: This is an internal plugin so this name does not need
|
||||
# to be tanslated
|
||||
Name=Folder Highlight
|
||||
Description=Highlights folders that have newly delivered mail
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
[Plugin]
|
||||
Module=notification-badge
|
||||
# Translators: This is an internal plugin so this name does not need
|
||||
# to be tanslated.
|
||||
Name=Notification Badge
|
||||
Description=Displays a dock badge showing the number of new messages
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
[Plugin]
|
||||
Module=special-folders
|
||||
# Translators: This is an internal plugin so this name does not need
|
||||
# to be tanslated.
|
||||
Name=Special Folders
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue