This repository has been archived by the owner on Nov 29, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from code4romania/translations
Translations
- Loading branch information
Showing
107 changed files
with
694 additions
and
538 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
11 changes: 11 additions & 0 deletions
11
app/src/main/java/ro/code4/monitorizarevot/constants/Api.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,11 @@ | ||
package ro.code4.monitorizarevot.constants; | ||
|
||
public class Api { | ||
public static final String AUTH = "/api/v1/access/token"; | ||
public static final String FORM = "/api/v1/formular"; | ||
public static final String FORM_VERSION = "/api/v1/formular/versiune"; | ||
public static final String BRANCH = "/api/v1/sectie"; | ||
public static final String QUESTION_ANSWER = "/api/v1/raspuns"; | ||
public static final String NOTE = "/api/v1/note/ataseaza"; | ||
public static final String KEY_FORM_ID = "idformular"; | ||
} |
7 changes: 7 additions & 0 deletions
7
app/src/main/java/ro/code4/monitorizarevot/constants/Auth.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,7 @@ | ||
package ro.code4.monitorizarevot.constants; | ||
|
||
public class Auth { | ||
public static final String ACCESS_TOKEN = "access_token"; | ||
public static final String KEY = "Authorization"; | ||
public static final String BEARER = "Bearer"; | ||
} |
6 changes: 4 additions & 2 deletions
6
app/src/main/java/ro/code4/monitorizarevot/constants/Constants.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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
package ro.code4.monitorizarevot.constants; | ||
|
||
public class Constants { | ||
public static final String GUIDE_URL = "http://monitorizare-vot-ghid.azurewebsites.net/"; | ||
public static final String ORGANISATION_WEB_URL = "https://code4.ro/"; | ||
public static final String SERVICE_CENTER_PHONE_NUMBER = "0800 080 200"; | ||
public static String AUTHORIZATION_KEY = "Authorization"; | ||
|
||
public static final String TIME_FORMAT = "HH:mm"; | ||
public static final String DATE_FORMAT = "yyyy-MM-dd HH:mm:ss"; | ||
} |
Oops, something went wrong.