[f-spot] Fix order of arguments for translation.
- From: Ruben Vermeersch <rubenv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [f-spot] Fix order of arguments for translation.
- Date: Tue, 8 Jun 2010 09:33:57 +0000 (UTC)
commit 2302277a1b949f9d891f27dacd1c84462f393462
Author: Ruben Vermeersch <ruben savanne be>
Date: Tue Jun 8 11:33:09 2010 +0200
Fix order of arguments for translation.
https://bugzilla.gnome.org/show_bug.cgi?id=620941
src/PhotoVersionCommands.cs | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/PhotoVersionCommands.cs b/src/PhotoVersionCommands.cs
index 6e5114c..6e45143 100644
--- a/src/PhotoVersionCommands.cs
+++ b/src/PhotoVersionCommands.cs
@@ -193,9 +193,9 @@ public class PhotoVersionCommands
public bool Execute (PhotoStore store, Photo [] photos, Photo new_parent, Gtk.Window parent_window)
{
string ok_caption = Catalog.GetString ("Re_parent");
- string msg = String.Format (Catalog.GetPluralString ("Really reparent \"{2}\" as version of \"{1}\"?",
- "Really reparent {0} photos as versions of \"{1}\"?", photos.Length),
- photos.Length, new_parent.Name.Replace ("_", "__"), photos[0].Name.Replace ("_", "__"));
+ string msg = String.Format (Catalog.GetPluralString ("Really reparent \"{0}\" as version of \"{1}\"?",
+ "Really reparent {2} photos as versions of \"{1}\"?", photos.Length),
+ new_parent.Name.Replace ("_", "__"), photos[0].Name.Replace ("_", "__"), photos.Length);
string desc = Catalog.GetString ("This makes the photos appear as a single one in the library. The versions can be detached using the Photo menu.");
try {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]