GNOME Bugzilla – Bug 762834
Don't break string just because of markup
Last modified: 2016-03-01 21:01:34 UTC
I understand why you wrote "Documents from your %s and %s will appear here." this way, but it's causing confusion and is not a case where you should do it this way. Read https://wiki.gnome.org/TranslationProject/DevGuidelines/Avoid%20markup%20wherever%20possible Your in the first case, "positional markup", therefore you should leave the string in one and not split it the way you do. Splitting is misleading and I had a translator creating a translation that would be something like "Documents from your Online Accounts accounts and Document Folder folder will appear here."
_("Documents from your <a href=\"system-settings\">Online Accounts</a> and <a href=\"file://%s\">Documents folder</a> will appear here.").format(GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_DOCUMENTS)); should work
Created attachment 322676 [details] [review] view: Don't split string when it is misleading
Review of attachment 322676 [details] [review]: Thanks. Looks good to me.