update translations

This commit is contained in:
guinux
2014-11-22 11:53:14 +01:00
parent 8ca909659a
commit e8c13b45bb
59 changed files with 11693 additions and 13386 deletions

View File

@@ -462,7 +462,7 @@ namespace Pamac {
new Thread<int>.try ("commit thread", (ThreadFunc) trans_commit_real);
} else {
ErrorInfos err = ErrorInfos ();
err.str = dgettext (null, "Authentication failed");
err.str = _("Authentication failed");
emit_trans_committed (err);
trans_release ();
}

View File

@@ -650,7 +650,9 @@ namespace Pamac {
nb += 1;
}
}
choose_dep_dialog.label.set_markup ("<b>%s</b>".printf (dgettext (null, "%s has %u uninstalled optional dependencies.\nChoose those you would like to install:").printf (pkg.name, nb)));
choose_dep_dialog.label.set_markup ("<b>%s</b>".printf (
dngettext (null, "%s has %u uninstalled optional dependency.\nChoose if you would like to install it:",
"%s has %u uninstalled optional dependencies.\nChoose those you would like to install:", nb).printf (pkg.name, nb)));
choose_dep_dialog.run ();
choose_dep_dialog.hide ();
while (Gtk.events_pending ())