obo
4 months ago
2 changed files with 25 additions and 5 deletions
@ -0,0 +1,23 @@
|
||||
package com.fr.base.i18n; |
||||
|
||||
import com.fr.stable.fun.I18nProvider; |
||||
|
||||
import java.util.HashMap; |
||||
import java.util.Locale; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* description |
||||
* |
||||
* @author obo |
||||
* @since 11.0 |
||||
* Created on 2024/08/06 |
||||
*/ |
||||
public class ArabicI18nImpl implements I18nProvider { |
||||
@Override |
||||
public Map<Locale, String> obtainAll() { |
||||
Map<Locale, String> map = new HashMap<>(); |
||||
map.put(new Locale("ar", "SA"), "Fine-Core_Arabic_Language"); |
||||
return map; |
||||
} |
||||
} |
Loading…
Reference in new issue