summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3b25ebd)
raw | patch | inline | side by side (parent: 3b25ebd)
author | JazzyNico <nicoduf@yahoo.fr> | |
Wed, 20 Oct 2010 19:29:53 +0000 (21:29 +0200) | ||
committer | JazzyNico <nicoduf@yahoo.fr> | |
Wed, 20 Oct 2010 19:29:53 +0000 (21:29 +0200) |
po/inkscape.pot | patch | blob | history | |
src/dialogs/object-attributes.cpp | patch | blob | history |
diff --git a/po/inkscape.pot b/po/inkscape.pot
index 6abc4f4e3df5aa78976127359bf776fa891896b4..3cfdfeaca7bca6bbf20d9a98d52d58ca8aa287bb 100644 (file)
--- a/po/inkscape.pot
+++ b/po/inkscape.pot
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-10-19 17:50+0200\n"
+"POT-Creation-Date: 2010-10-20 21:25+0200\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"
msgid "Y:"
msgstr ""
-#: ../src/dialogs/object-attributes.cpp:106
+#: ../src/dialogs/object-attributes.cpp:107
+#, c-format
+msgid "Link Properties"
+msgstr ""
+
+#: ../src/dialogs/object-attributes.cpp:109
+#, c-format
+msgid "Image Properties"
+msgstr ""
+
+#: ../src/dialogs/object-attributes.cpp:111
#, c-format
msgid "%s Properties"
msgstr ""
#. Item dialog
#. Fill and Stroke dialog
-#: ../src/ui/context-menu.cpp:507 ../src/ui/context-menu.cpp:542
+#: ../src/ui/context-menu.cpp:509 ../src/ui/context-menu.cpp:527
#: ../src/verbs.cpp:2628
msgid "_Fill and Stroke..."
msgstr ""
index 320840f76bc5387188c819367a6a9b0974c963c4..fe5d9c3e16b1413461e76e41c87b1cf249bb2e4a 100644 (file)
attrs[i] = desc[i].attribute;
}
- title = g_strdup_printf (_("%s Properties"), tag);
+ if (!strcmp (tag, "Link")) {
+ title = g_strdup_printf (_("Link Properties"));
+ } else if (!strcmp (tag, "Image")) {
+ title = g_strdup_printf (_("Image Properties"));
+ } else {
+ title = g_strdup_printf (_("%s Properties"), tag);
+ }
+
w = sp_window_new (title, TRUE);
g_free (title);