GNOME Bugzilla – Bug 654865
Concatenating strings
Last modified: 2011-08-20 21:19:33 UTC
Construction Catalog.GetString ("Create destination folder for " + export_type_name + " Export") in Tomboy/ExportAllAplicationAddin.cs is not good. Some languages require different words order. Better way is: String.Format (Catalog.GetString ("Create destination folder for {0} Export"), export_type_name)
Created attachment 192222 [details] [review] Fixes the string. Missed this in code review, thanks for bringing it up.
Review of attachment 192222 [details] [review]: Cool.
Comment on attachment 192222 [details] [review] Fixes the string. Commited as 6ad6f26f1ed331a792de7741b512f7d5d0436198 This will be included in Tomboy 1.7.4 Thanks for reporting!