summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-10-09 21:44:11 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-10-09 21:44:11 +0200
commitb04073137b49c47960056f4b8d1a02971bc71b81 (patch)
tree1d4d06edb160c7c15feeec436094fe70a01a26b5 /plugins
parentbe46e4c236d48e082e1c8e39736de861e4dedc7a (diff)
removed filename translation from everything except help.txt
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gtkui/callbacks.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/gtkui/callbacks.c b/plugins/gtkui/callbacks.c
index cd06eff3..0280c773 100644
--- a/plugins/gtkui/callbacks.c
+++ b/plugins/gtkui/callbacks.c
@@ -702,7 +702,7 @@ on_about1_activate (GtkMenuItem *menuitem,
char s[200];
snprintf (s, sizeof (s), _("About DeaDBeeF %s"), VERSION);
char fname[PATH_MAX];
- snprintf (fname, sizeof (fname), DOCDIR "/%s", _("about.txt"));
+ snprintf (fname, sizeof (fname), DOCDIR "/%s", "about.txt");
show_info_window (fname, s, &aboutwindow);
}
@@ -715,7 +715,7 @@ on_changelog1_activate (GtkMenuItem *menuitem,
char s[200];
snprintf (s, sizeof (s), _("DeaDBeeF %s ChangeLog"), VERSION);
char fname[PATH_MAX];
- snprintf (fname, sizeof (fname), DOCDIR "/%s", _("ChangeLog"));
+ snprintf (fname, sizeof (fname), DOCDIR "/%s", "ChangeLog");
show_info_window (fname, s, &changelogwindow);
}
@@ -726,7 +726,7 @@ on_gpl1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
char fname[PATH_MAX];
- snprintf (fname, sizeof (fname), DOCDIR "/%s", _("COPYING.GPLv2"));
+ snprintf (fname, sizeof (fname), DOCDIR "/%s", "COPYING.GPLv2");
show_info_window (fname, "GNU GENERAL PUBLIC LICENSE Version 2", &gplwindow);
}
@@ -737,7 +737,7 @@ on_lgpl1_activate (GtkMenuItem *menuitem,
gpointer user_data)
{
char fname[PATH_MAX];
- snprintf (fname, sizeof (fname), DOCDIR "/%s", _("COPYING.LGPLv2.1"));
+ snprintf (fname, sizeof (fname), DOCDIR "/%s", "COPYING.LGPLv2.1");
show_info_window (fname, "GNU LESSER GENERAL PUBLIC LICENSE Version 2.1", &lgplwindow);
}
@@ -1079,7 +1079,7 @@ on_translators1_activate (GtkMenuItem *menuitem,
char s[200];
snprintf (s, sizeof (s), _("DeaDBeeF Translators"));
char fname[PATH_MAX];
- snprintf (fname, sizeof (fname), DOCDIR "/%s", _("translators.txt"));
+ snprintf (fname, sizeof (fname), DOCDIR "/%s", "translators.txt");
show_info_window (fname, s, &translatorswindow);
}