mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 12:53:55 +01:00
Moved strings in code back to strings.xml
This commit is contained in:
parent
bc036c929d
commit
86711188e1
2 changed files with 4 additions and 2 deletions
|
|
@ -76,9 +76,9 @@ public class ContributionsActivity extends AuthenticatedActivity implements Load
|
|||
Date uploaded = new Date(cursor.getLong(COLUMN_UPLOADED));
|
||||
stateView.setText(SimpleDateFormat.getDateInstance().format(uploaded));
|
||||
} else if(state == Contribution.STATE_QUEUED) {
|
||||
stateView.setText("Queued");
|
||||
stateView.setText(R.string.contribution_state_queued);
|
||||
} else if(state == Contribution.STATE_IN_PROGRESS) {
|
||||
stateView.setText("Uploading");
|
||||
stateView.setText(R.string.contribution_state_in_progress);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue