mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-24 14:38:45 +00:00
bug5840: added missing "de" locale for Chargebee customer locale support
This commit is contained in:
+1
-1
@@ -169,7 +169,7 @@ public class ChargebeeSubscriptionWriteServiceImpl extends ChargebeeSubscription
|
||||
* Checks whether {@code locale} is supported as defined by Chargbee here: https://www.chargebee.com/docs/supported-locales.html
|
||||
*/
|
||||
private boolean isChargebeeSupportedLocale(String locale) {
|
||||
final Set<String> supportedLocales = new HashSet<>(Arrays.asList("en", "fr", "it", "pt", "es"));
|
||||
final Set<String> supportedLocales = new HashSet<>(Arrays.asList("en", "fr", "de", "it", "pt", "es"));
|
||||
return supportedLocales.contains(locale);
|
||||
}
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user