Jared Rhine wrote:
2.) This for example: "Version %(versionNumber)s for %(platform)s" meens plural?

I am not sure I understand how this string would be plural in German. Can you explain further.

Maybe the confusion is the Python string formatting "%s". That is, "is that 'versionNumber' or 'versionNumber*s*'; why's that "s" in there?"
I think you're right Jared. So, Andreas, the formatted (and unmutable!) part of the message is "%(versionNumber)s":
- "%" : introduces the format
- "(versionNumber)": is the name of the variable
- "s" : is the type of the format, here, a string. In Chandler, we mostly use "s" here and have a few "d" (decimal number) here and there

Cheers,
- Philippe
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

Open Source Applications Foundation "chandler-dev" mailing list
http://lists.osafoundation.org/mailman/listinfo/chandler-dev

Reply via email to