Code

i18n. Link/image properties dialog title is now fully translatable.
authorJazzyNico <nicoduf@yahoo.fr>
Wed, 20 Oct 2010 19:29:53 +0000 (21:29 +0200)
committerJazzyNico <nicoduf@yahoo.fr>
Wed, 20 Oct 2010 19:29:53 +0000 (21:29 +0200)
po/inkscape.pot
src/dialogs/object-attributes.cpp

index 6abc4f4e3df5aa78976127359bf776fa891896b4..3cfdfeaca7bca6bbf20d9a98d52d58ca8aa287bb 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 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"
@@ -7858,7 +7858,17 @@ msgstr ""
 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 ""
@@ -14549,7 +14559,7 @@ 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)
@@ -103,7 +103,14 @@ sp_object_attr_show_dialog ( SPObject *object,
         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);