summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Dufour <nicoduf@yahoo.fr>2010-10-20 19:29:53 +0000
committerJazzyNico <nicoduf@yahoo.fr>2010-10-20 19:29:53 +0000
commit4153532698cd4f447d99ffa9d4cf91e4438077d3 (patch)
tree21f02253d9b764fcf7ec0720681afec224e9a773
parentUse a better snap metric for constrained snapping (i.e. calculate the distanc... (diff)
downloadinkscape-4153532698cd4f447d99ffa9d4cf91e4438077d3.tar.gz
inkscape-4153532698cd4f447d99ffa9d4cf91e4438077d3.zip
i18n. Link/image properties dialog title is now fully translatable.
(bzr r9838)
-rw-r--r--po/inkscape.pot16
-rw-r--r--src/dialogs/object-attributes.cpp9
2 files changed, 21 insertions, 4 deletions
diff --git a/po/inkscape.pot b/po/inkscape.pot
index 6abc4f4e3..3cfdfeaca 100644
--- a/po/inkscape.pot
+++ b/po/inkscape.pot
@@ -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 ""
diff --git a/src/dialogs/object-attributes.cpp b/src/dialogs/object-attributes.cpp
index 320840f76..fe5d9c3e1 100644
--- a/src/dialogs/object-attributes.cpp
+++ b/src/dialogs/object-attributes.cpp
@@ -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);