vtl: update ffmpeg option sameq/qscale
[ardour.git] / gtk2_ardour / i18n.h
index d9c2a44541068a85d0d28ab51dbf070e6f3c02ec..4b75d3431596162074e355c1cee16be53afc8ef5 100644 (file)
 #define N_(Text) gettext_noop (Text)
 #define X_(Text) Text
 #define I18N(Array) PBD::internationalize (PACKAGE, Array)
+/** Use this to translate strings that have different meanings in different places.
+ *  Text should be of the form Context|Message.
+ */
+#define S_(Text) PBD::sgettext (PACKAGE, Text)
+
+/** Use this to translate strings with plural forms
+ */
+#define P_(Singular,Plural,HowMany) dngettext (PACKAGE, (Singular), (Plural), (HowMany))
 
 #endif // __i18n_h__