Add in-app purchase localizations.
This commit is contained in:
parent
0365317a4e
commit
7b4292e189
|
@ -229,3 +229,11 @@
|
|||
|
||||
// Mark: Widget view.
|
||||
"widget.title.description" = "Widget with photos from Pixelfed.";
|
||||
|
||||
// Mark: In-app purchases.
|
||||
"purchase.donut.title" = "Donut";
|
||||
"purchase.donut.description" = "Treat me to a doughnut.";
|
||||
"purchase.cofee.title" = "Cofee";
|
||||
"purchase.cofee.description" = "Treat me to a coffe.";
|
||||
"purchase.cake.title" = "Cofee & cake";
|
||||
"purchase.cake.description" = "Treat me to a coffe and cake.";
|
||||
|
|
|
@ -229,3 +229,11 @@
|
|||
|
||||
// Mark: Widget view.
|
||||
"widget.title.description" = "Widget ze zdjęciami z Pixelfed.";
|
||||
|
||||
// Mark: In-app purchases.
|
||||
"purchase.donut.title" = "Pączek";
|
||||
"purchase.donut.description" = "Poczęstuj mnie pączkiem.";
|
||||
"purchase.cofee.title" = "Kawa";
|
||||
"purchase.cofee.description" = "Poczęstuj mnie kawą.";
|
||||
"purchase.cake.title" = "Kawa z ciastkiem";
|
||||
"purchase.cake.description" = "Poczęstuj mnie kawą i ciastkiem.";
|
||||
|
|
|
@ -13,6 +13,11 @@
|
|||
"description" : "Treat me to a doughnut.",
|
||||
"displayName" : "Donut",
|
||||
"locale" : "en_US"
|
||||
},
|
||||
{
|
||||
"description" : "Poczęstuj mnie pączkiem.",
|
||||
"displayName" : "Pączek",
|
||||
"locale" : "pl"
|
||||
}
|
||||
],
|
||||
"productID" : "dev.mczachurski.Vernissage.donut",
|
||||
|
@ -28,6 +33,11 @@
|
|||
"description" : "Treat me to a coffe.",
|
||||
"displayName" : "Cofee",
|
||||
"locale" : "en_US"
|
||||
},
|
||||
{
|
||||
"description" : "Poczęstuj mnie kawą.",
|
||||
"displayName" : "Kawa",
|
||||
"locale" : "pl"
|
||||
}
|
||||
],
|
||||
"productID" : "dev.mczachurski.Vernissage.cofee",
|
||||
|
@ -43,6 +53,11 @@
|
|||
"description" : "Treat me to a coffe and cake.",
|
||||
"displayName" : "Cofee & cake",
|
||||
"locale" : "en_US"
|
||||
},
|
||||
{
|
||||
"description" : "Poczęstuj mnie kawą i ciastkiem.",
|
||||
"displayName" : "Kawa z ciastkiem",
|
||||
"locale" : "pl"
|
||||
}
|
||||
],
|
||||
"productID" : "dev.mczachurski.Vernissage.cake",
|
||||
|
|
Loading…
Reference in New Issue