[gnumeric: 5/9] ssdiff: i18n.
- From: Morten Welinder <mortenw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnumeric: 5/9] ssdiff: i18n.
- Date: Mon, 24 Dec 2012 18:26:25 +0000 (UTC)
commit f12439daecc4589ff2e993cf907593d9528a7e94
Author: Morten Welinder <terra gnome org>
Date: Sat Dec 15 14:38:42 2012 -0500
ssdiff: i18n.
src/ssdiff.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/src/ssdiff.c b/src/ssdiff.c
index 64d3215..4da5bb8 100644
--- a/src/ssdiff.c
+++ b/src/ssdiff.c
@@ -93,37 +93,37 @@ def_cell_name (GnmCell const *oc)
static void
def_sheet_removed (GnmDiffState *state, Sheet const *os)
{
- g_printerr ("Sheet %s removed.\n", os->name_quoted);
+ g_printerr (_("Sheet %s removed.\n"), os->name_quoted);
}
static void
def_sheet_added (GnmDiffState *state, Sheet const *ns)
{
- g_printerr ("Sheet %s added.\n", ns->name_quoted);
+ g_printerr (_("Sheet %s added.\n"), ns->name_quoted);
}
static void
def_sheet_order_changed (GnmDiffState *state)
{
- g_printerr ("Sheet order changed.\n");
+ g_printerr (_("Sheet order changed.\n"));
}
static void
def_cell_removed (GnmDiffState *state, GnmCell const *oc)
{
- g_printerr ("Cell %s removed.\n", def_cell_name (oc));
+ g_printerr (_("Cell %s removed.\n"), def_cell_name (oc));
}
static void
def_cell_added (GnmDiffState *state, GnmCell const *nc)
{
- g_printerr ("Cell %s added.\n", def_cell_name (nc));
+ g_printerr (_("Cell %s added.\n"), def_cell_name (nc));
}
static void
def_cell_changed (GnmDiffState *state, GnmCell const *oc, GnmCell const *nc)
{
- g_printerr ("Cell %s changed.\n", def_cell_name (oc));
+ g_printerr (_("Cell %s changed.\n"), def_cell_name (oc));
}
static const GnmDiffActions default_actions = {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]