aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-accounts-dialog.c
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimo.cecchi@collabora.co.uk>2009-10-02 21:08:49 +0800
committerCosimo Cecchi <cosimo.cecchi@collabora.co.uk>2009-10-03 00:02:05 +0800
commit5087ba96c4c93f03784c92eab3ffc212ef551b88 (patch)
tree7b3ee3933f5958659ede494a8535ed0d56663b70 /src/empathy-accounts-dialog.c
parentfce1e0c10e9d02a010eceb1e5f3734b67a38b641 (diff)
downloadgsoc2013-empathy-5087ba96c4c93f03784c92eab3ffc212ef551b88.tar
gsoc2013-empathy-5087ba96c4c93f03784c92eab3ffc212ef551b88.tar.gz
gsoc2013-empathy-5087ba96c4c93f03784c92eab3ffc212ef551b88.tar.bz2
gsoc2013-empathy-5087ba96c4c93f03784c92eab3ffc212ef551b88.tar.lz
gsoc2013-empathy-5087ba96c4c93f03784c92eab3ffc212ef551b88.tar.xz
gsoc2013-empathy-5087ba96c4c93f03784c92eab3ffc212ef551b88.tar.zst
gsoc2013-empathy-5087ba96c4c93f03784c92eab3ffc212ef551b88.zip
Change strings for the remove dialog on the moblin build.
Diffstat (limited to 'src/empathy-accounts-dialog.c')
-rw-r--r--src/empathy-accounts-dialog.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c
index d81300f00..a06a847ca 100644
--- a/src/empathy-accounts-dialog.c
+++ b/src/empathy-accounts-dialog.c
@@ -799,16 +799,26 @@ accounts_dialog_view_delete_activated_cb (EmpathyCellRendererActivatable *cell,
}
question_dialog_primary_text = g_strdup_printf (
+#ifndef HAVE_NBTK
_("You are about to remove your %s account!\n"
"Are you sure you want to proceed?"),
+#else
+ /* Translators: this is used only when built on a moblin platform */
+ _("Do you want to remove %s from your computer?"),
+#endif /* HAVE_NBTK */
empathy_account_get_display_name (account));
accounts_dialog_show_question_dialog (dialog, question_dialog_primary_text,
+#ifndef HAVE_NBTK
_("Any associated conversations and chat rooms will NOT be "
"removed if you decide to proceed.\n"
"\n"
"Should you decide to add the account back at a later time, "
"they will still be available."),
+#else
+ /* Translators: this is used only when built on a moblin platform */
+ _("This will not remove your accounts on the server."),
+#endif /* HAVE_NBTK */
G_CALLBACK (accounts_dialog_delete_account_response_cb),
dialog,
GTK_STOCK_CANCEL, GTK_RESPONSE_NO,