Skip to content

Commit

Permalink
- mark visible strings for translations (bnc#807719)
Browse files Browse the repository at this point in the history
- 2.23.1
  • Loading branch information
jsuchome committed Mar 7, 2013
1 parent 84e1037 commit 8a3c939
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.23.0
2.23.1
6 changes: 6 additions & 0 deletions package/yast2-snapper.changes
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Mar 7 11:43:27 CET 2013 - jsuchome@suse.cz

- mark visible strings for translations (bnc#807719)
- 2.23.1

-------------------------------------------------------------------
Mon Nov 19 11:33:41 CET 2012 - aschnell@suse.de

Expand Down
10 changes: 5 additions & 5 deletions src/dialogs.ycp
Expand Up @@ -619,27 +619,27 @@ any ShowDialog () {
if (contains (status, "created"))
{
// label
content = add (content, `Left (`Label ("New file was created.")));
content = add (content, `Left (`Label (_("New file was created."))));
}
else if (contains (status, "removed"))
{
// label
content = add (content, `Left (`Label ("File was removed.")));
content = add (content, `Left (`Label (_("File was removed."))));
}
else if (contains (status, "no_change"))
{
// label
content = add (content, `Left (`Label ("File content was not changed.")));
content = add (content, `Left (`Label (_("File content was not changed."))));
}
else if (contains (status, "none"))
{
// label
content = add (content, `Left (`Label ("File does not exist in either snapshot.")));
content = add (content, `Left (`Label (_("File does not exist in either snapshot."))));
}
else if (contains (status, "diff"))
{
// label
content = add (content, `Left (`Label ("File content was modified.")));
content = add (content, `Left (`Label (_("File content was modified."))));
}
if (contains (status, "mode"))
{
Expand Down

0 comments on commit 8a3c939

Please sign in to comment.