fix a-eq interpolation
[ardour.git] / libs / ardour / i18n.h
index 43ae07cac130dadd05b158a4afae3039b2134809..b04c96d4353c1c5a9584345dd441a8b46c7e5146 100644 (file)
@@ -17,4 +17,8 @@
  */
 #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__