summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2007-01-18 17:14:59 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2007-01-18 17:14:59 +0000
commit85806cc9f34adcf577baa6affd2721b4d4550a7b (patch)
tree2b524b3a2c779009d836801d1fb60ccd13473c49 /src
parenttext markup (diff)
downloadinkscape-85806cc9f34adcf577baa6affd2721b4d4550a7b.tar.gz
inkscape-85806cc9f34adcf577baa6affd2721b4d4550a7b.zip
text fixes
(bzr r2241)
Diffstat (limited to 'src')
-rw-r--r--src/selection-chemistry.cpp4
-rw-r--r--src/sp-item.cpp4
-rw-r--r--src/ui/dialog/filedialog.cpp10
-rw-r--r--src/ui/widget/style-swatch.cpp4
-rw-r--r--src/widgets/toolbox.cpp2
5 files changed, 12 insertions, 12 deletions
diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp
index 86f48fef2..61d6b9284 100644
--- a/src/selection-chemistry.cpp
+++ b/src/selection-chemistry.cpp
@@ -1751,10 +1751,10 @@ sp_selection_move_screen(gdouble dx, gdouble dy)
if (dx == 0) {
sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:vertical", SP_VERB_CONTEXT_SELECT,
- _("Nudge vertically by pixels"));
+ _("Move vertically by pixels"));
} else if (dy == 0) {
sp_document_maybe_done(sp_desktop_document(desktop), "selector:move:horizontal", SP_VERB_CONTEXT_SELECT,
- _("Nudge horizontally by pixels"));
+ _("Move horizontally by pixels"));
} else {
sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_SELECT,
_("Move"));
diff --git a/src/sp-item.cpp b/src/sp-item.cpp
index e5e2bb085..cefa7f82a 100644
--- a/src/sp-item.cpp
+++ b/src/sp-item.cpp
@@ -863,12 +863,12 @@ sp_item_description(SPItem *item)
if (((SPItemClass *) G_OBJECT_GET_CLASS(item))->description) {
gchar *s = ((SPItemClass *) G_OBJECT_GET_CLASS(item))->description(item);
if (s && item->clip_ref->getObject()) {
- gchar *snew = g_strdup_printf ("%s; <i>clipped</i>", s);
+ gchar *snew = g_strdup_printf (_("%s; <i>clipped</i>"), s);
g_free (s);
s = snew;
}
if (s && item->mask_ref->getObject()) {
- gchar *snew = g_strdup_printf ("%s; <i>masked</i>", s);
+ gchar *snew = g_strdup_printf (_("%s; <i>masked</i>"), s);
g_free (s);
s = snew;
}
diff --git a/src/ui/dialog/filedialog.cpp b/src/ui/dialog/filedialog.cpp
index 4d796ff9b..1b3467847 100644
--- a/src/ui/dialog/filedialog.cpp
+++ b/src/ui/dialog/filedialog.cpp
@@ -1805,15 +1805,15 @@ FileExportDialogImpl::FileExportDialogImpl(const Glib::ustring &dir,
const Glib::ustring &title,
const Glib::ustring &default_key) :
FileDialogBase(title, Gtk::FILE_CHOOSER_ACTION_SAVE),
- sourceX0Spinner("X0", _("Source left bound")),
- sourceY0Spinner("Y0", _("Source top bound")),
- sourceX1Spinner("X1", _("Source right bound")),
- sourceY1Spinner("Y1", _("Source bottom bound")),
+ sourceX0Spinner("X0", _("Left edge of source")),
+ sourceY0Spinner("Y0", _("Top edge of source")),
+ sourceX1Spinner("X1", _("Right edge of source")),
+ sourceY1Spinner("Y1", _("Bottom edge of source")),
sourceWidthSpinner("Width", _("Source width")),
sourceHeightSpinner("Height", _("Source height")),
destWidthSpinner("Width", _("Destination width")),
destHeightSpinner("Height", _("Destination height")),
- destDPISpinner("DPI", _("Dots per inch resolution"))
+ destDPISpinner("DPI", _("Resolution (dots per inch)"))
{
append_extension = (bool)prefs_get_int_attribute("dialogs.save_as", "append_extension", 1);
diff --git a/src/ui/widget/style-swatch.cpp b/src/ui/widget/style-swatch.cpp
index 34fb172ba..ef27ff390 100644
--- a/src/ui/widget/style-swatch.cpp
+++ b/src/ui/widget/style-swatch.cpp
@@ -271,9 +271,9 @@ StyleSwatch::setStyle(SPStyle *query)
place->add(*_color_preview[i]);
gchar *tip;
if (i == SS_FILL) {
- tip = g_strdup_printf ("Fill: %06x/%.3g", color >> 8, SP_RGBA32_A_F(color));
+ tip = g_strdup_printf (_("Fill: %06x/%.3g"), color >> 8, SP_RGBA32_A_F(color));
} else {
- tip = g_strdup_printf ("Stroke: %06x/%.3g", color >> 8, SP_RGBA32_A_F(color));
+ tip = g_strdup_printf (_("Stroke: %06x/%.3g"), color >> 8, SP_RGBA32_A_F(color));
}
_tooltips.set_tip(*place, tip);
g_free (tip);
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index f047ba412..2d030611e 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -941,7 +941,7 @@ sp_stb_proportion_value_changed(GtkAdjustment *adj, GtkWidget *tbl)
}
if (modmade) sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_STAR,
- _("Star: Change spike ratio"));
+ _("Star: Change spoke ratio"));
g_object_set_data(G_OBJECT(tbl), "freeze", GINT_TO_POINTER(FALSE));