56 changed files with 85 additions and 55 deletions
@ -0,0 +1,23 @@ |
|||||||
|
package com.fr.design.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/07/16 |
||||||
|
*/ |
||||||
|
public class DesignI18nProviderImpl implements I18nProvider { |
||||||
|
@Override |
||||||
|
public Map<Locale, String> obtainAll() { |
||||||
|
Map<Locale, String> map = new HashMap<>(); |
||||||
|
map.put(new Locale("ar", "SA"), "Arabic"); |
||||||
|
return map; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue