summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: bb126d7)
raw | patch | inline | side by side (parent: bb126d7)
author | buliabyak <buliabyak@users.sourceforge.net> | |
Thu, 18 Jan 2007 17:14:59 +0000 (17:14 +0000) | ||
committer | buliabyak <buliabyak@users.sourceforge.net> | |
Thu, 18 Jan 2007 17:14:59 +0000 (17:14 +0000) |
index 86f48fef2749cf6095321c6c79c60d30ad7b1a29..61d6b92846b4c5cc7adadbfd7ed3dd55d5e1203f 100644 (file)
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 e5e2bb0853492b17b03f90456419ef2d33f803b1..cefa7f82a15048e499a780e95321b95d64491f51 100644 (file)
--- a/src/sp-item.cpp
+++ b/src/sp-item.cpp
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;
}
index 4d796ff9bb7bb61dabae0f3556b4195396e3cc47..1b3467847200291e101b858d763e37bce7e936e9 100644 (file)
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);
index 34fb172ba42250aafa218ebbdd9d8f9c23f8bb7c..ef27ff390f2b8e88e1de201cdefb596cfb2bd659 100644 (file)
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);
index f047ba412ba13edafe2a5457b8b707176669eec7..2d030611e1c7e3d6f72d729fcdd986b668a336fa 100644 (file)
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
}
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));