summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--i18n/de_DE.po6
-rw-r--r--i18n/messages.pot6
-rw-r--r--portato/gui/gtk/dialogs.py2
3 files changed, 11 insertions, 3 deletions
diff --git a/i18n/de_DE.po b/i18n/de_DE.po
index f3abf91..5ddb79c 100644
--- a/i18n/de_DE.po
+++ b/i18n/de_DE.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Portato\n"
"POT-Creation-Date: \n"
-"PO-Revision-Date: 2007-08-04 22:09-0800\n"
+"PO-Revision-Date: 2007-08-04 22:21-0800\n"
"Last-Translator: René 'Necoro' Neumann <necoro@necoro.net>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@@ -487,6 +487,10 @@ msgstr ""
"%(blocks)s blockiert %(blocked)s.\n"
"Bitte deinstalliere das blockierende Paket."
+#: portato/gui/gtk/dialogs.py:39
+msgid "You are not root."
+msgstr "Du bist nicht root."
+
#: portato/gui/gtk/dialogs.py:45
#, python-format
msgid ""
diff --git a/i18n/messages.pot b/i18n/messages.pot
index 42463bc..5699f0c 100644
--- a/i18n/messages.pot
+++ b/i18n/messages.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-08-04 21:44-0700\n"
+"POT-Creation-Date: 2007-08-04 22:21-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -470,6 +470,10 @@ msgid ""
"Please unmerge the blocking package."
msgstr ""
+#: portato/gui/gtk/dialogs.py:39
+msgid "You are not root."
+msgstr ""
+
#: portato/gui/gtk/dialogs.py:45
#, python-format
msgid ""
diff --git a/portato/gui/gtk/dialogs.py b/portato/gui/gtk/dialogs.py
index 4750bb2..2520add 100644
--- a/portato/gui/gtk/dialogs.py
+++ b/portato/gui/gtk/dialogs.py
@@ -36,7 +36,7 @@ def blocked_dialog (blocked, blocks):
return ret
def not_root_dialog ():
- errorMB = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, "_(You are not root."))
+ errorMB = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, _("You are not root."))
ret = errorMB.run()
errorMB.destroy()
return ret