aboutsummaryrefslogtreecommitdiffstats
path: root/embed/downloader-view.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-12-31 21:57:13 +0800
committerChristian Persch <chpe@src.gnome.org>2004-12-31 21:57:13 +0800
commit16ce1b8ba8df14c4afa53113384197e8a95d5bb8 (patch)
tree49a5cd4190992136ea55eede8e4e2fa976318710 /embed/downloader-view.c
parente832fe15f66ebacd3e624bc93c7ef8111f061829 (diff)
downloadgsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar
gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.gz
gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.bz2
gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.lz
gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.xz
gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.tar.zst
gsoc2013-epiphany-16ce1b8ba8df14c4afa53113384197e8a95d5bb8.zip
Add translator's comments to contextualised strings.
2004-12-31 Christian Persch <chpe@cvs.gnome.org> * embed/downloader-view.c: (progress_cell_data_func): * embed/ephy-encodings.c: * src/bookmarks/ephy-bookmarks.c: (ephy_bookmarks_init): * src/prefs-dialog.c: (get_name_for_lang_code): Add translator's comments to contextualised strings.
Diffstat (limited to 'embed/downloader-view.c')
-rw-r--r--embed/downloader-view.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/embed/downloader-view.c b/embed/downloader-view.c
index 2fc78b45a..ff8557ed5 100644
--- a/embed/downloader-view.c
+++ b/embed/downloader-view.c
@@ -516,15 +516,21 @@ progress_cell_data_func (GtkTreeViewColumn *col,
switch (state)
{
case EPHY_DOWNLOAD_INITIALISING:
+ /* Translators: The text before the "|" is context to help you decide on
+ * the correct translation. You MUST OMIT it in the translated string. */
text = Q_("download status|Unknown");
break;
case EPHY_DOWNLOAD_FAILED:
+ /* Translators: The text before the "|" is context to help you decide on
+ * the correct translation. You MUST OMIT it in the translated string. */
text = Q_("download status|Failed");
break;
case EPHY_DOWNLOAD_DOWNLOADING:
case EPHY_DOWNLOAD_PAUSED:
if (percent == -1)
{
+ /* Translators: The text before the "|" is context to help you decide on
+ * the correct translation. You MUST OMIT it in the translated string. */
text = Q_("download status|Unknown");
percent = 0;
}