Updated German translation

removed "Development Warning" at start, was from the really beginning, not needed anymore
Updated About Dialog to 2015
presentation
Andreas Butti 11 years ago
parent 25d17d97f7
commit e706046830
  1. 1630
      po/de.po
  2. 22
      src/control/XournalMain.cpp
  3. 6
      src/gui/dialog/AboutDialog.cpp

1630
po/de.po

File diff suppressed because it is too large Load Diff

@ -163,7 +163,6 @@ int XournalMain::run(int argc, char* argv[])
GError* error = NULL;
GOptionContext* context = context = g_option_context_new("FILE");
bool optNoWarnSVN = false;
bool optNoPdfCompress = false;
gchar** optFilename = NULL;
gchar* pdfFilename = NULL;
@ -175,7 +174,6 @@ int XournalMain::run(int argc, char* argv[])
GOptionEntry options[] =
{
{ "no-warn-svn", 'w', 0, G_OPTION_ARG_NONE, &optNoWarnSVN, "Do not warn this is a development release", NULL },
{ "pdf-no-compress", 0, 0, G_OPTION_ARG_NONE, &optNoPdfCompress, "Don't compress PDF files (for debugging)", NULL },
{ "create-pdf", 'p', 0, G_OPTION_ARG_FILENAME, &pdfFilename, "PDF output filename", NULL },
{ "page", 'n', 0, G_OPTION_ARG_INT, &openAtPageNumber, "Jump to Page (first Page: 1)", "N" },
@ -221,26 +219,6 @@ int XournalMain::run(int argc, char* argv[])
GladeSearchpath* gladePath = initPath(argv[0]);
if (!optNoWarnSVN)
{
GtkWidget* dialog = gtk_message_dialog_new(NULL, GTK_DIALOG_MODAL,
GTK_MESSAGE_WARNING, GTK_BUTTONS_YES_NO, _(
"You are using a development release of Xournal\n"
"You can find the current release in CVS!\n"
"DO NOT USE THIS RELEASE FOR PRODUCTIVE ENVIRONMENT!\n"
"Are you sure you wish to start this release?\n\n\n"
"If you don't want to show this warning, you can run\n"
"\"xournalpp --help\"\n"));
int result = gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
if (result == -9)
{
exit(-1);
}
}
// init singleton
gchar* colorNameFile = g_build_filename(g_get_home_dir(), G_DIR_SEPARATOR_S,
CONFIG_DIR, "colornames.ini", NULL);

@ -24,9 +24,9 @@ AboutDialog::AboutDialog(GladeSearchpath* gladeSearchPath) :
String authors = "";
// Authors of the application
AUTOHOR("Denis Auroux, 2006 - 2010");
AUTOHOR("Andreas Butti, 2010 - 2012");
AUTOHOR("Wilson Brenna (tex support), 2012 - 2013");
AUTOHOR("Denis Auroux (Xournal), 2006 - 2010");
AUTOHOR("Andreas Butti (Xournal++), 2010 - 2015");
AUTOHOR("Wilson Brenna (tex support), 2012 - 2015");
w = get("lbAuthors");
gtk_label_set_text(GTK_LABEL(w), authors.c_str());

Loading…
Cancel
Save