-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d692879
commit 945b76e
Showing
4 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
openweathermaphelper/src/main/java/com/kwabenaberko/openweathermaplib/Lang.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package com.kwabenaberko.openweathermaplib; | ||
|
||
public class Lang { | ||
|
||
public static final String ARABIC = "ar"; | ||
public static final String BULGARIAN = "bg"; | ||
public static final String CATALAN = "ca"; | ||
public static final String CZECH = "cz"; | ||
public static final String GERMAN = "de"; | ||
public static final String GREEK = "el"; | ||
public static final String ENGLISH = "en"; | ||
public static final String PERSIAN = "fa"; | ||
public static final String FINNISH = "fi"; | ||
public static final String FRENCH = "fr"; | ||
public static final String GALICIAN = "gl"; | ||
public static final String CROATIAN = "hr"; | ||
public static final String HUNGARIAN = "hu"; | ||
public static final String ITALIAN = "it"; | ||
public static final String JAPANESE = "ja"; | ||
public static final String KOREAN = "kr"; | ||
public static final String LATVIAN = "la"; | ||
public static final String LITHUANIAN = "lt"; | ||
public static final String MACEDONIAN = "mk"; | ||
public static final String DUTCH = "nl"; | ||
public static final String POLISH = "pl"; | ||
public static final String PORTUGUESE = "pt"; | ||
public static final String ROMANIAN = "ro"; | ||
public static final String RUSSIAN = "ru"; | ||
public static final String SWEDISH = "se"; | ||
public static final String SLOVAK = "sk"; | ||
public static final String SLOVENIAN = "sl"; | ||
public static final String SPANISH = "es"; | ||
public static final String TURKISH = "tr"; | ||
public static final String UKRAINIAN = "ua"; | ||
public static final String VIETNAMESE = "vi"; | ||
public static final String CHINESE_SIMPLIFIED = "zh_cn"; | ||
public static final String CHINESE_TRADITIONAL = "zh_tw"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters