summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/extension/internal/svg.cpp8
-rw-r--r--src/ui/dialog/inkscape-preferences.cpp4
2 files changed, 6 insertions, 6 deletions
diff --git a/src/extension/internal/svg.cpp b/src/extension/internal/svg.cpp
index 41fca734f..c4e12c174 100644
--- a/src/extension/internal/svg.cpp
+++ b/src/extension/internal/svg.cpp
@@ -137,10 +137,10 @@ Svg::init(void)
"<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
"<name>" N_("SVG Input") "</name>\n"
"<id>" SP_MODULE_KEY_INPUT_SVG "</id>\n"
- "<param name='link_svg' type='optiongroup' appearance='full' _gui-text='" N_("SVG Image Import Type:") "' _gui-description='" N_("Include SVG image as editable object(s) in the current file, Embed the SVG file in a image tag (not editable in this document) or Link the SVG file in a image tag (not editable in this document).") "' >\n"
- "<_option value='include' >" N_("Include") "</_option>\n"
- "<_option value='embed' >" N_("Embed") "</_option>\n"
- "<_option value='link' >" N_("Link") "</_option>\n"
+ "<param name='link_svg' type='optiongroup' appearance='full' _gui-text='" N_("SVG Image Import Type:") "' >\n"
+ "<_option value='include' >" N_("Include SVG image as editable object(s) in the current file") "</_option>\n"
+ "<_option value='embed' >" N_("Embed the SVG file in a image tag (not editable in this document)") "</_option>\n"
+ "<_option value='link' >" N_("Link the SVG file in a image tag (not editable in this document).") "</_option>\n"
"</param>\n"
"<param name='scale' appearance='minimal' type='optiongroup' _gui-text='" N_("Image Rendering Mode:") "' _gui-description='" N_("When an image is upscaled, apply smoothing or keep blocky (pixelated). (Will not work in all browsers.)") "' >\n"
"<_option value='auto' >" N_("None (auto)") "</_option>\n"
diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp
index 6b55da0da..ecf6204de 100644
--- a/src/ui/dialog/inkscape-preferences.cpp
+++ b/src/ui/dialog/inkscape-preferences.cpp
@@ -1559,14 +1559,14 @@ void InkscapePreferences::initPageBitmaps()
Glib::ustring labels[] = {_("Embed"), _("Link")};
Glib::ustring values[] = {"embed", "link"};
_bitmap_link.init("/dialogs/import/link", labels, values, G_N_ELEMENTS(values), "link");
- _page_bitmaps.add_line( false, _("Bitmap link:"), _bitmap_link, "", "", false);
+ _page_bitmaps.add_line( false, _("Bitmap import/open mode:"), _bitmap_link, "", "", false);
}
{
Glib::ustring labels[] = {_("Include"), _("Embed"), _("Link")};
Glib::ustring values[] = {"include", "embed", "link"};
_svg_link.init("/dialogs/import/link_svg", labels, values, G_N_ELEMENTS(values), "include");
- _page_bitmaps.add_line( false, _("SVG link:"), _svg_link, "", "", false);
+ _page_bitmaps.add_line( false, _("SVG import mode:"), _svg_link, "", "", false);
}
{