diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 40ff413b72..1b551272eb 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,5 +1,14 @@
# Contributing to World Cleanup Day App and Platform
+Not sure how to start? Read on for the general process or [jump right in](GETTING_STARTED.md).
+
+- [Code of Conduct](#code-of-conduct)
+- [How can you contribute?](#how-you-can-contribute)
+- [Issue Contributions](#issue-contributions)
+- [Code Contributions](#code-contributions)
+- [Additional Notes](#additional-notes)
+- [Developer's Certificate of Origin 1.1](#developers-certificate-of-origin-11)
+
## Code of Conduct
* We are committed to providing a friendly, safe and welcoming environment for all, regardless of level of experience, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, nationality, or other similar characteristic.
@@ -13,7 +22,7 @@
* Likewise any spamming, trolling, flaming, baiting or other attention-stealing behavior is not welcome.
* Avoid the use of personal pronouns in code comments or documentation. There is no need to address persons when explaining code (e.g. "When the developer").
-## How you can contribute?
+## How you can contribute?
Do you like to design?
* Create art for social media banners to promote the project
diff --git a/GETTING_STARTED.md b/GETTING_STARTED.md
new file mode 100644
index 0000000000..9788587a91
--- /dev/null
+++ b/GETTING_STARTED.md
@@ -0,0 +1,38 @@
+# Getting started
+
+This document will help you set up the project for development.
+
+## Basic dependencies
+Install git, docker, docker-compose, node and yarn.
+
+
+## Backend services
+Consult the dedicated [readme](devops/dev/README.md) to set them up, run
+them and verify they work.
+
+### Adding dummy data
+This repository comes without trashpoint data. You will need some to work
+on the related APIS or marker related functionality.
+
+**TODO:** expand with wcd_dummy instructions
+
+
+## Web-app (admin backend)
+Consult the dedicated [readme](web-app/README.md), but in essence:
+
+```bash
+npm install # the first time
+npm start
+```
+
+## Mobile-apps
+Consult the dedicated [readme](mobile-app/README.md).
+
+
+## Extra reading
+
+* [Contributing](./CONTRIBUTING.md) to World Cleanup Day App and Platform
+* [Code of Conduct](./CODE_OF_CONDUCT.md)
+* [Governance](./GOVERNANCE.md)
+* [Roadmap](./ROADMAP.md)
+* Issues marked [good first issue](https://github.com/letsdoitworld/World-Cleanup-Day/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)
diff --git a/README.md b/README.md
index 6aeef6126c..1df7204b4d 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
[![Join the chat at https://gitter.im/letsdoitworld/World-Cleanup-Day](https://badges.gitter.im/letsdoitworld/World-Cleanup-Day.svg)](https://gitter.im/letsdoitworld/World-Cleanup-Day?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
-Over 17 million trash heroes have already cleaned up more than 500 000 tonnes of trash in over 100 countries! The movement against pollution is growing fast and we're now building the World Cleanup App and Platform for the hundreds of millions of people people joining the World Cleanup Day on **15th of September 2018**.
+Over 20 million trash heroes have already cleaned up more than 500 000 tonnes of trash in over 100 countries! The movement against pollution is growing fast and we're now building the World Cleanup App and Platform for the hundreds of millions of people people joining the World Cleanup Day on **15th of September 2018**.
Together we will get rid of trash once and for all, save lives, improve health & reduce costs. Read below on how you can participate! Let's do it! đ
@@ -43,6 +43,12 @@ Join the movement and let's clean up the World together!
## API
See the [API docs](http://ldiw-api.s3-website.eu-central-1.amazonaws.com/)
+## Translations
+See [translate.worldcleanupday.org](https://translate.worldcleanupday.org/ )
+
+## Chat
+Join our [Slack chatroom](https://join.slack.com/t/worldcleanupday/shared_invite/enQtMzM0NDQ0MTE5NDI3LThmYTUxNGRiYmQ2ZGVkODJmMDAwN2U3YWVhMTI2ZmU4ZjBlMzk0YjM2YjU0MjNhNmE4ZWEwNDJkN2U0ZjMyZWY)
+
## Roadmap
See [Roadmap.md](https://github.com/letsdoitworld/World-Cleanup-Day/blob/master/ROADMAP.md)
diff --git a/mobile-app/src/components/AlertModal/styles.js b/mobile-app/src/components/AlertModal/styles.js
index ba5a17af80..66ff1a02bb 100644
--- a/mobile-app/src/components/AlertModal/styles.js
+++ b/mobile-app/src/components/AlertModal/styles.js
@@ -4,10 +4,10 @@ import { getHeightPercentage, getWidthPercentage } from '../../shared/helpers';
export default EStyleSheet.create({
container: {
backgroundColor: '$white',
- marginVertical: getHeightPercentage(178),
+ marginVertical: getHeightPercentage(168),
marginHorizontal: getWidthPercentage(20),
borderRadius: 8,
- height: getHeightPercentage(212),
+ height: getHeightPercentage(232),
width: getWidthPercentage(280),
alignItems: 'center',
},
diff --git a/mobile-app/src/components/PhotoModal/PhotoModal.js b/mobile-app/src/components/PhotoModal/PhotoModal.js
new file mode 100644
index 0000000000..fcc19dcf50
--- /dev/null
+++ b/mobile-app/src/components/PhotoModal/PhotoModal.js
@@ -0,0 +1,47 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import {
+ Image,
+ Modal,
+ TouchableOpacity,
+} from 'react-native';
+import { Ionicons } from '@expo/vector-icons';
+
+import styles from './styles';
+
+const PhotoModal = ({ visible, onRequestClose, photoUrl }) => {
+ return (
+
+
+
+
+
+
+
+ );
+};
+
+PhotoModal.propTypes = {
+ visible: PropTypes.bool.isRequired,
+ onRequestClose: PropTypes.func.isRequired,
+ photoUrl: PropTypes.string.isRequired,
+};
+
+export default PhotoModal;
diff --git a/mobile-app/src/components/PhotoModal/index.js b/mobile-app/src/components/PhotoModal/index.js
new file mode 100644
index 0000000000..9bf0046f3b
--- /dev/null
+++ b/mobile-app/src/components/PhotoModal/index.js
@@ -0,0 +1 @@
+export { default as PhotoModal } from './PhotoModal.js';
diff --git a/mobile-app/src/components/PhotoModal/styles.js b/mobile-app/src/components/PhotoModal/styles.js
new file mode 100644
index 0000000000..19247b2e51
--- /dev/null
+++ b/mobile-app/src/components/PhotoModal/styles.js
@@ -0,0 +1,25 @@
+import EStyleSheet from 'react-native-extended-stylesheet';
+import { getHeightPercentage, getWidthPercentage } from '../../shared/helpers';
+
+const styles = EStyleSheet.create({
+ $iconSize: getWidthPercentage(20),
+ buttonIcon: {
+ textAlign: 'center',
+ color: 'white',
+ },
+ buttonBody: {
+ width: getWidthPercentage(30),
+ height: getHeightPercentage(30),
+ marginLeft: getWidthPercentage(265),
+ marginTop: getHeightPercentage(20),
+ alignItems: 'center',
+ justifyContent: 'center',
+ backgroundColor: '#fe6669',
+ borderRadius: 4,
+ },
+ modal: {
+ backgroundColor: '#d8d8d8',
+ },
+});
+
+export default styles;
diff --git a/mobile-app/src/components/PhotoPicker/PhotoPicker.js b/mobile-app/src/components/PhotoPicker/PhotoPicker.js
index ad62362b79..cc70123207 100644
--- a/mobile-app/src/components/PhotoPicker/PhotoPicker.js
+++ b/mobile-app/src/components/PhotoPicker/PhotoPicker.js
@@ -1,11 +1,16 @@
import React from 'react';
import PropTypes from 'prop-types';
-import { Image, View, Text, TouchableOpacity, ScrollView } from 'react-native';
+import {
+ View,
+ Text,
+ TouchableOpacity,
+ ScrollView,
+} from 'react-native';
import { Ionicons } from '@expo/vector-icons';
-import _ from 'lodash';
import { translate } from 'react-i18next';
import { AlertModal } from '../AlertModal';
+import { PhotoModal } from '../PhotoModal';
import { LazyImage } from './components/LazyImage';
import styles from './styles';
@@ -35,6 +40,7 @@ class Photo extends React.Component {
super(props);
this.state = {
showingConfirm: false,
+ showZoomedPhoto: false,
};
this.buttons = [
@@ -49,57 +55,92 @@ class Photo extends React.Component {
},
];
}
+
setConfirmState = (showingConfirm) => {
this.setState({
showingConfirm,
});
- };
+ }
+
handlePhotoDeletePress = () => {
this.setConfirmState(true);
- };
+ }
+
handleModalClosed = () => {
this.setConfirmState(false);
- };
+ }
+
handleModalConfirmed = () => {
this.setConfirmState(false);
- this.props.onPress();
- };
+ this.props.onDeletePress();
+ }
+
+ openZoomedPhoto = () => {
+ const { photo } = this.props;
+ this.setState({
+ zoomedPhotoUrl: photo.mediumPhotoUrl,
+ showZoomedPhoto: true,
+ });
+ }
+
+ closeZoomedPhoto = () => {
+ this.setState({
+ showZoomedPhoto: false,
+ });
+ }
+
render() {
- const { photo, onPress } = this.props;
+ const { photo, onDeletePress } = this.props;
const { showingConfirm } = this.state;
return (
-
-
- {onPress &&
-
-
- }
-
-
+
+
-
-
+
+ {onDeletePress &&
+
+
+ }
+
+
+
+
+
);
}
}
+
Photo.defaultProps = {
- onPress: undefined,
+ onDeletePress: undefined,
};
+
Photo.propTypes = {
- photo: PropTypes.string.isRequired,
- onPress: PropTypes.func,
+ photo: PropTypes.shape({
+ thumbnailUrl: PropTypes.string.isRequired,
+ mediumPhotoUrl: PropTypes.string.isRequired,
+ }).isRequired,
+ onDeletePress: PropTypes.func,
};
const PhotoComponent = translate()(Photo);
@@ -131,15 +172,15 @@ const PhotoPicker = ({
style={styles.photoContainer}
>
{hasPhotos &&
- photos.map((uri, index) => {
+ photos.map((photo, index) => {
const onDeletePhotoPress = hasDelete
? () => onDeletePress(index)
: undefined;
return (
);
})}
@@ -152,15 +193,21 @@ const PhotoPicker = ({
);
};
+
PhotoPicker.defaultProps = {
maxPhotos: undefined,
onDeletePress: undefined,
onAddPress: undefined,
};
+
PhotoPicker.propTypes = {
- photos: PropTypes.arrayOf(PropTypes.string.isRequired).isRequired,
+ photos: PropTypes.arrayOf(PropTypes.shape({
+ thumbnailUrl: PropTypes.string.isRequired,
+ mediumPhotoUrl: PropTypes.string.isRequired,
+ }).isRequired).isRequired,
onDeletePress: PropTypes.func,
onAddPress: PropTypes.func,
maxPhotos: PropTypes.number,
};
+
export default translate()(PhotoPicker);
diff --git a/mobile-app/src/config/i18n.js b/mobile-app/src/config/i18n.js
index 13caca3f01..7277b290e5 100644
--- a/mobile-app/src/config/i18n.js
+++ b/mobile-app/src/config/i18n.js
@@ -45,13 +45,13 @@ i18n.use(languageDetector).init({
// i18n.addResources('ar', 'general', require('../trans/ar.json'));
// i18n.addResources('ay', 'general', require('../trans/ay.json'));
-// i18n.addResources('be', 'general', require('../trans/be.json'));
+i18n.addResources('be', 'general', require('../trans/be.json'));
// i18n.addResources('bg', 'general', require('../trans/bg.json'));
// i18n.addResources('bo', 'general', require('../trans/bo.json'));
// i18n.addResources('bs', 'general', require('../trans/bs.json'));
// i18n.addResources('ca', 'general', require('../trans/ca.json'));
-// i18n.addResources('ceb', 'general', require('../trans/ceb.json'));
+i18n.addResources('ceb', 'general', require('../trans/ceb.json'));
// i18n.addResources('cs', 'general', require('../trans/cs.json'));
// i18n.addResources('csb', 'general', require('../trans/csb.json'));
// i18n.addResources('cy', 'general', require('../trans/cy.json'));
@@ -60,15 +60,15 @@ i18n.use(languageDetector).init({
// i18n.addResources('de', 'general', require('../trans/de.json'));
// i18n.addResources('ee', 'general', require('../trans/ee.json'));
-// i18n.addResources('el', 'general', require('../trans/el.json'));
+i18n.addResources('el', 'general', require('../trans/el.json'));
i18n.addResources('en', 'general', require('../trans/en.json'));
i18n.addResources('es', 'general', require('../trans/es.json'));
-// i18n.addResources('et', 'general', require('../trans/et.json'));
+i18n.addResources('et', 'general', require('../trans/et.json'));
// i18n.addResources('eu', 'general', require('../trans/eu.json'));
// i18n.addResources('fa', 'general', require('../trans/fa.json'));
// i18n.addResources('fi', 'general', require('../trans/fi.json'));
-// i18n.addResources('fil', 'general', require('../trans/fil.json'));
+i18n.addResources('fil', 'general', require('../trans/fil.json'));
// i18n.addResources('fj', 'general', require('../trans/fj.json'));
i18n.addResources('fr', 'general', require('../trans/fr.json'));
@@ -83,7 +83,7 @@ i18n.addResources('hi', 'general', require('../trans/hi.json'));
// i18n.addResources('hmn', 'general', require('../trans/hmn.json'));
// i18n.addResources('hr', 'general', require('../trans/hr.json'));
// i18n.addResources('ht', 'general', require('../trans/ht.json'));
-// i18n.addResources('hu', 'general', require('../trans/hu.json'));
+i18n.addResources('hu', 'general', require('../trans/hu.json'));
// i18n.addResources('hy', 'general', require('../trans/hy.json'));
// Android sends 'in' as language id for Indonesia (it should be id)
@@ -91,7 +91,7 @@ i18n.addResources('in', 'general', require('../trans/id.json'));
// i18n.addResources('ig', 'general', require('../trans/ig.json'));
// i18n.addResources('io', 'general', require('../trans/io.json'));
// i18n.addResources('is', 'general', require('../trans/is.json'));
-// i18n.addResources('it', 'general', require('../trans/it.json'));
+i18n.addResources('it', 'general', require('../trans/it.json'));
// i18n.addResources('ja', 'general', require('../trans/ja.json'));
// i18n.addResources('jv', 'general', require('../trans/jv.json'));
@@ -107,7 +107,7 @@ i18n.addResources('in', 'general', require('../trans/id.json'));
// i18n.addResources('lg', 'general', require('../trans/lg.json'));
// i18n.addResources('lo', 'general', require('../trans/lo.json'));
-// i18n.addResources('lt', 'general', require('../trans/lt.json'));
+i18n.addResources('lt', 'general', require('../trans/lt.json'));
// i18n.addResources('lv', 'general', require('../trans/lv.json'));
// i18n.addResources('mg', 'general', require('../trans/mg.json'));
@@ -118,18 +118,18 @@ i18n.addResources('in', 'general', require('../trans/id.json'));
// i18n.addResources('na', 'general', require('../trans/na.json'));
// i18n.addResources('ne', 'general', require('../trans/ne.json'));
-// i18n.addResources('nl', 'general', require('../trans/nl.json'));
-// i18n.addResources('no', 'general', require('../trans/no.json'));
+i18n.addResources('nl', 'general', require('../trans/nl.json'));
+i18n.addResources('no', 'general', require('../trans/no.json'));
// i18n.addResources('pap', 'general', require('../trans/pap.json'));
// i18n.addResources('pcm', 'general', require('../trans/pcm.json'));
-// i18n.addResources('pl', 'general', require('../trans/pl.json'));
-// i18n.addResources('pt', 'general', require('../trans/pt.json'));
+i18n.addResources('pl', 'general', require('../trans/pl.json'));
+i18n.addResources('pt', 'general', require('../trans/pt.json'));
// i18n.addResources('qu', 'general', require('../trans/qu.json'));
// i18n.addResources('quc', 'general', require('../trans/quc.json'));
-// i18n.addResources('ro', 'general', require('../trans/ro.json'));
+i18n.addResources('ro', 'general', require('../trans/ro.json'));
i18n.addResources('ru', 'general', require('../trans/ru.json'));
// i18n.addResources('rw', 'general', require('../trans/rw.json'));
// i18n.addResources('ry', 'general', require('../trans/ry.json'));
@@ -137,9 +137,9 @@ i18n.addResources('ru', 'general', require('../trans/ru.json'));
// i18n.addResources('sco', 'general', require('../trans/sco.json'));
// i18n.addResources('si', 'general', require('../trans/si.json'));
// i18n.addResources('sk', 'general', require('../trans/sk.json'));
-// i18n.addResources('sl', 'general', require('../trans/sl.json'));
+i18n.addResources('sl', 'general', require('../trans/sl.json'));
// i18n.addResources('so', 'general', require('../trans/so.json'));
-// i18n.addResources('sq', 'general', require('../trans/sq.json'));
+i18n.addResources('sq', 'general', require('../trans/sq.json'));
// i18n.addResources('sv', 'general', require('../trans/sv.json'));
// i18n.addResources('sw', 'general', require('../trans/sw.json'));
@@ -148,16 +148,16 @@ i18n.addResources('ru', 'general', require('../trans/ru.json'));
// i18n.addResources('tg', 'general', require('../trans/tg.json'));
// i18n.addResources('th', 'general', require('../trans/th.json'));
// i18n.addResources('tk', 'general', require('../trans/tk.json'));
-// i18n.addResources('tl', 'general', require('../trans/tl.json'));
+i18n.addResources('tl', 'general', require('../trans/tl.json'));
// i18n.addResources('tn', 'general', require('../trans/tn.json'));
-// i18n.addResources('tr', 'general', require('../trans/tr.json'));
+i18n.addResources('tr', 'general', require('../trans/tr.json'));
// i18n.addResources('ty', 'general', require('../trans/ty.json'));
// i18n.addResources('ug', 'general', require('../trans/ug.json'));
-// i18n.addResources('uk', 'general', require('../trans/uk.json'));
+i18n.addResources('uk', 'general', require('../trans/uk.json'));
// i18n.addResources('ur', 'general', require('../trans/ur.json'));
-// i18n.addResources('vi', 'general', require('../trans/vi.json'));
+i18n.addResources('vi', 'general', require('../trans/vi.json'));
// i18n.addResources('vls', 'general', require('../trans/vls.json'));
// i18n.addResources('wo', 'general', require('../trans/wo.json'));
diff --git a/mobile-app/src/config/persist.js b/mobile-app/src/config/persist.js
index 75bc371880..6d888e1445 100644
--- a/mobile-app/src/config/persist.js
+++ b/mobile-app/src/config/persist.js
@@ -2,7 +2,7 @@ import { persistStore } from 'redux-persist';
import { createFilter } from 'redux-persist-transform-filter';
const appFilter = createFilter('app', ['popover']);
-const userFilter = createFilter('user', ['auth']);
+const userFilter = createFilter('user', ['auth', 'profile']);
export const persistStoreAsync = ({ store, storage }) => {
return new Promise((resolve, reject) => {
diff --git a/mobile-app/src/reducers/app/actions.js b/mobile-app/src/reducers/app/actions.js
index f0b7c38c49..d962dc0e86 100644
--- a/mobile-app/src/reducers/app/actions.js
+++ b/mobile-app/src/reducers/app/actions.js
@@ -37,6 +37,11 @@ const setActiveScreen = activeScreen => ({
const setConnectionChecked = () => ({ type: types.SET_CONNECTION_CHECKED });
const updateNetworkStatus = isConnected =>
({ type: types.UPDATE_NETWORK_STATUS, payload: { isConnected } });
+const updateSyncStatus = inSync =>
+ ({ type: types.UPDATE_SYNC_STATUS, payload: { inSync } });
+const updateLackConnMessStatus = noLackConnectionAlert =>
+ ({ type: types.UPDATE_LACK_CONNECTION_MESSAGE_STATUS, payload: { noLackConnectionAlert } });
+
export default {
setPopoverShown,
setPopoverMessage,
@@ -45,4 +50,6 @@ export default {
hideErrorMessage,
setConnectionChecked,
updateNetworkStatus,
+ updateSyncStatus,
+ updateLackConnMessStatus
};
diff --git a/mobile-app/src/reducers/app/reducers.js b/mobile-app/src/reducers/app/reducers.js
index fb8a39bdfd..32fe8673d9 100644
--- a/mobile-app/src/reducers/app/reducers.js
+++ b/mobile-app/src/reducers/app/reducers.js
@@ -1,10 +1,10 @@
import { combineReducers } from 'redux';
-
import types from './types';
+import i18n from '../../config/i18n';
const popoverInitialState = {
shown: false,
- message: 'Join other people who are mapping trash!',
+ message: i18n.t('label_text_popover_subtitle'),
};
const errorInitialState = {
visible: false,
@@ -15,6 +15,8 @@ const errorInitialState = {
const networkStatusState = {
isConnected: false,
connectionChecked: false,
+ noLackConnectionAlert: false,
+ inSync: false
};
const networkReducer = (state = networkStatusState, action) => {
@@ -23,6 +25,10 @@ const networkReducer = (state = networkStatusState, action) => {
return { ...state, connectionChecked: true };
case types.UPDATE_NETWORK_STATUS:
return { ...state, isConnected: action.payload.isConnected };
+ case types.UPDATE_SYNC_STATUS:
+ return { ...state, inSync: action.payload.inSync };
+ case types.UPDATE_LACK_CONNECTION_MESSAGE_STATUS:
+ return { ...state, noLackConnectionAlert: action.payload.noLackConnectionAlert };
default:
return state;
}
diff --git a/mobile-app/src/reducers/app/selectors.js b/mobile-app/src/reducers/app/selectors.js
index 99c8833cdb..43af0540b5 100644
--- a/mobile-app/src/reducers/app/selectors.js
+++ b/mobile-app/src/reducers/app/selectors.js
@@ -31,6 +31,8 @@ const networkSelector = createSelector(stateSelector, state => state.network);
const wasConnectionChecked =
createSelector(networkSelector, state => state.connectionChecked);
const isConnected = createSelector(networkSelector, state => state.isConnected);
+const inSync = createSelector(networkSelector, state => state.inSync);
+const isNoLackConnectionAlert = createSelector(networkSelector, state => state.noLackConnectionAlert);
export default {
wasPopoverShown,
@@ -46,4 +48,6 @@ export default {
wasConnectionChecked,
isConnected,
+ inSync,
+ isNoLackConnectionAlert
};
diff --git a/mobile-app/src/reducers/app/types.js b/mobile-app/src/reducers/app/types.js
index 35461344bb..17930f575a 100644
--- a/mobile-app/src/reducers/app/types.js
+++ b/mobile-app/src/reducers/app/types.js
@@ -8,6 +8,8 @@ const FETCH_DATASETS_FAILED = 'FETCH_DATASETS_FAILED';
const SET_ACTIVE_SCREEN = 'SET_ACTIVE_SCREEN';
const UPDATE_NETWORK_STATUS = 'UPDATE_NETWORK_STATUS';
const SET_CONNECTION_CHECKED = 'SET_CONNECTION_CHECKED';
+const UPDATE_SYNC_STATUS = 'UPDATE_SYNC_STATUS';
+const UPDATE_LACK_CONNECTION_MESSAGE_STATUS = 'UPDATE_LACK_CONNECTION_MESSAGE_STATUS';
export default {
SET_POPOVER_SHOWN,
@@ -20,4 +22,6 @@ export default {
SET_ACTIVE_SCREEN,
UPDATE_NETWORK_STATUS,
SET_CONNECTION_CHECKED,
+ UPDATE_SYNC_STATUS,
+ UPDATE_LACK_CONNECTION_MESSAGE_STATUS
};
diff --git a/mobile-app/src/reducers/trashpile/operations.js b/mobile-app/src/reducers/trashpile/operations.js
index 8b12bbd5f6..791c43672a 100644
--- a/mobile-app/src/reducers/trashpile/operations.js
+++ b/mobile-app/src/reducers/trashpile/operations.js
@@ -4,6 +4,7 @@ import { API_ENDPOINTS, TRASHPOINT_IMAGE_TYPES, DIAGONALE_IN_PX, MARKER_DIAGONAL
DEFAULT_ZOOM, SCREEN_WIDTH} from '../../shared/constants';
import types from './types';
import { Api } from '../../services';
+import OfflineService from '../../services/Offline';
import axios from 'axios';
import { selectors as appSelectors, operations as appOps } from '../app';
import { selectors as trashpileSelectors } from '../trashpile';
@@ -201,7 +202,6 @@ export const handleUpload = async ({ photos, markerId }) => {
failed: [],
backendConfirmed: false,
};
-
if (photosResponse) {
const thumbnailsPhotos = photosResponse.data
.filter(pr => pr.type === TRASHPOINT_IMAGE_TYPES.THUMBNAIL)
@@ -226,7 +226,6 @@ export const handleUpload = async ({ photos, markerId }) => {
});
const handledPhotos = [...thumbnailsPhotos, ...mediumPhotos];
-
const uploadedPhotosResponses = await uploadPhotosOnAzure(handledPhotos);
if (uploadedPhotosResponses) {
@@ -307,11 +306,24 @@ export const createMarker = ({
p => p.id !== undefined && p.delete === true && !!p.parentId,
);
}
+ const isConnected = appSelectors.isConnected(getState());
+
const url = isEdit
? API_ENDPOINTS.UPDATE_TRASHPOINT(id)
: API_ENDPOINTS.CREATE_TRASHPOINT;
- const createMarkerResponse = await Api.put(url, newMarker);
+ let createMarkerResponse = false;
+
+ if (isConnected) {
+ createMarkerResponse = await Api.put(url, newMarker);
+ } else {
+ createMarkerResponse = await OfflineService.saveTrashpoint(
+ url,
+ newMarker,
+ photos,
+ !isEdit ? [] : toDeletePhotos
+ );
+ }
if (!createMarkerResponse) {
dispatch({ type: types.CREATE_MARKER_FAILED });
@@ -320,13 +332,13 @@ export const createMarker = ({
let uploadStatus;
- if (isEdit && newPhotos.length > 0) {
+ if (isEdit && newPhotos.length > 0 && isConnected) {
uploadStatus = await handleUpload({
photos: newPhotos,
markerId: createMarkerResponse.data.id,
});
}
- if (isEdit && toDeletePhotos.length > 0) {
+ if (isEdit && toDeletePhotos.length > 0 && isConnected) {
try {
await Promise.all(
toDeletePhotos.map(p => deleteImage(id, p.parentId)),
@@ -337,7 +349,7 @@ export const createMarker = ({
}
}
- if (!isEdit) {
+ if (!isEdit && isConnected) {
uploadStatus = await handleUpload({
photos,
markerId: createMarkerResponse.data.id,
@@ -357,6 +369,7 @@ export const createMarker = ({
},
},
});
+
return {
...createMarkerResponse.data,
photoStatus: uploadStatus,
diff --git a/mobile-app/src/screens/CreateMarker/CreateMarker.js b/mobile-app/src/screens/CreateMarker/CreateMarker.js
index 6d7e5ff9e3..8f5ee4e4cd 100644
--- a/mobile-app/src/screens/CreateMarker/CreateMarker.js
+++ b/mobile-app/src/screens/CreateMarker/CreateMarker.js
@@ -92,7 +92,8 @@ class CreateMarker extends Component {
congratsShown: false,
trashCompositionTypes: TRASH_COMPOSITION_TYPE_LIST.map(
trashCompositionType => ({
- ...trashCompositionType,
+ trashCompositionType.type,
+ props.t(trashCompositionType.label),
selected: false,
}),
),
diff --git a/mobile-app/src/screens/CreateMarker/components/CongratsModal/styles.js b/mobile-app/src/screens/CreateMarker/components/CongratsModal/styles.js
index e46760e9b2..0f08d389a3 100644
--- a/mobile-app/src/screens/CreateMarker/components/CongratsModal/styles.js
+++ b/mobile-app/src/screens/CreateMarker/components/CongratsModal/styles.js
@@ -23,8 +23,8 @@ export default EStyleSheet.create({
},
header: {
width: getWidthPercentage(148),
- height: getHeightPercentage(45),
- marginTop: getHeightPercentage(30),
+ height: getHeightPercentage(80),
+ marginTop: getHeightPercentage(15),
fontFamily: '$boldFont',
fontSize: 30,
textAlign: 'center',
diff --git a/mobile-app/src/screens/Details/Details.js b/mobile-app/src/screens/Details/Details.js
index 5a80036b05..5d6ce9ba53 100644
--- a/mobile-app/src/screens/Details/Details.js
+++ b/mobile-app/src/screens/Details/Details.js
@@ -288,7 +288,9 @@ class Details extends Component {
if (marker && marker.name) {
return marker.name;
}
- return '';
+
+ const { initialLocation: { longitude, latitude } } = this.state;
+ return `${latitude.toFixed(2)}, ${longitude.toFixed(2)}`;
};
renderStreetDetails = () => {
const { address } = this.state;
@@ -308,7 +310,7 @@ class Details extends Component {
// {`${this.renderStreetDetails()} | ${latitude.toFixed(
// 6,
// )}, ${longitude.toFixed(6)}`}
- const streetDetails = this.renderStreetDetails();
+ const streetDetails = this.renderStreetDetails().trim();
const gpsCoords = this.renderMarkerCoords();
if (streetDetails && gpsCoords) {
return `${streetDetails} | ${gpsCoords}`;
@@ -331,9 +333,15 @@ class Details extends Component {
const latitudeDelta = DEFAULT_ZOOM;
const mapHeight = getHeightPercentage(160);
const longitudeDelta = latitudeDelta * SCREEN_WIDTH / mapHeight;
- const thumbnails = _.has(marker, 'thumbnails')
- ? marker.thumbnails.map(({ url }) => url)
- : [];
+ const thumbnails = marker.thumbnails || [];
+ const mediumPhotos = marker.mediumPhotos || [];
+
+ const photos = thumbnails.map(thumbnail => ({
+ thumbnailUrl: thumbnail.url,
+ mediumPhotoUrl: mediumPhotos.find(
+ mediumPhoto => mediumPhoto.id === thumbnail.parentId,
+ ).url,
+ }));
return (
@@ -392,7 +400,7 @@ class Details extends Component {
{/* */}
-
+
diff --git a/mobile-app/src/screens/EditTrashpoint/.EditTrashpoint.js.swp b/mobile-app/src/screens/EditTrashpoint/.EditTrashpoint.js.swp
deleted file mode 100644
index 364dc76d88..0000000000
Binary files a/mobile-app/src/screens/EditTrashpoint/.EditTrashpoint.js.swp and /dev/null differ
diff --git a/mobile-app/src/screens/EditTrashpoint/EditTrashpoint.js b/mobile-app/src/screens/EditTrashpoint/EditTrashpoint.js
index 2560e3de73..50bd888331 100644
--- a/mobile-app/src/screens/EditTrashpoint/EditTrashpoint.js
+++ b/mobile-app/src/screens/EditTrashpoint/EditTrashpoint.js
@@ -108,7 +108,8 @@ class EditTrashpoint extends Component {
trashCompositionTypes: TRASH_COMPOSITION_TYPE_LIST.map(
(trashCompositionType) => {
return {
- ...trashCompositionType,
+ trashCompositionType.type,
+ props.t(trashCompositionType.label),
selected: marker.composition.indexOf(trashCompositionType.type) !== -1,
};
},
diff --git a/mobile-app/src/screens/Home.js b/mobile-app/src/screens/Home.js
index 5c9a002afd..de402cd540 100644
--- a/mobile-app/src/screens/Home.js
+++ b/mobile-app/src/screens/Home.js
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
-import { StatusBar, View } from 'react-native';
+import { StatusBar, View, Text } from 'react-native';
import { connect } from 'react-redux';
import { compose } from 'recompose';
@@ -14,6 +14,8 @@ import { selectors as appSelectors } from '../reducers/app';
import { SCREENS } from '../shared/constants';
import { DELTA_HASH, GRID_HASH, MIN_ZOOM } from '../shared/constants';
import _ from 'lodash';
+import {translate} from 'react-i18next';
+import styles from './styles';
class Home extends Component {
state = {
@@ -34,7 +36,7 @@ class Home extends Component {
marker => marker.id === event.nativeEvent.id,
);
- if (!marker.isTrashpile) {
+ if (!marker || !marker.isTrashpile) {
return;
}
@@ -105,9 +107,29 @@ class Home extends Component {
});
};
+ displayNoConnected = (latitude, longitude) => {
+ return (
+
+
+ {this.props.t('label_network_off_warning_title')}
+
+
+ {this.props.t('label_no_connection_note')}
+
+
+ {this.props.t('label_your_coordinates')}
+ {`: ${latitude.toFixed(2)}, ${longitude.toFixed(2)}`}
+
+
+ );
+ };
+
render() {
- const { markers, initialRegion } = this.props;
+ const { markers, initialRegion, isConnected, userLocation: { longitude, latitude } } = this.props;
+ if (!isConnected) {
+ return this.displayNoConnected(latitude, longitude);
+ }
return (
@@ -135,6 +157,7 @@ const mapStateToProps = state => {
activeScreen: appSelectors.getActiveScreen(state),
userLocation: locationSelectors.userLocationSelector(state),
delta: trashpileSelectors.getLastDeltaValue(state),
+ isConnected: appSelectors.isConnected(state),
};
};
@@ -164,4 +187,5 @@ const mapDispatchToProps = dispatch => {
export default compose(
connect(mapStateToProps, mapDispatchToProps),
withNavigationHelpers(),
+ translate(),
)(Home);
diff --git a/mobile-app/src/screens/MyActivity/MyActivity.js b/mobile-app/src/screens/MyActivity/MyActivity.js
index 90c52b3d3c..d46ccea3c1 100644
--- a/mobile-app/src/screens/MyActivity/MyActivity.js
+++ b/mobile-app/src/screens/MyActivity/MyActivity.js
@@ -19,6 +19,7 @@ import {
selectors as trashSels,
operations as trashOps,
} from '../../reducers/trashpile';
+import { selectors as appSelectors } from '../../reducers/app';
import ActivityListItem from './components/ActivityListItem';
import { Divider } from '../../components/Divider';
import { EmptyStateScreen } from '../../components/EmptyStateScreen';
@@ -110,13 +111,13 @@ class MyActivity extends PureComponent {
};
render() {
- const { loading, error, initialLoad, refreshing } = this.props;
+ const { loading, error, initialLoad, refreshing, isConnected } = this.props;
- if (!initialLoad && error) {
+ if (!initialLoad && error && isConnected) {
return this.displayRetry();
}
- if (!initialLoad && loading && !refreshing) {
+ if (!initialLoad && loading && !refreshing || !isConnected) {
return this.displayLoading();
}
@@ -132,6 +133,7 @@ MyActivity.propTypes = {
canLoadMore: PropTypes.bool.isRequired,
refreshing: PropTypes.bool.isRequired,
fetchUserTrashpoints: PropTypes.func.isRequired,
+ isConnected: PropTypes.bool.isRequired,
};
const mapStateToProps = state => ({
@@ -141,6 +143,7 @@ const mapStateToProps = state => ({
initialLoad: trashSels.userTrashpointsInitialLoaded(state),
canLoadMore: trashSels.userTrashpointsCanLoadMore(state),
refreshing: trashSels.userTrashpointsRefreshing(state),
+ isConnected: appSelectors.isConnected(state),
});
const mapDispatch = {
fetchUserTrashpoints: trashOps.fetchUserTrashpoints,
diff --git a/mobile-app/src/screens/MyActivity/components/ActivityListItem.js b/mobile-app/src/screens/MyActivity/components/ActivityListItem.js
index a05a2ab09f..ab29c2cf89 100644
--- a/mobile-app/src/screens/MyActivity/components/ActivityListItem.js
+++ b/mobile-app/src/screens/MyActivity/components/ActivityListItem.js
@@ -54,6 +54,17 @@ const ActivityListItem = ({
onPressItem,
}) => {
const statusStyle = { backgroundColor: STATUSES_COLOR[status] };
+ let nameToList = name.trim();
+ let addressToList = address.trim();
+ if (!nameToList || !addressToList) {
+ const { longitude, latitude } = location;
+ if (!nameToList) {
+ nameToList = `${latitude.toFixed(3)}, ${longitude.toFixed(3)}`;
+ }
+ if (!addressToList) {
+ addressToList = `${latitude.toFixed(6)}, ${longitude.toFixed(6)}`;
+ }
+ }
return (
onPressItem({ id, location })}
@@ -66,12 +77,12 @@ const ActivityListItem = ({
- {name}
+ {nameToList}
- {address}
+ {addressToList}
diff --git a/mobile-app/src/screens/Profile/Profile.js b/mobile-app/src/screens/Profile/Profile.js
index 1b83d6580c..fe8bed1ded 100644
--- a/mobile-app/src/screens/Profile/Profile.js
+++ b/mobile-app/src/screens/Profile/Profile.js
@@ -1,14 +1,23 @@
import React, { Component } from 'react';
-import { View, Image, Text } from 'react-native';
+import { View, Image, Text, ActivityIndicator } from 'react-native';
import { compose } from 'recompose';
import { connect } from 'react-redux';
import { Divider } from '../../components/Divider';
import { selectors as userSelectors } from '../../reducers/user';
+import { selectors as appSelectors } from '../../reducers/app';
import { withNavigationHelpers } from '../../services/Navigation';
import styles from './styles';
+
class Profile extends Component {
+ displayLoading = () => {
+ return (
+
+
+
+ );
+ };
renderProfilePicture = (profile) => {
const img = profile && profile.pictureURL
? { uri: profile.pictureURL }
@@ -16,7 +25,10 @@ class Profile extends Component {
return ;
};
render() {
- const { profile, country } = this.props;
+ const { profile, country, isConnected } = this.props;
+ if(!isConnected) {
+ return this.displayLoading();
+ }
return (
@@ -50,6 +62,7 @@ const mapStateToProps = (state) => {
return {
profile: userSelectors.getProfile(state),
country: userSelectors.getProfileCountry(state),
+ isConnected: appSelectors.isConnected(state),
};
};
diff --git a/mobile-app/src/screens/Profile/styles.js b/mobile-app/src/screens/Profile/styles.js
index 950c29976f..1b95df9388 100644
--- a/mobile-app/src/screens/Profile/styles.js
+++ b/mobile-app/src/screens/Profile/styles.js
@@ -42,4 +42,9 @@ export default EStyleSheet.create({
marginTop: getHeightPercentage(20),
alignItems: 'center',
},
+ displayLoadingView: {
+ flex: 1,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
});
diff --git a/mobile-app/src/screens/Settings/Settings.js b/mobile-app/src/screens/Settings/Settings.js
index 9e50eb3d07..a5b297b80a 100644
--- a/mobile-app/src/screens/Settings/Settings.js
+++ b/mobile-app/src/screens/Settings/Settings.js
@@ -1,5 +1,5 @@
import React, { Component } from 'react';
-import { View } from 'react-native';
+import { View, ActivityIndicator } from 'react-native';
import { compose } from 'recompose';
import { connect } from 'react-redux';
import { translate } from 'react-i18next';
@@ -20,6 +20,7 @@ import styles, {
downRightIcon,
defaultRightIcon,
} from './styles';
+import {selectors as appSelectors} from '../../reducers/app';
class Settings extends Component {
constructor(props) {
@@ -103,11 +104,24 @@ class Settings extends Component {
);
};
+ displayLoading = () => {
+ return (
+
+
+
+ );
+ };
+
render() {
- const { country } = this.props;
+ const { country, isConnected } = this.props;
+ if(!isConnected) {
+ return this.displayLoading();
+ }
+
const countrySubtitle = country
? country.name
: this.props.t('label_country_picker_placeholder');
+
return (
@@ -157,11 +171,13 @@ class Settings extends Component {
);
}
}
+
const mapState = (state) => {
return {
profile: userSels.getProfile(state),
country: userSels.getProfileCountry(state),
isProfileUpdating: userSels.isProfileUpdating(state),
+ isConnected: appSelectors.isConnected(state),
};
};
const mapDispatch = {
diff --git a/mobile-app/src/screens/Settings/components/CountryModal/CountryModal.js b/mobile-app/src/screens/Settings/components/CountryModal/CountryModal.js
index 0dfe13f36f..5f99697311 100644
--- a/mobile-app/src/screens/Settings/components/CountryModal/CountryModal.js
+++ b/mobile-app/src/screens/Settings/components/CountryModal/CountryModal.js
@@ -51,11 +51,11 @@ class CountryModal extends Component {
diff --git a/mobile-app/src/screens/Settings/styles.js b/mobile-app/src/screens/Settings/styles.js
index a2c5661dc8..6247b8b422 100644
--- a/mobile-app/src/screens/Settings/styles.js
+++ b/mobile-app/src/screens/Settings/styles.js
@@ -34,6 +34,11 @@ const styles = EStyleSheet.create({
marginBottom: 0,
fontSize: 20,
},
+ displayLoadingView: {
+ flex: 1,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
});
export default styles;
export const rightIcon = {
diff --git a/mobile-app/src/screens/styles.js b/mobile-app/src/screens/styles.js
new file mode 100644
index 0000000000..72b2dc42ad
--- /dev/null
+++ b/mobile-app/src/screens/styles.js
@@ -0,0 +1,18 @@
+import EStyleSheet from 'react-native-extended-stylesheet';
+
+export default EStyleSheet.create({
+ noConnectedView: {
+ flex: 1,
+ alignItems: 'center',
+ justifyContent: 'center',
+ },
+ noConnectedHeader: {
+ fontWeight: 'bold',
+ textAlign: 'center',
+ margin: 5,
+ },
+ noConnectedText: {
+ textAlign: 'center',
+ margin: 5,
+ },
+});
diff --git a/mobile-app/src/services/Api.js b/mobile-app/src/services/Api.js
index 0d45ecff2f..0efa57d7ff 100644
--- a/mobile-app/src/services/Api.js
+++ b/mobile-app/src/services/Api.js
@@ -1,6 +1,6 @@
import axios from 'axios';
import store from '../config/store';
-import { operations as appOperations } from '../reducers/app';
+import { operations as appOperations, selectors as appSelectors } from '../reducers/app';
import { operations as userOps } from '../reducers/user';
import { GENERIC_SERVER_ERROR, ERRORS } from '../shared/constants';
import { resetTo, rootNav } from '../services/Navigation';
@@ -28,7 +28,9 @@ export const handleApiError = (error) => {
)} [${error.response.status}]`;
store.dispatch(appOperations.setErrorMessage(message));
} else {
- store.dispatch(appOperations.setErrorMessage(error.message));
+ if (!appSelectors.isNoLackConnectionAlert) {
+ store.dispatch(appOperations.setErrorMessage(error.message));
+ }
}
};
diff --git a/mobile-app/src/services/Network.js b/mobile-app/src/services/Network.js
index 182e73a6f4..9b95404c57 100644
--- a/mobile-app/src/services/Network.js
+++ b/mobile-app/src/services/Network.js
@@ -8,6 +8,8 @@ import { connect } from 'react-redux';
import { operations as appOps, selectors as appSels } from '../reducers/app';
import { AlertModal } from '../components/AlertModal';
+import OfflineService from './Offline';
+import { resetTo, rootNav } from '../services/Navigation';
const CONNECTION_CHECK_INTERVAL = 10; // seconds
@@ -15,11 +17,15 @@ const mapState = (state) => {
return {
isConnected: appSels.isConnected(state),
connectionChecked: appSels.wasConnectionChecked(state),
+ inSync: appSels.inSync(state),
+ isNoLackConnectionAlert: appSels.isNoLackConnectionAlert(state),
};
};
const mapDispatch = {
setConnectionChecked: appOps.setConnectionChecked,
updateNetworkStatus: appOps.updateNetworkStatus,
+ updateSyncStatus: appOps.updateSyncStatus,
+ updateLackConnMessStatus: appOps.updateLackConnMessStatus,
};
export const withNetworkGuard = () => (WrappedComponent) => {
@@ -28,9 +34,14 @@ export const withNetworkGuard = () => (WrappedComponent) => {
static propTypes = {
updateNetworkStatus: PropTypes.func.isRequired,
setConnectionChecked: PropTypes.func.isRequired,
+ updateSyncStatus: PropTypes.func.isRequired,
+ updateLackConnMessStatus: PropTypes.func.isRequired,
isConnected: PropTypes.bool.isRequired,
connectionChecked: PropTypes.bool.isRequired,
+ inSync: PropTypes.bool.isRequired,
+ isNoLackConnectionAlert: PropTypes.bool.isRequired,
}
+
constructor(props) {
super(props);
@@ -38,6 +49,14 @@ export const withNetworkGuard = () => (WrappedComponent) => {
// so it can be discarded safely from netinfo when the component unmounts
this.handleConnectionStatusChanged =
this.handleConnectionStatusChanged.bind(this);
+
+ this.handleCloseAlertModal =
+ this.handleCloseAlertModal.bind(this);
+
+ this.closeAlertModalButton = {
+ text: props.t('label_button_acknowledge'),
+ onPress: this.handleCloseAlertModal,
+ };
}
componentWillMount() {
this.checkConnection();
@@ -48,6 +67,17 @@ export const withNetworkGuard = () => (WrappedComponent) => {
if (isConnected !== this.props.isConnected) {
this.handleConnectionStatusChanged(isConnected);
}
+
+ if (isConnected && !this.props.inSync) {
+ this.handleSyncStatusChanged(true);
+ await OfflineService.syncToServer();
+ this.handleSyncStatusChanged(false);
+ }
+
+ if (this.props.isNoLackConnectionAlert && isConnected) {
+ this.props.updateLackConnMessStatus(!1);
+ }
+
}, 1000 * CONNECTION_CHECK_INTERVAL);
}
componentWillUnmount() {
@@ -59,9 +89,17 @@ export const withNetworkGuard = () => (WrappedComponent) => {
clearInterval(this.connectionCheckInterval);
}
}
+ handleSyncStatusChanged(inSync) {
+ this.props.updateSyncStatus(inSync);
+ }
handleConnectionStatusChanged(isConnected) {
this.props.updateNetworkStatus(isConnected);
}
+ handleCloseAlertModal() {
+ this.props.updateLackConnMessStatus(!0);
+ const defaultOfflineScreen = 'Tabs';
+ resetTo(rootNav, defaultOfflineScreen);
+ }
checkConnection = async () => {
let isConnected = await NetInfo.isConnected.fetch();
@@ -79,8 +117,8 @@ export const withNetworkGuard = () => (WrappedComponent) => {
this.props.setConnectionChecked();
};
render() {
- const { connectionChecked, isConnected } = this.props;
- const showUserWarning = connectionChecked && !isConnected;
+ const { connectionChecked, isConnected, isNoLackConnectionAlert } = this.props;
+ const showUserWarning = connectionChecked && !isConnected && !isNoLackConnectionAlert;
if (!connectionChecked) {
return (
@@ -97,6 +135,7 @@ export const withNetworkGuard = () => (WrappedComponent) => {
visible={showUserWarning}
title={this.props.t('label_network_off_warning_title')}
subtitle={this.props.t('label_network_off_warning')}
+ buttons={[this.closeAlertModalButton]}
/>
diff --git a/mobile-app/src/services/Offline.js b/mobile-app/src/services/Offline.js
new file mode 100644
index 0000000000..12efae85bf
--- /dev/null
+++ b/mobile-app/src/services/Offline.js
@@ -0,0 +1,107 @@
+import { SQLite } from 'expo';
+import { Api } from "./index";
+import { trashpileReducer } from '../reducers';
+import { handleUpload, deleteImage } from "../reducers/trashpile/operations";
+
+const offlineDB = SQLite.openDatabase('db.offline');
+
+class OfflineService {
+
+ constructor() {
+ this.executeSql('CREATE TABLE IF NOT EXISTS trashpoints (' +
+ 'id INTEGER PRIMARY KEY AUTOINCREMENT,' +
+ 'url TEXT,' +
+ 'marker TEXT,' +
+ 'photos BLOB,' +
+ 'dphotos BLOB,' +
+ 'status INTEGER DEFAULT 0' +
+ ');');
+ }
+
+ executeSql = async (sql, params = []) => {
+ return new Promise((resolve, reject) => offlineDB.transaction(tx => {
+ tx.executeSql(sql, params, (_, { rows }) => resolve(rows._array), reject)
+ }))
+ }
+
+ saveTrashpoint = async (url, newMarker, photos, deletedPhotos) => {
+ const { location: { longitude, latitude } } = newMarker;
+ if (!newMarker.address || newMarker.address.length < 1) {
+ newMarker.address = ' ';
+ }
+ if (!newMarker.name || newMarker.name.length < 1) {
+ newMarker.name = `${latitude.toFixed(2)}, ${longitude.toFixed(2)}`;
+ }
+ await this.executeSql('INSERT INTO trashpoints (url, marker, photos, dphotos) VALUES (?, ?, ?, ?);', [
+ url,
+ JSON.stringify(newMarker),
+ JSON.stringify(photos),
+ JSON.stringify(deletedPhotos)
+ ]);
+ const dummyReturn = {data: newMarker};
+
+ return dummyReturn;
+ }
+
+ async syncToServer() {
+ const transaction = await offlineDB.transaction(tx => {
+ tx.executeSql('SELECT id FROM trashpoints WHERE status = 0', [], async (_, { rows: { _array } }) => {
+ const idsToPush = [];
+ for (let i = 0; i < _array.length; i++) {
+ idsToPush.push(_array[i].id);
+ }
+ if (idsToPush.length > 0) {
+ const whereIds = idsToPush.join(',');
+ tx.executeSql('UPDATE trashpoints SET status = 1 WHERE id IN (' + whereIds + ')', []);
+ tx.executeSql(
+ 'SELECT id, url, marker, photos, dphotos, status FROM trashpoints WHERE id IN (' + whereIds + ')',
+ [], async (_, { rows: { _array } }) => {
+ for (let i = 0; i < _array.length; i++) {
+ let dataOk = true;
+ let trashpoint = {};
+ try {
+ trashpoint = {id: _array[i].id, url: _array[i].url};
+ trashpoint.marker = JSON.parse(_array[i].marker);
+ trashpoint.photos = JSON.parse(_array[i].photos);
+ trashpoint.dphotos = JSON.parse(_array[i].dphotos);
+ } catch (e) {
+ dataOk = false;
+ }
+ if (dataOk) {
+ const createMarkerResponse = await Api.put(trashpoint.url, trashpoint.marker);
+ if (createMarkerResponse) {
+ offlineDB.transaction(tx => {
+ tx.executeSql('DELETE FROM trashpoints WHERE id = ?;', [trashpoint.id]);
+ });
+ if (trashpoint.photos.length > 0) {
+ await handleUpload({
+ photos: trashpoint.photos,
+ markerId: createMarkerResponse.data.id
+ });
+ }
+ if (trashpoint.dphotos.length > 0) {
+ try {
+ await Promise.all(
+ trashpoint.dphotos.map(p => deleteImage(id, p.parentId)),
+ );
+ } catch (ex) {
+ // console.log(ex);
+ }
+ }
+ } else {
+ offlineDB.transaction(tx => {
+ tx.executeSql('UPDATE trashpoints SET status = 0 WHERE id = ?;', [trashpoint.id]);
+ });
+ }
+ }
+ }
+ });
+ }
+ });
+
+
+ });
+ }
+}
+
+export default new OfflineService();
\ No newline at end of file
diff --git a/mobile-app/src/shared/constants.js b/mobile-app/src/shared/constants.js
index 15fed3f872..1bb369dd8b 100644
--- a/mobile-app/src/shared/constants.js
+++ b/mobile-app/src/shared/constants.js
@@ -62,15 +62,15 @@ export const TRASH_COMPOSITION_TYPES_HASH = {
};
export const TRASH_COMPOSITION_TYPE_LIST = [
- { type: 'plastic', label: 'Plastic' },
- { type: 'metal', label: 'Metal' },
- { type: 'glass', label: 'Glass' },
- { type: 'electronics', label: 'Electronics' },
- { type: 'paper', label: 'Paper/Wood' },
- { type: 'tyres', label: 'Tyres' },
- { type: 'domestic waste', label: 'Domestic waste' },
- { type: 'furniture', label: 'Furniture' },
- { type: 'organic waste', label: 'Organic waste' },
+ { type: 'plastic', label: 'label_trash_type_plastic' },
+ { type: 'metal', label: 'label_trash_type_metal' },
+ { type: 'glass', label: 'label_trash_type_glass' },
+ { type: 'electronics', label: 'label_trash_type_electro' },
+ { type: 'paper', label: 'label_trash_type_paper' },
+ { type: 'tyres', label: 'label_trash_type_tyres' },
+ { type: 'domestic waste', label: 'label_trash_type_dom_waste' },
+ { type: 'furniture', label: 'label_trash_type_furniture' },
+ { type: 'organic waste', label: 'label_trash_type_org_waste' },
];
export const AMOUNT_HASH = {
diff --git a/mobile-app/src/trans/aa.json b/mobile-app/src/trans/aa.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/aa.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ach.json b/mobile-app/src/trans/ach.json
index 9aea44e354..d3198642f4 100644
--- a/mobile-app/src/trans/ach.json
+++ b/mobile-app/src/trans/ach.json
@@ -1,130 +1,130 @@
{
- "label_text_app_subtitle": "crwdns10:0crwdne10:0",
- "label_button_facebook": "crwdns11:0crwdne11:0",
- "label_button_google": "crwdns12:0crwdne12:0",
- "label_button_try_app": "crwdns13:0crwdne13:0",
- "label_button_acknowledge": "crwdns14:0crwdne14:0",
- "label_button_cancel": "crwdns15:0crwdne15:0",
- "label_button_continue": "crwdns16:0crwdne16:0",
- "label_trash_status_threat": "crwdns17:0crwdne17:0",
- "label_trash_status_regular": "crwdns18:0crwdne18:0",
- "label_trash_status_cleaned": "crwdns19:0crwdne19:0",
- "label_trash_status_outdated": "crwdns20:0crwdne20:0",
- "label_trash_status_user": "crwdns21:0crwdne21:0",
- "label_trash_status_change_location": "crwdns22:0crwdne22:0",
- "label_trash_status_state_threat": "crwdns23:0crwdne23:0",
- "label_trash_status_state_regular": "crwdns24:0crwdne24:0",
- "label_trash_status_state_cleaned": "crwdns25:0crwdne25:0",
- "label_trash_status_state_outdated": "crwdns26:0crwdne26:0",
- "label_TP_created_date": "crwdns27:0crwdne27:0",
- "label_TP_updated_date": "crwdns28:0crwdne28:0",
- "label_TP_by": "crwdns29:0crwdne29:0",
- "label_trash_amount_handful": "crwdns30:0crwdne30:0",
- "label_trash_amount_bagful": "crwdns31:0crwdne31:0",
- "label_trash_amount_cartloadl": "crwdns32:0crwdne32:0",
- "label_trash_amount_truckload": "crwdns33:0crwdne33:0",
- "label_trash_type_plastic": "crwdns34:0crwdne34:0",
- "label_trash_type_metal": "crwdns35:0crwdne35:0",
- "label_trash_type_glass": "crwdns36:0crwdne36:0",
- "label_trash_type_electro": "crwdns37:0crwdne37:0",
- "label_trash_type_paper": "crwdns38:0crwdne38:0",
- "label_trash_type_tyres": "crwdns39:0crwdne39:0",
- "label_trash_type_dom_waste": "crwdns40:0crwdne40:0",
- "label_trash_type_furniture": "crwdns41:0crwdne41:0",
- "label_trash_type_org_waste": "crwdns42:0crwdne42:0",
- "label_header_tc": "crwdns43:0crwdne43:0",
- "label_button_tc_agree": "crwdns44:0crwdne44:0",
- "label_header_map": "crwdns45:0crwdne45:0",
- "label_text_popover_subtitle": "crwdns46:0crwdne46:0",
- "label_text_popover_text": "crwdns47:0crwdne47:0",
- "label_header_activity": "crwdns48:0crwdne48:0",
- "label_text_activity_empty_subtitle": "crwdns49:0crwdne49:0",
- "label_text_activity_empty_text": "crwdns50:0crwdne50:0",
- "label_text_activity_empty_hint": "crwdns51:0crwdne51:0",
- "label_header_notific": "crwdns52:0crwdne52:0",
- "label_text_notific_empty_subtitle": "crwdns53:0crwdne53:0",
- "label_text_notific_empty_text": "crwdns54:0crwdne54:0",
- "label_header_profile": "crwdns55:0crwdne55:0",
- "label_header_settings": "crwdns56:0crwdne56:0",
- "label_button_country_empty": "crwdns57:0crwdne57:0",
- "label_text_country": "crwdns58:0crwdne58:0",
- "label_header_select_country": "crwdns59:0crwdne59:0",
- "label_text_select_country_hint": "crwdns60:0crwdne60:0",
- "label_button_tc": "crwdns61:0crwdne61:0",
- "label_button_logout": "crwdns62:0crwdne62:0",
- "label_text_congrats_image": "crwdns63:0crwdne63:0",
- "label_text_congrats_subtitle": "crwdns64:0crwdne64:0",
- "label_text_congrats_text": "crwdns65:0crwdne65:0",
- "label_header_createTP": "crwdns66:0crwdne66:0",
- "label_button_createTP_editloc": "crwdns67:0crwdne67:0",
- "label_header_edit_loc": "crwdns68:0crwdne68:0",
- "label_button_edit_loc_set": "crwdns69:0crwdne69:0",
- "label_text_createTP_status_subtitle": "crwdns70:0crwdne70:0",
- "label_text_createTP_status_text": "crwdns71:0crwdne71:0",
- "label_text_createTP_add_photos": "crwdns72:0crwdne72:0",
- "label_text_createTP_select_amount": "crwdns73:0crwdne73:0",
- "label_text_createTP_select_type": "crwdns74:0crwdne74:0",
- "label_text_createTP_add_hashtags": "crwdns75:0crwdne75:0",
- "label_text_createTP_add_hashtags_hint": "crwdns76:0crwdne76:0",
- "label_button_createTP_confirm_create": "crwdns77:0crwdne77:0",
- "label_alert_createTP_success": "crwdns78:0crwdne78:0",
- "label_text_detailsTP_photos": "crwdns79:0crwdne79:0",
- "label_text_detailsTP_amount": "crwdns80:0crwdne80:0",
- "label_text_detailsTP_type": "crwdns81:0crwdne81:0",
- "label_text_editTP_ask": "crwdns82:0crwdne82:0",
- "label_text_editTP_letsconfirm": "crwdns83:0crwdne83:0",
- "label_alert_editTP_confirm": "crwdns84:0crwdne84:0",
- "label_text_editTP_letsedit": "crwdns85:0crwdne85:0",
- "label_header_editTP": "crwdns86:0crwdne86:0",
- "label_button_editTP_save": "crwdns87:0crwdne87:0",
- "label_alert_editTP_edit": "crwdns88:0crwdne88:0",
- "label_alert_editTP_delete": "crwdns89:0crwdne89:0",
- "label_error_editTP_out_of_rng_subtitle": "crwdns90:0crwdne90:0",
- "label_error_editTP_out_of_rng_text": "crwdns91:0crwdne91:0",
- "label_error_saveTP_subtitle": "crwdns92:0crwdne92:0",
- "label_error_saveTP_pic_and_type": "crwdns93:0crwdne93:0",
- "label_error_saveTP_picture": "crwdns94:0crwdne94:0",
- "label_error_saveTP_trash_type": "crwdns95:0crwdne95:0",
- "label_error_change_loc_subtitle": "crwdns96:0crwdne96:0",
- "label_error_change_loc_text": "crwdns97:0crwdne97:0",
- "label_error_generic_error_subtitle": "crwdns98:0crwdne98:0",
- "label_error_generic_error_text": "crwdns99:0crwdne99:0",
- "label_error_network_subtitle": "crwdns100:0crwdne100:0",
- "label_error_network_text": "crwdns101:0crwdne101:0",
- "label_error_location_subtitle": "crwdns102:0crwdne102:0",
- "label_error_location_text": "crwdns103:0crwdne103:0",
- "label_error_loc_permission_text": "crwdns104:0crwdne104:0",
- "label_trash_details_header": "crwdns105:0crwdne105:0",
- "label_privacy_policy_header": "crwdns106:0crwdne106:0",
- "label_about_header": "crwdns107:0crwdne107:0",
- "label_edit_trashpoint_button": "crwdns108:0crwdne108:0",
- "label_100m_limit_modal": "crwdns109:0crwdne109:0",
- "label_retry_button": "crwdns110:0crwdne110:0",
- "label_country_picker_placeholder": "crwdns111:0crwdne111:0",
- "label_camera_permission_warning_ios": "crwdns112:0crwdne112:0",
- "label_camera_permission_warning_android": "crwdns113:0crwdne113:0",
- "label_camera_error_title": "crwdns114:0crwdne114:0",
- "label_error_modal_default_title": "crwdns115:0crwdne115:0",
- "label_error_modal_default_subtitle": "crwdns116:0crwdne116:0",
- "label_location_permission_warning_ios": "crwdns117:0crwdne117:0",
- "label_location_permission_warning_android": "crwdns118:0crwdne118:0",
- "label_location_off_warning": "crwdns119:0crwdne119:0",
- "label_location_modal_title": "crwdns120:0crwdne120:0",
- "label_network_off_warning_title": "crwdns121:0crwdne121:0",
- "label_network_off_warning": "crwdns122:0crwdne122:0",
- "label_loading_image_text": "crwdns123:0crwdne123:0",
- "label_loading_image_subtext": "crwdns124:0crwdne124:0",
- "label_create_marker_missing_photos": "crwdns125:0crwdne125:0",
- "label_edit_marker_missing_photos": "crwdns126:0crwdne126:0",
- "label_confirm_marker_missing_photos": "crwdns127:0crwdne127:0",
- "label_button_delete": "crwdns128:0crwdne128:0",
- "label_delete_photo_title": "crwdns129:0crwdne129:0",
- "label_delete_photo_subtitle": "crwdns130:0crwdne130:0",
- "label_text_about_1": "crwdns131:0crwdne131:0",
- "label_text_about_2": "crwdns132:0crwdne132:0",
- "label_text_about_3": "crwdns133:0crwdne133:0",
- "label_text_about_4": "crwdns136:0crwdne136:0",
- "label_text_about_5": "crwdns137:0crwdne137:0",
- "label_button_editTP_delete": "crwdns134:0crwdne134:0",
- "label_locked_account_warning": "crwdns135:0crwdne135:0"
+ "label_text_app_subtitle": "crwdns28302:0crwdne28302:0",
+ "label_button_facebook": "crwdns28303:0crwdne28303:0",
+ "label_button_google": "crwdns28304:0crwdne28304:0",
+ "label_button_try_app": "crwdns28305:0crwdne28305:0",
+ "label_button_acknowledge": "crwdns28306:0crwdne28306:0",
+ "label_button_cancel": "crwdns28307:0crwdne28307:0",
+ "label_button_continue": "crwdns28308:0crwdne28308:0",
+ "label_trash_status_threat": "crwdns28309:0crwdne28309:0",
+ "label_trash_status_regular": "crwdns28310:0crwdne28310:0",
+ "label_trash_status_cleaned": "crwdns28311:0crwdne28311:0",
+ "label_trash_status_outdated": "crwdns28312:0crwdne28312:0",
+ "label_trash_status_user": "crwdns28313:0crwdne28313:0",
+ "label_trash_status_change_location": "crwdns28314:0crwdne28314:0",
+ "label_trash_status_state_threat": "crwdns28315:0crwdne28315:0",
+ "label_trash_status_state_regular": "crwdns28316:0crwdne28316:0",
+ "label_trash_status_state_cleaned": "crwdns28317:0crwdne28317:0",
+ "label_trash_status_state_outdated": "crwdns28318:0crwdne28318:0",
+ "label_TP_created_date": "crwdns28319:0crwdne28319:0",
+ "label_TP_updated_date": "crwdns28320:0crwdne28320:0",
+ "label_TP_by": "crwdns28321:0crwdne28321:0",
+ "label_trash_amount_handful": "crwdns28322:0crwdne28322:0",
+ "label_trash_amount_bagful": "crwdns28323:0crwdne28323:0",
+ "label_trash_amount_cartloadl": "crwdns28324:0crwdne28324:0",
+ "label_trash_amount_truckload": "crwdns28325:0crwdne28325:0",
+ "label_trash_type_plastic": "crwdns28326:0crwdne28326:0",
+ "label_trash_type_metal": "crwdns28327:0crwdne28327:0",
+ "label_trash_type_glass": "crwdns28328:0crwdne28328:0",
+ "label_trash_type_electro": "crwdns28329:0crwdne28329:0",
+ "label_trash_type_paper": "crwdns28330:0crwdne28330:0",
+ "label_trash_type_tyres": "crwdns28331:0crwdne28331:0",
+ "label_trash_type_dom_waste": "crwdns28332:0crwdne28332:0",
+ "label_trash_type_furniture": "crwdns28333:0crwdne28333:0",
+ "label_trash_type_org_waste": "crwdns28334:0crwdne28334:0",
+ "label_header_tc": "crwdns28335:0crwdne28335:0",
+ "label_button_tc_agree": "crwdns28336:0crwdne28336:0",
+ "label_header_map": "crwdns28337:0crwdne28337:0",
+ "label_text_popover_subtitle": "crwdns28338:0crwdne28338:0",
+ "label_text_popover_text": "crwdns28339:0crwdne28339:0",
+ "label_header_activity": "crwdns28340:0crwdne28340:0",
+ "label_text_activity_empty_subtitle": "crwdns28341:0crwdne28341:0",
+ "label_text_activity_empty_text": "crwdns28342:0crwdne28342:0",
+ "label_text_activity_empty_hint": "crwdns28343:0crwdne28343:0",
+ "label_header_notific": "crwdns28344:0crwdne28344:0",
+ "label_text_notific_empty_subtitle": "crwdns28345:0crwdne28345:0",
+ "label_text_notific_empty_text": "crwdns28346:0crwdne28346:0",
+ "label_header_profile": "crwdns28347:0crwdne28347:0",
+ "label_header_settings": "crwdns28348:0crwdne28348:0",
+ "label_button_country_empty": "crwdns28349:0crwdne28349:0",
+ "label_text_country": "crwdns28350:0crwdne28350:0",
+ "label_header_select_country": "crwdns28351:0crwdne28351:0",
+ "label_text_select_country_hint": "crwdns28352:0crwdne28352:0",
+ "label_button_tc": "crwdns28353:0crwdne28353:0",
+ "label_button_logout": "crwdns28354:0crwdne28354:0",
+ "label_text_congrats_image": "crwdns28355:0crwdne28355:0",
+ "label_text_congrats_subtitle": "crwdns28356:0crwdne28356:0",
+ "label_text_congrats_text": "crwdns28357:0crwdne28357:0",
+ "label_header_createTP": "crwdns28358:0crwdne28358:0",
+ "label_button_createTP_editloc": "crwdns28359:0crwdne28359:0",
+ "label_header_edit_loc": "crwdns28360:0crwdne28360:0",
+ "label_button_edit_loc_set": "crwdns28361:0crwdne28361:0",
+ "label_text_createTP_status_subtitle": "crwdns28362:0crwdne28362:0",
+ "label_text_createTP_status_text": "crwdns28363:0crwdne28363:0",
+ "label_text_createTP_add_photos": "crwdns28364:0crwdne28364:0",
+ "label_text_createTP_select_amount": "crwdns28365:0crwdne28365:0",
+ "label_text_createTP_select_type": "crwdns28366:0crwdne28366:0",
+ "label_text_createTP_add_hashtags": "crwdns28367:0crwdne28367:0",
+ "label_text_createTP_add_hashtags_hint": "crwdns28368:0crwdne28368:0",
+ "label_button_createTP_confirm_create": "crwdns28369:0crwdne28369:0",
+ "label_alert_createTP_success": "crwdns28370:0crwdne28370:0",
+ "label_text_detailsTP_photos": "crwdns28371:0crwdne28371:0",
+ "label_text_detailsTP_amount": "crwdns28372:0crwdne28372:0",
+ "label_text_detailsTP_type": "crwdns28373:0crwdne28373:0",
+ "label_text_editTP_ask": "crwdns28374:0crwdne28374:0",
+ "label_text_editTP_letsconfirm": "crwdns28375:0crwdne28375:0",
+ "label_alert_editTP_confirm": "crwdns28376:0crwdne28376:0",
+ "label_text_editTP_letsedit": "crwdns28377:0crwdne28377:0",
+ "label_header_editTP": "crwdns28378:0crwdne28378:0",
+ "label_button_editTP_save": "crwdns28379:0crwdne28379:0",
+ "label_alert_editTP_edit": "crwdns28380:0crwdne28380:0",
+ "label_alert_editTP_delete": "crwdns28381:0crwdne28381:0",
+ "label_error_editTP_out_of_rng_subtitle": "crwdns28382:0crwdne28382:0",
+ "label_error_editTP_out_of_rng_text": "crwdns28383:0crwdne28383:0",
+ "label_error_saveTP_subtitle": "crwdns28384:0crwdne28384:0",
+ "label_error_saveTP_pic_and_type": "crwdns28385:0crwdne28385:0",
+ "label_error_saveTP_picture": "crwdns28386:0crwdne28386:0",
+ "label_error_saveTP_trash_type": "crwdns28387:0crwdne28387:0",
+ "label_error_change_loc_subtitle": "crwdns28388:0crwdne28388:0",
+ "label_error_change_loc_text": "crwdns28389:0crwdne28389:0",
+ "label_error_generic_error_subtitle": "crwdns28390:0crwdne28390:0",
+ "label_error_generic_error_text": "crwdns28391:0crwdne28391:0",
+ "label_error_network_subtitle": "crwdns28392:0crwdne28392:0",
+ "label_error_network_text": "crwdns28393:0crwdne28393:0",
+ "label_error_location_subtitle": "crwdns28394:0crwdne28394:0",
+ "label_error_location_text": "crwdns28395:0crwdne28395:0",
+ "label_error_loc_permission_text": "crwdns28396:0crwdne28396:0",
+ "label_trash_details_header": "crwdns28397:0crwdne28397:0",
+ "label_privacy_policy_header": "crwdns28398:0crwdne28398:0",
+ "label_about_header": "crwdns28399:0crwdne28399:0",
+ "label_edit_trashpoint_button": "crwdns28400:0crwdne28400:0",
+ "label_100m_limit_modal": "crwdns28401:0crwdne28401:0",
+ "label_retry_button": "crwdns28402:0crwdne28402:0",
+ "label_country_picker_placeholder": "crwdns28403:0crwdne28403:0",
+ "label_camera_permission_warning_ios": "crwdns28404:0crwdne28404:0",
+ "label_camera_permission_warning_android": "crwdns28405:0crwdne28405:0",
+ "label_camera_error_title": "crwdns28406:0crwdne28406:0",
+ "label_error_modal_default_title": "crwdns28407:0crwdne28407:0",
+ "label_error_modal_default_subtitle": "crwdns28408:0crwdne28408:0",
+ "label_location_permission_warning_ios": "crwdns28409:0crwdne28409:0",
+ "label_location_permission_warning_android": "crwdns28410:0crwdne28410:0",
+ "label_location_off_warning": "crwdns28411:0crwdne28411:0",
+ "label_location_modal_title": "crwdns28412:0crwdne28412:0",
+ "label_network_off_warning_title": "crwdns28413:0crwdne28413:0",
+ "label_network_off_warning": "crwdns28414:0crwdne28414:0",
+ "label_loading_image_text": "crwdns28415:0crwdne28415:0",
+ "label_loading_image_subtext": "crwdns28416:0crwdne28416:0",
+ "label_create_marker_missing_photos": "crwdns28417:0crwdne28417:0",
+ "label_edit_marker_missing_photos": "crwdns28418:0crwdne28418:0",
+ "label_confirm_marker_missing_photos": "crwdns28419:0crwdne28419:0",
+ "label_button_delete": "crwdns28420:0crwdne28420:0",
+ "label_delete_photo_title": "crwdns28421:0crwdne28421:0",
+ "label_delete_photo_subtitle": "crwdns28422:0crwdne28422:0",
+ "label_text_about_1": "crwdns28423:0crwdne28423:0",
+ "label_text_about_2": "crwdns28424:0crwdne28424:0",
+ "label_text_about_3": "crwdns28425:0crwdne28425:0",
+ "label_text_about_4": "crwdns28426:0crwdne28426:0",
+ "label_text_about_5": "crwdns28427:0crwdne28427:0",
+ "label_button_editTP_delete": "crwdns28428:0crwdne28428:0",
+ "label_locked_account_warning": "crwdns28429:0crwdne28429:0"
}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ae.json b/mobile-app/src/trans/ae.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ae.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ak.json b/mobile-app/src/trans/ak.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ak.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/am.json b/mobile-app/src/trans/am.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/am.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/an.json b/mobile-app/src/trans/an.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/an.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ar.json b/mobile-app/src/trans/ar.json
index 57d94d6a11..c449f4e51c 100644
--- a/mobile-app/src/trans/ar.json
+++ b/mobile-app/src/trans/ar.json
@@ -108,10 +108,10 @@
"label_error_modal_default_subtitle": "ŮŮا٠؎ءأ Ů٠اŮŘłŮŘąŮŘą اŮ؎اد٠!",
"label_location_permission_warning_ios": "Ů؏ب ŘŞŘşŮŮŘą ؼؚدادات اŮŮ ŮŮŘš. ŮŮŮŮا٠بذŮŮŘ Ř§ŮŘŞŮŮ ŘĽŮ٠ؼؚدادات> اŮŘŽŘľŮŘľŮŘŠ> ؎د٠ات اŮŮ ŮŮŘš.",
"label_location_permission_warning_android": "Ů؏ب ŘŞŘşŮŮŘą ؼؚدادات اŮŮ ŮŮŘš. ŮŮŮŮا٠بذŮŮŘ Ř§ŮŘŞŮŮ ŘĽŮ٠ؼؚدادات> تءبŮŮات.",
- "label_location_off_warning": "ؼؚدادات اŮŮ ŮŮŘš Ů ŘşŮŮŘŠ. Ů Ů ŮŘśŮŮ Ů٠بŮŘŞŘŮا Ů Ů ŘŽŮا٠ؼؚدادات اŮŮ ŮŮŘš (GPS) ŮŮŮ ŮŮ٠است؎دا٠اŮتءبŮŮ.",
+ "label_location_off_warning": "؎د٠ات اŮŮ ŮŮŘš Ů ŘşŮŮŘŠ. Ů Ů ŮŘśŮŮ Ů٠بŮŘŞŘŮا ٠٠ؼؚدادات ŘŞŘŘŻŮŘŻ اŮŮ ŮاŮŘš (GPS) Ůتست؎د٠اŮتءبŮŮ.",
"label_location_modal_title": "Ů٠بت٠ŮŮ٠اŮŮ ŮŮŘš",
"label_network_off_warning_title": "Ůا ŮŮŘŹŘŻ اتؾا٠بشبŮŘŠ اŮاŮŘŞŘąŮŘŞ",
- "label_network_off_warning": "ت٠تؚءŮ٠بŮاŮات اŮŘĽŮŘŞŘąŮŘŞ. ŮŮ ŮŮŮ ŘŞŮ ŮŮ٠بŮاŮات اŮŘŹŮا٠أ٠تŮŘľŮŮ ŮاتŮ٠بشبŮŘŠ ŮاŮ-ŮŮ Ůاست؎دا٠اŮتءبŮŮ.",
+ "label_network_off_warning": "ت٠تؚءŮ٠بŮاŮات اŮŘŹŮاŮ. ŮŮ ŮŮŮ ŘŞŮ ŮŮ٠بŮاŮات اŮŘŹŮا٠أ٠تŮŘľŮŮ ŮاتŮ٠بشبŮŘŠ ŮاŮ-ŮŮ Ůاست؎دا٠اŮتءبŮŮ.",
"label_loading_image_text": "باŮŮ ŮŮŮŮ...",
"label_loading_image_subtext": "ŮŘśŮا٠اŮتظع ŘŘŞŮ ŮŘŞŮ ŮŮ Ů Ů ŘŮظ Ů ŘŹŮŮŘŻŮ.",
"label_create_marker_missing_photos": "تؚذع ŘŞŘŮ Ů٠اŮŘľŮŘą. اŮع؏اإ Ů ŘاŮŮŘŠ ؼ؜اŮŘŞŮا ٠ع؊ ŘŁŘŽŘąŮ.",
diff --git a/mobile-app/src/trans/arn.json b/mobile-app/src/trans/arn.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/arn.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/as.json b/mobile-app/src/trans/as.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/as.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ast.json b/mobile-app/src/trans/ast.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ast.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/av.json b/mobile-app/src/trans/av.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/av.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/az.json b/mobile-app/src/trans/az.json
new file mode 100644
index 0000000000..f7e3c44c46
--- /dev/null
+++ b/mobile-app/src/trans/az.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "xÉrçÉng",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "plastik",
+ "label_trash_type_metal": "metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "XÉritÉ",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "mÉnim profilim",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "ĂślkÉ",
+ "label_text_country": "ĂślkÉ",
+ "label_header_select_country": "ĂślkÉni seçmÉk",
+ "label_text_select_country_hint": "axtar",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "haqqÄąnda",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "ĂlkÉnizi seçin",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "silmÉk",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ba.json b/mobile-app/src/trans/ba.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ba.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/bal.json b/mobile-app/src/trans/bal.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/bal.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ban.json b/mobile-app/src/trans/ban.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ban.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/be.json b/mobile-app/src/trans/be.json
index 78344189bc..07340bc047 100644
--- a/mobile-app/src/trans/be.json
+++ b/mobile-app/src/trans/be.json
@@ -1,130 +1,130 @@
{
- "label_text_app_subtitle": "Let's clean up the world together!",
- "label_button_facebook": "Continue with Facebook",
- "label_button_google": "Continue with Google",
- "label_button_try_app": "Try out the app without account",
- "label_button_acknowledge": "Ok, got it!",
- "label_button_cancel": "Cancel",
- "label_button_continue": "Continue",
- "label_trash_status_threat": "threat",
- "label_trash_status_regular": "regular",
- "label_trash_status_cleaned": "cleaned",
- "label_trash_status_outdated": "outdated",
- "label_trash_status_user": "user",
- "label_trash_status_change_location": "changeLocation",
- "label_trash_status_state_threat": "This point is a threat!",
- "label_trash_status_state_regular": "This is a regular trashpoint.",
- "label_trash_status_state_cleaned": "This point is cleaned!",
- "label_trash_status_state_outdated": "This point is outdated!",
- "label_TP_created_date": "Created",
- "label_TP_updated_date": "Updated",
- "label_TP_by": " by ",
- "label_trash_amount_handful": "handful",
- "label_trash_amount_bagful": "bagful",
- "label_trash_amount_cartloadl": "cartload",
- "label_trash_amount_truckload": "truckload",
- "label_trash_type_plastic": "Plastic",
- "label_trash_type_metal": "Metal",
- "label_trash_type_glass": "Glass",
- "label_trash_type_electro": "Electronics",
- "label_trash_type_paper": "Paper/Wood",
- "label_trash_type_tyres": "Tyres",
- "label_trash_type_dom_waste": "Domestic waste",
- "label_trash_type_furniture": "Furniture",
- "label_trash_type_org_waste": "Organic waste",
- "label_header_tc": "Terms and Conditions",
- "label_button_tc_agree": "I agree with the Terms & Conditions",
- "label_header_map": "Map",
- "label_text_popover_subtitle": "Join other people who are mapping trash!",
- "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
- "label_header_activity": "My activity",
- "label_text_activity_empty_subtitle": "Nothing to see here!",
- "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
- "label_text_activity_empty_hint": "Add a trashpoint!",
- "label_header_notific": "Notifications",
- "label_text_notific_empty_subtitle": "Nothing to see here!",
- "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
- "label_header_profile": "My profile",
- "label_header_settings": "Account settings",
- "label_button_country_empty": "Country",
- "label_text_country": "Country",
- "label_header_select_country": "Select a country",
- "label_text_select_country_hint": "Search",
- "label_button_tc": "Terms and Conditions",
- "label_button_logout": "Log out",
- "label_text_congrats_image": "Trash captured",
- "label_text_congrats_subtitle": "Great job!",
- "label_text_congrats_text": "Now save the point by verifying the data.",
- "label_header_createTP": "Create a trashpoint",
- "label_button_createTP_editloc": "Edit location",
- "label_header_edit_loc": "Edit location",
- "label_button_edit_loc_set": "Set trashpoint location",
- "label_text_createTP_status_subtitle": "Point status",
- "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
- "label_text_createTP_add_photos": "Add trash photos",
- "label_text_createTP_select_amount": "Select trash amount",
- "label_text_createTP_select_type": "Select trash type",
- "label_text_createTP_add_hashtags": "Additional added tags",
- "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
- "label_button_createTP_confirm_create": "Create trashpoint",
- "label_alert_createTP_success": "Trashpoint successfully created",
- "label_text_detailsTP_photos": "Trash photos",
- "label_text_detailsTP_amount": "Trash amount",
- "label_text_detailsTP_type": "Trash type",
- "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
- "label_text_editTP_letsconfirm": "Yes, I confirm",
- "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
- "label_text_editTP_letsedit": "No, let's edit",
- "label_header_editTP": "Edit a trashpoint",
- "label_button_editTP_save": "Save trashpoint changes",
- "label_alert_editTP_edit": "Trashpoint successfully updated",
- "label_alert_editTP_delete": "Trashpoint successfully deleted",
- "label_error_editTP_out_of_rng_subtitle": "Out of range",
- "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
- "label_error_saveTP_subtitle": "Save trashpoint",
- "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
- "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
- "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
- "label_error_change_loc_subtitle": "Out of bounds",
- "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
- "label_error_generic_error_subtitle": "Out of bounds",
- "label_error_generic_error_text": "There was an error on the server.",
- "label_error_network_subtitle": "No network connection",
- "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_error_location_subtitle": "Enable location",
- "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
- "label_trash_details_header": "Trashpoint details",
- "label_privacy_policy_header": "Privacy Policy",
- "label_about_header": "About",
- "label_edit_trashpoint_button": "Edit trashpoint",
- "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
- "label_retry_button": "Retry",
- "label_country_picker_placeholder": "Choose your country",
- "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
- "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
- "label_camera_error_title": "Camera Access Denied",
- "label_error_modal_default_title": "Oh noes!",
- "label_error_modal_default_subtitle": "The fail whale detected a server error!",
- "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
- "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
- "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_location_modal_title": "Enable location",
- "label_network_off_warning_title": "No network connection",
- "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_loading_image_text": "Almost there...",
- "label_loading_image_subtext": "Please wait while we save your actions.",
- "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_button_delete": "Delete",
- "label_delete_photo_title": "Delete photo",
- "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
- "label_text_about_1": "This app is an initiative by Let's Do It World",
- "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
- "label_text_about_3": "This app is a joint cooperation with",
- "label_text_about_4": "Estonian product, sponsored by the country and government",
- "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
- "label_button_editTP_delete": "Delete trashpoint",
- "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+ "label_text_app_subtitle": "ĐŃОйŃĐź ŃĐ˛ĐľŃ ŃŃŃŃоКŃŃ ŃаСаП!",
+ "label_button_facebook": "ĐŃĐ°ŃŃгнŃŃŃ ĐżŃаС Facebook",
+ "label_button_google": "ĐŃĐ°ŃŃгнŃŃŃ ĐżŃаС Google",
+ "label_button_try_app": "ĐĐ°ŃĐżŃĐ°ĐąŃĐšŃĐľ ĐżŃĐ°ĐłŃĐ°ĐźŃ ĐąĐľĐˇ ŃĐťŃкОвага СапŃŃŃ",
+ "label_button_acknowledge": "ĐОйŃĐ°, СŃаСŃПоŃ!",
+ "label_button_cancel": "ĐĐ´ĐźŃĐ˝ŃŃŃ",
+ "label_button_continue": "ĐŃĐ°ŃŃгваŃŃ",
+ "label_trash_status_threat": "пагŃОСа",
+ "label_trash_status_regular": "СвŃŃаКнŃ",
+ "label_trash_status_cleaned": "Đ°ŃŃŃŃана",
+ "label_trash_status_outdated": "ŃĐ°ŃŃĐ°ŃŃНа",
+ "label_trash_status_user": "каŃŃŃŃĐ°ĐťŃĐ˝ŃĐş",
+ "label_trash_status_change_location": "СПŃĐ˝ŃŃŃĐĐľŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Đľ",
+ "label_trash_status_state_threat": "ĐŃŃĐ°Ń ĐşŃОпка нойŃŃпоŃнаŃ!",
+ "label_trash_status_state_regular": "ĐŃŃĐ° СвŃŃаКнао ПоŃŃĐ° СйОŃŃ ŃПоŃŃŃ.",
+ "label_trash_status_state_cleaned": "ĐŃŃĐ°Đľ ПоŃŃĐ° Đ°ŃŃŃŃана!",
+ "label_trash_status_state_outdated": "ĐŃŃĐ°Đľ ПоŃŃĐ° ŃĐ°ŃŃĐ°ŃŃНа!",
+ "label_TP_created_date": "ĐĄŃвОŃана",
+ "label_TP_updated_date": "ĐйнОŃНона",
+ "label_TP_by": " па ",
+ "label_trash_amount_handful": "МПонŃ",
+ "label_trash_amount_bagful": "пОŃĐ˝Ń ĐźĐľŃ ",
+ "label_trash_amount_cartloadl": "вОС",
+ "label_trash_amount_truckload": "ĐłŃŃСавŃĐş",
+ "label_trash_type_plastic": "ĐНаŃŃŃĐş",
+ "label_trash_type_metal": "ĐĐľŃĐ°Đť",
+ "label_trash_type_glass": "ШкНО",
+ "label_trash_type_electro": "ĐНокŃŃОнŃка",
+ "label_trash_type_paper": "ĐапоŃĐ°/ĐŃŃва",
+ "label_trash_type_tyres": "ШŃĐ˝Ń",
+ "label_trash_type_dom_waste": "ĐОйŃŃавŃŃ Đ°Đ´ŃŃ ĐžĐ´Ń",
+ "label_trash_type_furniture": "ĐŃйНŃ",
+ "label_trash_type_org_waste": "ĐŃганŃŃĐ˝ŃŃ Đ°Đ´ŃŃ ĐžĐ´Ń",
+ "label_header_tc": "ĐŃавŃĐťŃ Đ´Ń ĐŁĐźĐžĐ˛Ń",
+ "label_button_tc_agree": "ĐŻ пагадМаŃŃŃ Đˇ ĐŃавŃĐťĐ°ĐźŃ & УПОваПŃ",
+ "label_header_map": "Đапа",
+ "label_text_popover_subtitle": "ĐĐ°ĐťŃŃĐ°ĐšŃĐľŃŃ Đ´Đ° ŃĐ˝ŃŃŃ ĐťŃдСоК, ŃĐşŃŃ ĐżĐ°ĐˇĐ˝Đ°ŃĐ°ŃŃŃ ŃПоŃŃĐľ на Папо!",
+ "label_text_popover_text": "ĐĐ°ŃĐ˝ŃŃĐľ паСнаŃĐ°ŃŃ ĐˇĐ°ŃПоŃĐ°Đ˝ŃŃ ĐźŃŃŃŃĐ˝Ń, кай СŃĐ°ĐąŃŃŃ Đ˛Đ°ŃŃ ŃŃпОНŃнаŃŃŃ ŃŃŃŃоК Ń ĐˇĐ´Đ°ŃавоК.",
+ "label_header_activity": "ĐĐ°Ń Đ´ĐˇĐľĐšĐ˝Đ°ŃŃŃ",
+ "label_text_activity_empty_subtitle": "ТŃŃ Đ˝ŃŃОга но вŃднО!",
+ "label_text_activity_empty_text": "ĐŃ ŃŃŃŃ Đ˝Đľ Đ´Đ°Đ´Đ°ĐťŃ Đ˝ŃвОднага СаŃПоŃанага ПоŃŃĐ°. ĐĐ°ĐťŃ Đ˛Ń ĐłŃŃĐ° СŃОйŃŃĐľ, ŃĐž ŃĐ˝Ń ĐąŃĐ´ŃŃŃ Đ°Đ´ĐťŃŃŃŃаванŃŃ ŃŃŃ.",
+ "label_text_activity_empty_hint": "ĐĐ°Đ´Đ°ŃŃ ĐˇĐ°ŃПоŃанао ПоŃŃĐ°!",
+ "label_header_notific": "ĐпавŃŃŃŃннŃ",
+ "label_text_notific_empty_subtitle": "ТŃŃ Đ˝ŃŃОга но вŃднО!",
+ "label_text_notific_empty_text": "ĐĐ°ĐşŃĐťŃ ĐźŃ Đ˝Đľ йаŃŃĐťŃ ŃĐşŃŃ -нойŃĐ´ĐˇŃ ĐżŃŃŃ ĐžĐ´ĐˇŃŃŃŃ Đ°ĐżĐ°Đ˛ŃŃŃŃннŃŃ, аНо ĐźŃ Đ´Đ°ĐźĐž ваП водаŃŃ, ĐşĐ°ĐťŃ Đ°ŃŃŃПаоП ŃŃ !",
+ "label_header_profile": "ĐОК ĐżŃĐžŃŃĐťŃ",
+ "label_header_settings": "ĐĐ°ĐťĐ°Đ´Ń Đ°ĐşĐ°ŃĐ˝ŃĐ°",
+ "label_button_country_empty": "ĐŃĐ°Ńна",
+ "label_text_country": "ĐŃĐ°Ńна",
+ "label_header_select_country": "ĐĐąŃĐ°ŃŃ ĐşŃĐ°ŃĐ˝Ń",
+ "label_text_select_country_hint": "ĐĐžŃŃĐş",
+ "label_button_tc": "ĐŃавŃĐťŃ Đ´Ń ĐŁĐźĐžĐ˛Ń",
+ "label_button_logout": "ĐŃĐšŃŃŃ",
+ "label_text_congrats_image": "ХПоŃŃĐľ ŃĐ°ĐąŃана",
+ "label_text_congrats_subtitle": "ĐŃĐ´Đ°ŃĐ˝Đ°Ń ĐżŃĐ°ŃĐ°!",
+ "label_text_congrats_text": "ĐĐ°ŃаС ĐˇĐ°Ń Đ°Đ˛Đ°ĐľŃĐľ ĐşŃОпкŃ, ĐżŃавоŃŃŃŃŃ Đ´Đ°Đ´ĐˇĐľĐ˝ŃŃ.",
+ "label_header_createTP": "ĐĄŃваŃŃŃŃ ĐˇĐ°ŃПоŃĐ°Đ˝ŃŃ ĐşŃОпкŃ",
+ "label_button_createTP_editloc": "ĐĐźŃĐ˝ŃŃŃ ĐźĐľŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Đľ",
+ "label_header_edit_loc": "ĐĐźŃĐ˝ŃŃŃ ĐźĐľŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Đľ",
+ "label_button_edit_loc_set": "ĐŁŃŃанавŃŃŃ ĐˇĐ°ŃПоŃĐ°Đ˝ŃŃ ĐşŃОпкŃ",
+ "label_text_createTP_status_subtitle": "ĐĄŃĐ°ŃŃŃ ĐşŃОпкŃ",
+ "label_text_createTP_status_text": "ĐĐ°ĐťŃ Đ˝ĐľĐ°ĐąŃ ĐžĐ´Đ˝Đ° Ń ŃŃкао дСоŃнно (ŃĐ°ĐşŃŃŃĐ˝ŃŃ ŃŃМкŃŃ ĐźĐľŃĐ°ĐťŃ), ĐşĐ°ĐťŃ ĐťĐ°Ńка, паСнаŃŃĐľ ŃĐş пагŃОСŃ.",
+ "label_text_createTP_add_photos": "ĐĐ°Đ´Đ°ŃŃ ŃĐžŃаСдŃĐźĐşŃ ŃПоŃŃŃ",
+ "label_text_createTP_select_amount": "ĐĐąŃŃŃŃĐľ кОНŃкаŃŃŃ ŃПоŃŃŃ",
+ "label_text_createTP_select_type": "ĐĐąŃŃŃŃĐľ ŃŃĐż ŃПоŃŃŃ",
+ "label_text_createTP_add_hashtags": "ĐĐ°Đ´Đ°ŃкОвŃŃ Đ´Đ°Đ´Đ°Đ´ĐˇĐľĐ˝ŃŃ ŃŃĐłŃ",
+ "label_text_createTP_add_hashtags_hint": "напŃŃкНад #наСвайŃŃндŃ, #йНŃŃанкŃ",
+ "label_button_createTP_confirm_create": "ĐĄŃваŃŃŃŃ ĐˇĐ°ŃПоŃанао ПоŃŃĐ°",
+ "label_alert_createTP_success": "ĐĐ°ŃПоŃĐ°Đ˝Đ°Ń ĐşŃОпка паŃĐżŃŃ ĐžĐ˛Đ° ŃŃвОŃана",
+ "label_text_detailsTP_photos": "ФОŃаСдŃĐźĐşŃ ŃПоŃŃŃ",
+ "label_text_detailsTP_amount": "ĐОНŃкаŃŃŃ ŃПоŃŃŃ",
+ "label_text_detailsTP_type": "ТŃĐż ŃПоŃŃŃ",
+ "label_text_editTP_ask": "ĐŚŃ Đˇ'ŃŃĐťŃĐľŃŃĐ° ŃĐ˝ŃĐ°ŃПаŃŃŃ ĐżŃĐ° ĐłŃŃĐ°Đľ СаŃПоŃанао ПоŃŃĐ° ŃŃŃŃ ĐżŃавŃĐťŃнаК Ń Đ´Đ° ŃŃпоŃĐ°ŃĐ˝Ńга ŃĐ°ŃŃ?",
+ "label_text_editTP_letsconfirm": "Так, Ń ĐżĐ°ŃвŃŃдМаŃ",
+ "label_alert_editTP_confirm": "ĐĐ°ŃПоŃанао ПоŃŃĐ° паŃĐżŃŃ ĐžĐ˛Đ° паŃвоŃдМана",
+ "label_text_editTP_letsedit": "ĐĐľ, даваКŃĐľ ŃŃдагаваŃŃ",
+ "label_header_editTP": "Đ ŃдагаваŃŃ ĐˇĐ°ŃПоŃĐ°Đ˝ŃŃ ĐşŃОпкŃ",
+ "label_button_editTP_save": "ĐĐ°Ń Đ°Đ˛Đ°ŃŃ ĐˇĐźĐľĐ˝Ń ĐżŃĐ° СаŃПоŃанао ПоŃŃĐ°",
+ "label_alert_editTP_edit": "ĐĐ°ŃПоŃанао ПоŃŃĐ° паŃĐżŃŃ ĐžĐ˛Đ° айнОŃНона",
+ "label_alert_editTP_delete": "ĐĐ°ŃПоŃанао ПоŃŃĐ° паŃĐżŃŃ ĐžĐ˛Đ° вŃдаНона",
+ "label_error_editTP_out_of_rng_subtitle": "ĐĐ°-Са ĐˇĐžĐ˝Đ°Ń Đ´Đ°ŃŃМнаŃŃŃ",
+ "label_error_editTP_out_of_rng_text": "ĐŃĐžĐżĐşŃ ĐźĐžĐśĐ˝Đ° СПŃĐ˝ŃŃŃ ŃОНŃĐşŃ, ĐşĐ°ĐťŃ Đ˛Ń ĐˇĐ˝Đ°Ń ĐžĐ´ĐˇŃŃĐľŃŃ Ń ĐźĐľĐśĐ°Ń 100 ПоŃŃĐ°Ń Đ°Đ´ ŃĐľ.",
+ "label_error_saveTP_subtitle": "ĐĐ°Ń Đ°Đ˛Đ°ŃŃ ĐˇĐ°ŃПоŃĐ°Đ˝ŃŃ ĐşŃОпкŃ",
+ "label_error_saveTP_pic_and_type": "ĐĐťŃ Đ˝Đ°Ń ĐąĐžĐťŃŃ ĐşĐ°ŃŃŃна, ĐşĐ°ĐťŃ Đ˛Ń ĐˇŃОйŃŃĐľ Ń Đ°ŃŃ Đą Đ°Đ´Đ˝Ń Đ˛ŃŃĐ˛Ń ĐˇĐ°ŃПоŃанага ПоŃŃĐ° Đ´Ń ŃŃŃĐ°ĐťŃĐľŃĐľ ŃŃĐż ŃПоŃŃŃ.",
+ "label_error_saveTP_picture": "ĐĐťŃ Đ˝Đ°Ń ĐąĐžĐťŃŃ ĐşĐ°ŃŃŃна, ĐşĐ°ĐťŃ Đ˛Ń ĐˇŃОйŃŃĐľ Ń Đ°ŃŃ Đą Đ°Đ´Đ˝Ń Đ˛ŃŃĐ˛Ń ĐˇĐ°ŃПоŃанаК ĐşŃĐžĐżĐşŃ ĐżĐľŃĐ°Đ´ ĐˇĐ°Ń Đ°Đ˛Đ°Đ˝Đ˝ĐľĐź.",
+ "label_error_saveTP_trash_type": "ĐĐťŃ Đ˝Đ°Ń ĐąĐžĐťŃŃ ĐşĐ°ŃŃŃна, ĐşĐ°ĐťŃ Đ˛Ń ŃŃŃĐ°ĐťŃĐľŃĐľ ŃŃĐż СаŃПоŃанага ПоŃŃĐ° поŃĐ°Đ´ ĐˇĐ°Ń Đ°Đ˛Đ°Đ˝Đ˝ĐľĐź.",
+ "label_error_change_loc_subtitle": "ĐĐ°-Са ПоМаПŃ",
+ "label_error_change_loc_text": "ĐĐ°ĐťŃ ĐťĐ°Ńка, СПоŃŃŃŃĐľ ĐşŃĐžĐżĐşŃ Ń ĐźĐľĐśĐ°Ń 100 ПоŃŃĐ°Ń Đ°Đ´ ваŃага ПоŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Ń.",
+ "label_error_generic_error_subtitle": "ĐĐ°-Са ПоМаПŃ",
+ "label_error_generic_error_text": "ĐŃНа паПŃНка на ŃĐľŃвоŃŃ.",
+ "label_error_network_subtitle": "ĐŃПа падНŃŃŃĐ˝Đ˝Ń Đ´Đ° ŃĐľŃĐşŃ",
+ "label_error_network_text": "ĐĐľŃĐ°Đ´Đ°ŃĐ° ПайŃĐťŃĐ˝ŃŃ Đ´Đ°Đ´ĐˇĐľĐ˝ŃŃ Đ°Đ´ĐşĐťŃŃанаŃ. УкНŃŃŃŃŃ ĐżĐľŃĐ°Đ´Đ°ŃŃ ĐźĐ°ĐąŃĐťŃĐ˝ŃŃ Đ´Đ°Đ´ĐˇĐľĐ˝ŃŃ Đ°ĐąĐž падкНŃŃŃŃŃ ŃŃНоŃОн Đ´Đ° Wi-Fi, кай вŃкаŃŃŃŃĐžŃваŃŃ ĐżŃĐ°ĐłŃĐ°ĐźŃ.",
+ "label_error_location_subtitle": "УкНŃŃŃŃŃ ĐźĐľŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Đľ",
+ "label_error_location_text": "ĐĄĐľŃвŃŃŃ Đ˛ŃСнаŃŃĐ˝Đ˝Ń ĐźĐľŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Ń Đ°Đ´ĐşĐťŃŃĐ°Đ˝ŃŃ. ĐĐ°ĐťŃ ĐťĐ°Ńка, ŃкНŃŃŃŃĐľ Đ˛Đ°Ń GPS Ń Đ˝Đ°ĐťĐ°Đ´Đ°Ń , кай вŃкаŃŃŃŃĐžŃваŃŃ ĐżŃĐ°ĐłŃĐ°ĐźŃ.",
+ "label_error_loc_permission_text": "ĐŃ ĐˇĐ°ĐąĐ°ŃĐ°Đ˝ŃĐťŃ ŃĐľŃвŃŃŃ Đ˛ŃСнаŃŃĐ˝Đ˝Ń ĐźĐľŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Ń. ĐĐ°ĐťŃ ĐťĐ°Ńка, даСвОНŃŃĐľ ŃĐź Đ´ĐťŃ ŃагО, кай вŃкаŃŃŃŃĐžŃваŃŃ ĐżŃĐ°ĐłŃĐ°ĐźŃ.",
+ "label_trash_details_header": "ĐĐ°Đ´ŃĐ°ĐąŃСнаŃŃŃ ĐżŃĐ° СаŃПоŃĐ°Đ˝ŃŃ ĐşŃОпкŃ",
+ "label_privacy_policy_header": "ĐĐ°ĐťŃŃŃка ĐżŃŃваŃнаŃŃŃ",
+ "label_about_header": "ĐŃĐ°",
+ "label_edit_trashpoint_button": "Đ ŃдагаваŃŃ ĐˇĐ°ŃПоŃанао ПоŃŃĐ°",
+ "label_100m_limit_modal": "ĐŃĐžĐżĐşŃ ĐźĐžĐśĐ˝Đ° ŃŃдагаваŃŃ ŃОНŃĐşŃ, ĐşĐ°ĐťŃ Đ˛Ń ĐˇĐ˝Đ°Ń ĐžĐ´ĐˇŃŃĐľŃŃ Ń ĐźĐľĐśĐ°Ń 100 ПоŃŃĐ°Ń Đ°Đ´ ŃĐľ.",
+ "label_retry_button": "ĐĐ°ŃŃĐ°ŃŃŃŃ ŃĐżŃОйŃ",
+ "label_country_picker_placeholder": "ĐĐąŃŃŃŃĐľ ŃĐ˛Đ°Ń ĐşŃĐ°ŃĐ˝Ń",
+ "label_camera_permission_warning_ios": "ĐŃ ĐżĐ°Đ˛ŃĐ˝Đ˝Ń ĐˇĐźŃĐ˝ŃŃŃ ĐżŃĐ°Đ˛Ń Đ´ĐžŃŃŃĐżŃ Đ´Đ° каПоŃŃ. ĐĐťŃ ĐłŃŃага, поŃаКдСŃŃĐľ Ń ŃаСдСоН ĐаНадŃ> ĐĐ°Đ˝ŃŃĐ´ŃĐ˝ŃŃКнаŃŃŃ> ĐаПоŃĐ°",
+ "label_camera_permission_warning_android": "ĐŃ ĐżĐ°Đ˛ŃĐ˝Đ˝Ń ĐˇĐźŃĐ˝ŃŃŃ ĐżŃĐ°Đ˛Ń Đ´ĐžŃŃŃĐżŃ Đ´Đ° каПоŃŃ. ĐĐťŃ ĐłŃŃага, поŃаКдСŃŃĐľ Ń ŃаСдСоН ĐаНадŃ> ĐŃĐ°ĐłŃĐ°ĐźŃ",
+ "label_camera_error_title": "ĐайаŃĐžĐ˝ĐľĐ˝Ń Đ´ĐžŃŃŃĐż Đ´Đ° каПоŃŃ",
+ "label_error_modal_default_title": "Đ, но!",
+ "label_error_modal_default_subtitle": "ĐŃŃŃНона паПŃНка ŃĐľŃвоŃĐ°!",
+ "label_location_permission_warning_ios": "ĐŃ ĐżĐ°Đ˛ŃĐ˝Đ˝Ń ĐˇĐźŃĐ˝ŃŃŃ Đ´Đ°ĐˇĐ˛ĐžĐť ПоŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Ń. ĐĐťŃ ĐłŃŃага, поŃаКдСŃŃĐľ Ń ŃаСдСоН ĐаНадŃ> ĐĐ°Đ˝ŃŃĐ´ŃĐ˝ŃŃКнаŃŃŃ> ĐŃСнаŃŃнно ПоŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Ń.",
+ "label_location_permission_warning_android": "ĐŃ ĐżĐ°Đ˛ŃĐ˝Đ˝Ń ĐˇĐźŃĐ˝ŃŃŃ Đ´Đ°ĐˇĐ˛ĐžĐť ПоŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Ń. ĐĐťŃ ĐłŃŃага, поŃаКдСŃŃĐľ Ń ŃаСдСоН ĐаНадŃ> ĐŃĐ°ĐłŃĐ°ĐźŃ.",
+ "label_location_off_warning": "ĐĄĐľŃвŃŃŃ Đ˛ŃСнаŃŃĐ˝Đ˝Ń ĐźĐľŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Ń Đ°Đ´ĐşĐťŃŃĐ°Đ˝ŃŃ. ĐĐ°ĐťŃ ĐťĐ°Ńка, ŃкНŃŃŃŃĐľ Đ˛Đ°Ń GPS Ń Đ˝Đ°ĐťĐ°Đ´Đ°Ń , кай вŃкаŃŃŃŃĐžŃваŃŃ ĐżŃĐ°ĐłŃĐ°ĐźŃ.",
+ "label_location_modal_title": "УкНŃŃŃŃŃ ĐźĐľŃŃĐ°ĐˇĐ˝Đ°Ń ĐžĐ´ĐśĐ°Đ˝Đ˝Đľ",
+ "label_network_off_warning_title": "ĐŃПа падНŃŃŃĐ˝Đ˝Ń Đ´Đ° ŃĐľŃĐşŃ",
+ "label_network_off_warning": "ĐĐľŃĐ°Đ´Đ°ŃĐ° ПайŃĐťŃĐ˝ŃŃ Đ´Đ°Đ´ĐˇĐľĐ˝ŃŃ Đ°Đ´ĐşĐťŃŃанаŃ. УкНŃŃŃŃŃ ĐżĐľŃĐ°Đ´Đ°ŃŃ ĐźĐ°ĐąŃĐťŃĐ˝ŃŃ Đ´Đ°Đ´ĐˇĐľĐ˝ŃŃ Đ°ĐąĐž падкНŃŃŃŃŃ ŃŃНоŃОн Đ´Đ° Wi-Fi, кай вŃкаŃŃŃŃĐžŃваŃŃ ĐżŃĐ°ĐłŃĐ°ĐźŃ.",
+ "label_loading_image_text": "ĐĐźĐ°ĐťŃ ŃĐ°Đź...",
+ "label_loading_image_subtext": "ĐĐ°ŃакаКŃĐľ, пакŃĐťŃ ĐźŃ ĐˇĐ°Ń Đ°Đ˛Đ°ĐľĐź ваŃŃŃ Đ´ĐˇĐľŃннŃ.",
+ "label_create_marker_missing_photos": "ФОŃаСдŃĐźĐşŃ ĐźĐ°ŃкоŃĐ° но ПОгŃŃŃ ĐąŃŃŃ ĐˇĐ°ĐłŃŃМанŃ. ĐĐ°ĐťŃ ĐťĐ°Ńка, паŃĐżŃĐ°ĐąŃĐšŃĐľ Đ´Đ°Đ´Đ°ŃŃ ŃŃ ĐˇĐ˝ĐžŃ.",
+ "label_edit_marker_missing_photos": "ФОŃаСдŃĐźĐşŃ ĐźĐ°ŃкоŃĐ° но ПОгŃŃŃ ĐąŃŃŃ ĐˇĐ°ĐłŃŃМанŃ. ĐĐ°ĐťŃ ĐťĐ°Ńка, паŃĐżŃĐ°ĐąŃĐšŃĐľ Đ´Đ°Đ´Đ°ŃŃ ŃŃ ĐˇĐ˝ĐžŃ.",
+ "label_confirm_marker_missing_photos": "ФОŃаСдŃĐźĐşŃ ĐźĐ°ŃкоŃĐ° но ПОгŃŃŃ ĐąŃŃŃ ĐˇĐ°ĐłŃŃМанŃ. ĐĐ°ĐťŃ ĐťĐ°Ńка, паŃĐżŃĐ°ĐąŃĐšŃĐľ Đ´Đ°Đ´Đ°ŃŃ ŃŃ ĐˇĐ˝ĐžŃ.",
+ "label_button_delete": "ĐŃĐ´Đ°ĐťŃŃŃ",
+ "label_delete_photo_title": "ĐŃĐ´Đ°ĐťŃŃŃ ŃĐžŃĐ°",
+ "label_delete_photo_subtitle": "ĐŃ ŃĐżŃŃнонŃ, ŃŃĐž МадаоŃĐľ вŃĐ´Đ°ĐťŃŃŃ ŃĐžŃĐ°? ĐŃŃĐ°Đľ дСоŃнно ноНŃга Đ°Đ´ĐźŃĐ˝ŃŃŃ.",
+ "label_text_about_1": "ĐŃŃĐ°Ń ĐżŃĐ°ĐłŃаПа ŃŃвОŃана па ŃĐ˝ŃŃŃŃŃŃво Let's Do It World",
+ "label_text_about_2": "ĐŁŃĐľ дадСонŃŃ, ŃĐ°ĐąŃĐ°Đ˝ŃŃ ĐşĐ°ŃŃŃŃĐ°ĐťŃĐ˝ŃĐşĐ°ĐźŃ ĐżĐ° ŃŃŃĐź ŃвоŃĐľ, ĐąŃĐ´ŃŃŃ Đ˛ŃСŃĐ°ĐťŃĐˇĐ°Đ˛Đ°Đ˝Ń Ń ĐłĐťĐ°ĐąĐ°ĐťŃнаК каŃŃĐľ ŃПоŃŃŃ. кай паŃĐ°ŃŃ ŃĐ°ŃŃŃŃŃĐşŃ ĐżĐ° ŃŃŃĐź ŃвоŃĐľ С Đ˝Đ°ĐłĐžĐ´Ń ĐĄŃŃвоŃнага Đ´Đ˝Ń ĐŃŃĐąŃŃаннŃ, 15 воŃĐ°ŃĐ˝Ń 2018",
+ "label_text_about_3": "ĐŃŃĐ° ĐżŃĐ°ĐłŃаПа ŃŃвОŃана ŃŃпОНŃна С",
+ "label_text_about_4": "ĐŃŃОнŃĐşŃ ĐżŃĐ°Đ´ŃĐşŃ, ŃŃвОŃĐ°Đ˝Ń ĐżŃŃ ĐżĐ°Đ´ŃŃŃĐźŃŃ ĐşŃĐ°ŃĐ˝Ń Đ´Ń ŃŃĐ°Đ´Ń",
+ "label_text_about_5": "ФŃндаŃĐ°ŃŃ: ĐŃĐ˝ŃŃŃŃŃŃŃва Đ°Ń ĐžĐ˛Ń Đ˝Đ°Đ˛Đ°ĐşĐžĐťŃнага Đ°ŃŃŃĐžĐ´Đ´ĐˇŃ ĐŃŃОнŃŃ, ĐŃĐ˝ŃŃŃŃŃŃŃва СаПоМнŃŃ ŃĐżŃĐ°Ń ĐŃŃОнŃкаК Đ ŃŃĐżŃйНŃĐşŃ, ĐżŃĐ°ĐłŃаПа \"ĐŃŃОнŃкаК Đ ŃŃĐżŃйНŃŃŃ 100\"",
+ "label_button_editTP_delete": "ĐŃĐ´Đ°ĐťŃŃŃ ĐˇĐ°ŃПоŃĐ°Đ˝ŃŃ ĐşŃОпкŃ",
+ "label_locked_account_warning": "ĐĐ°Ń Đ°ĐşĐ°ŃĐ˝Ń ĐˇĐ°ĐąĐťĐ°ĐşĐ°Đ˛Đ°Đ˝Ń. ĐĐ° падŃĐ°ĐąŃСнаŃŃŃĐźŃ ĐˇĐ˛ŃŃĐ˝ŃŃĐľŃŃ Đ´Đ° Đ°Đ´ĐźŃĐ˝ŃŃŃŃĐ°ŃĐ°ŃĐ°."
}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ber.json b/mobile-app/src/trans/ber.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ber.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/bfo.json b/mobile-app/src/trans/bfo.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/bfo.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/bg.json b/mobile-app/src/trans/bg.json
index 78344189bc..2c9357d1f0 100644
--- a/mobile-app/src/trans/bg.json
+++ b/mobile-app/src/trans/bg.json
@@ -1,85 +1,85 @@
{
- "label_text_app_subtitle": "Let's clean up the world together!",
- "label_button_facebook": "Continue with Facebook",
- "label_button_google": "Continue with Google",
+ "label_text_app_subtitle": "Đока пОŃиŃŃиП ŃвоŃĐ° СаоднО!",
+ "label_button_facebook": "ĐŃОдŃНМавано Ń Facebook",
+ "label_button_google": "ĐŃОдŃНМавано Ń Google",
"label_button_try_app": "Try out the app without account",
- "label_button_acknowledge": "Ok, got it!",
- "label_button_cancel": "Cancel",
- "label_button_continue": "Continue",
+ "label_button_acknowledge": "ĐОйŃĐľ, ŃŃ Đ˛Đ°Đ˝Đ°Ń !",
+ "label_button_cancel": "ĐŃкаС",
+ "label_button_continue": "ĐŃОдŃНМавано",
"label_trash_status_threat": "threat",
"label_trash_status_regular": "regular",
- "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_cleaned": "иСŃиŃŃонО",
"label_trash_status_outdated": "outdated",
- "label_trash_status_user": "user",
+ "label_trash_status_user": "пОŃŃойиŃоН",
"label_trash_status_change_location": "changeLocation",
"label_trash_status_state_threat": "This point is a threat!",
"label_trash_status_state_regular": "This is a regular trashpoint.",
- "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_cleaned": "ТаСи ŃĐžŃка Đľ пОŃиŃŃона!",
"label_trash_status_state_outdated": "This point is outdated!",
- "label_TP_created_date": "Created",
- "label_TP_updated_date": "Updated",
- "label_TP_by": " by ",
+ "label_TP_created_date": "ĐĄŃСдадонО",
+ "label_TP_updated_date": "ĐŃŃвŃоПононО",
+ "label_TP_by": " ĐžŃ ",
"label_trash_amount_handful": "handful",
"label_trash_amount_bagful": "bagful",
"label_trash_amount_cartloadl": "cartload",
"label_trash_amount_truckload": "truckload",
- "label_trash_type_plastic": "Plastic",
- "label_trash_type_metal": "Metal",
- "label_trash_type_glass": "Glass",
- "label_trash_type_electro": "Electronics",
- "label_trash_type_paper": "Paper/Wood",
- "label_trash_type_tyres": "Tyres",
- "label_trash_type_dom_waste": "Domestic waste",
- "label_trash_type_furniture": "Furniture",
- "label_trash_type_org_waste": "Organic waste",
- "label_header_tc": "Terms and Conditions",
- "label_button_tc_agree": "I agree with the Terms & Conditions",
- "label_header_map": "Map",
+ "label_trash_type_plastic": "ĐНаŃŃПаŃĐ°",
+ "label_trash_type_metal": "ĐĐľŃĐ°Đť",
+ "label_trash_type_glass": "ĐĄŃŃкНО",
+ "label_trash_type_electro": "ĐНокŃŃОника",
+ "label_trash_type_paper": "ĐĽĐ°ŃŃиŃ/Đ´ŃŃвО",
+ "label_trash_type_tyres": "ĐŃПи",
+ "label_trash_type_dom_waste": "ĐиŃОви ĐžŃпадŃŃи",
+ "label_trash_type_furniture": "ĐойоНи",
+ "label_trash_type_org_waste": "ĐŃганиŃни ĐžŃпадŃŃи",
+ "label_header_tc": "ĐŃавиНа и ŃŃНОвиŃ",
+ "label_button_tc_agree": "ĐĄŃгНаŃŃваП ŃĐľ Ń ĐżŃавиНаŃĐ° и ŃŃНОвиŃŃĐ°",
+ "label_header_map": "ĐĐ°ŃŃĐ°",
"label_text_popover_subtitle": "Join other people who are mapping trash!",
"label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
- "label_header_activity": "My activity",
- "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_header_activity": "ĐĐžŃŃĐ° доКнОŃŃ",
+ "label_text_activity_empty_subtitle": "ĐŃПа каквО Đ´Đ° видиŃĐľ ŃŃĐş!",
"label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
"label_text_activity_empty_hint": "Add a trashpoint!",
- "label_header_notific": "Notifications",
- "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_header_notific": "ĐСвоŃŃиŃ",
+ "label_text_notific_empty_subtitle": "ĐŃПа каквО Đ´Đ° видиŃĐľ ŃŃĐş!",
"label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
- "label_header_profile": "My profile",
- "label_header_settings": "Account settings",
- "label_button_country_empty": "Country",
- "label_text_country": "Country",
- "label_header_select_country": "Select a country",
- "label_text_select_country_hint": "Search",
- "label_button_tc": "Terms and Conditions",
- "label_button_logout": "Log out",
+ "label_header_profile": "ĐĐžŃŃ ĐżŃĐžŃиН",
+ "label_header_settings": "ĐĐ°ŃŃŃОКки на акаŃĐ˝ŃĐ°",
+ "label_button_country_empty": "ĐŃŃМава",
+ "label_text_country": "ĐŃŃМава",
+ "label_header_select_country": "ĐСйоŃĐľŃĐľ Đ´ŃŃМава",
+ "label_text_select_country_hint": "ТŃŃŃоно",
+ "label_button_tc": "ĐŃавиНа и ŃŃНОвиŃ",
+ "label_button_logout": "ĐĐˇŃ ĐžĐ´",
"label_text_congrats_image": "Trash captured",
- "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_subtitle": "ĐĄŃŃĐ°Ń ĐžŃна ŃайОŃĐ°!",
"label_text_congrats_text": "Now save the point by verifying the data.",
"label_header_createTP": "Create a trashpoint",
- "label_button_createTP_editloc": "Edit location",
- "label_header_edit_loc": "Edit location",
+ "label_button_createTP_editloc": "РодакŃиŃано на ПоŃŃОпОНОМониоŃĐž",
+ "label_header_edit_loc": "РодакŃиŃано на ПоŃŃОпОНОМониоŃĐž",
"label_button_edit_loc_set": "Set trashpoint location",
- "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_subtitle": "ĐĄŃŃŃĐžŃнио на ŃĐžŃкаŃĐ°",
"label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
- "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_add_photos": "ĐОйавŃно на ŃниПки Ń ĐąĐžĐşĐťŃŃи",
"label_text_createTP_select_amount": "Select trash amount",
- "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_select_type": "ĐСйоŃĐľŃĐľ вид йОкНŃĐş",
"label_text_createTP_add_hashtags": "Additional added tags",
"label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
"label_button_createTP_confirm_create": "Create trashpoint",
"label_alert_createTP_success": "Trashpoint successfully created",
- "label_text_detailsTP_photos": "Trash photos",
- "label_text_detailsTP_amount": "Trash amount",
- "label_text_detailsTP_type": "Trash type",
+ "label_text_detailsTP_photos": "ХниПки Ń ĐąĐžĐşĐťŃŃи",
+ "label_text_detailsTP_amount": "ĐОНиŃĐľŃŃвО ŃПоŃ",
+ "label_text_detailsTP_type": "Đид ĐžŃпадŃŃи",
"label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
- "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_text_editTP_letsconfirm": "ĐĐ°, пОŃвŃŃМдаваП",
"label_alert_editTP_confirm": "Trashpoint successfully confirmed",
- "label_text_editTP_letsedit": "No, let's edit",
+ "label_text_editTP_letsedit": "ĐĐľ, нока ŃодакŃиŃĐ°Đź",
"label_header_editTP": "Edit a trashpoint",
"label_button_editTP_save": "Save trashpoint changes",
"label_alert_editTP_edit": "Trashpoint successfully updated",
"label_alert_editTP_delete": "Trashpoint successfully deleted",
- "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_subtitle": "ĐСвŃĐ˝ ĐžĐąŃ Đ˛Đ°Ń",
"label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
"label_error_saveTP_subtitle": "Save trashpoint",
"label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
@@ -91,34 +91,34 @@
"label_error_generic_error_text": "There was an error on the server.",
"label_error_network_subtitle": "No network connection",
"label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_error_location_subtitle": "Enable location",
+ "label_error_location_subtitle": "ĐОСвОНонио ОпŃодоНŃноŃĐž на ПоŃŃОпОНОМонио",
"label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
"label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
"label_trash_details_header": "Trashpoint details",
- "label_privacy_policy_header": "Privacy Policy",
- "label_about_header": "About",
+ "label_privacy_policy_header": "ĐОНиŃика Са пОвоŃиŃоНнОŃŃ",
+ "label_about_header": "ĐĐ˝ŃĐž",
"label_edit_trashpoint_button": "Edit trashpoint",
"label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
- "label_retry_button": "Retry",
- "label_country_picker_placeholder": "Choose your country",
+ "label_retry_button": "ĐпиŃвано пак",
+ "label_country_picker_placeholder": "ĐСйоŃĐľŃĐľ Đ´ŃŃМаваŃĐ° Ńи",
"label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
"label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
- "label_camera_error_title": "Camera Access Denied",
- "label_error_modal_default_title": "Oh noes!",
+ "label_camera_error_title": "ĐŃкаСан Đľ Đ´ĐžŃŃŃĐż Đ´Đž каПоŃĐ°ŃĐ°",
+ "label_error_modal_default_title": "Đ, но!",
"label_error_modal_default_subtitle": "The fail whale detected a server error!",
"label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
"label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
"label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_location_modal_title": "Enable location",
+ "label_location_modal_title": "ĐОСвОНонио ОпŃодоНŃноŃĐž на ПоŃŃОпОНОМонио",
"label_network_off_warning_title": "No network connection",
"label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_loading_image_text": "Almost there...",
- "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_loading_image_text": "ĐĐžŃŃи ŃĐ°Đź...",
+ "label_loading_image_subtext": "ĐĐžŃакаКŃĐľ, дОкаŃĐž СапиŃваПо доКŃŃвиŃŃĐ° ви.",
"label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
"label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
"label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_button_delete": "Delete",
- "label_delete_photo_title": "Delete photo",
+ "label_button_delete": "ĐСŃŃивано",
+ "label_delete_photo_title": "ĐСŃŃивано на ŃниПкаŃĐ°",
"label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
"label_text_about_1": "This app is an initiative by Let's Do It World",
"label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
@@ -126,5 +126,5 @@
"label_text_about_4": "Estonian product, sponsored by the country and government",
"label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
"label_button_editTP_delete": "Delete trashpoint",
- "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+ "label_locked_account_warning": "ĐĐ°ŃиŃŃ Đ°ĐşĐ°ŃĐ˝Ń Đľ СакНŃŃон. ĐĐ° пОдŃОйнОŃŃи ŃĐľ ŃвŃŃМоŃĐľ Ń Đ°Đ´ĐźĐ¸Đ˝Đ¸ŃŃŃĐ°ŃĐžŃĐ°."
}
\ No newline at end of file
diff --git a/mobile-app/src/trans/bh.json b/mobile-app/src/trans/bh.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/bh.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/bi.json b/mobile-app/src/trans/bi.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/bi.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/bm.json b/mobile-app/src/trans/bm.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/bm.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/bn.json b/mobile-app/src/trans/bn.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/bn.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/br.json b/mobile-app/src/trans/br.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/br.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ce.json b/mobile-app/src/trans/ce.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ce.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ceb.json b/mobile-app/src/trans/ceb.json
index 10ef06ff8e..776e635197 100644
--- a/mobile-app/src/trans/ceb.json
+++ b/mobile-app/src/trans/ceb.json
@@ -42,7 +42,7 @@
"label_text_activity_empty_text": "Wala pa kay nadugang na lugar para sa basura. Pag naa na, malista dinhi.",
"label_text_activity_empty_hint": "Pagdugang ug lugar para sa basura!",
"label_header_notific": "Pagpahibalo",
- "label_text_notific_empty_subtitle": "Walay makita diari!",
+ "label_text_notific_empty_subtitle": "Walay makita dire!",
"label_text_notific_empty_text": "Wala pay mga pahibalo na niabot, pahibal-on ka namo kung naa na!",
"label_header_profile": "Akong Takiliran",
"label_header_settings": "Himutangan sa Account",
@@ -57,7 +57,7 @@
"label_text_congrats_text": "Karon i-save ang punto pamaagi sa pagberipika sa datos.",
"label_header_createTP": "Paghimu ug trashpoint",
"label_button_createTP_editloc": "Ilisdi lokasyon",
- "label_header_edit_loc": "Ilisdi ang lokasyon",
+ "label_header_edit_loc": "Ilisdi lokasyon",
"label_button_edit_loc_set": "Itakna ang lokasyon sa trashpoint",
"label_text_createTP_status_subtitle": "Kahimtang sa punto",
"label_text_createTP_status_text": "Lung kinahanglan aksyunan dayun (makalason, heavy metals) palihug itakna na hulga.",
@@ -108,9 +108,9 @@
"label_error_modal_default_subtitle": "Nakadetek ug sayop sa serber ang fail whale!",
"label_location_permission_warning_ios": "Kinahanglan nimo ilisan pagtugot sa lokasyon. Aron mahimo ni, adto sa Settings > Privacy > Location services.",
"label_location_permission_warning_android": "Kinahanglan nimo ilisan ang pagtugot sa lokasyon. Aron mahimo ni, adto sa Settings > Apps.",
- "label_location_off_warning": "Nakapalong ang serbisyo para sa Lokasyon. Palihug ug abri sa sa imong GPS sa Settings aron magamit ang application.",
+ "label_location_off_warning": "Nakapalong ang Location Services. Palihug ug abri sa sa imong GPS sa Settings aron magamit ang application.",
"label_location_modal_title": "Abrihi ang lokasyon",
- "label_network_off_warning_title": "Walay koneksiyon sa network",
+ "label_network_off_warning_title": "Walay koneksyon sa network",
"label_network_off_warning": "Naka disable ang mobile data. Abrihi ang mobile o ikonekta sa Wi-Fi ang imong telepono aron magamit ang application.",
"label_loading_image_text": "Hapit na...",
"label_loading_image_subtext": "Palihug huwat samtang kina-save namu imong mga kalihokan.",
diff --git a/mobile-app/src/trans/ch.json b/mobile-app/src/trans/ch.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ch.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/chr.json b/mobile-app/src/trans/chr.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/chr.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/co.json b/mobile-app/src/trans/co.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/co.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/cr.json b/mobile-app/src/trans/cr.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/cr.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/crs.json b/mobile-app/src/trans/crs.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/crs.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/cs.json b/mobile-app/src/trans/cs.json
index 78344189bc..a5e09eb2ff 100644
--- a/mobile-app/src/trans/cs.json
+++ b/mobile-app/src/trans/cs.json
@@ -1,11 +1,11 @@
{
- "label_text_app_subtitle": "Let's clean up the world together!",
- "label_button_facebook": "Continue with Facebook",
- "label_button_google": "Continue with Google",
- "label_button_try_app": "Try out the app without account",
- "label_button_acknowledge": "Ok, got it!",
- "label_button_cancel": "Cancel",
- "label_button_continue": "Continue",
+ "label_text_app_subtitle": "PojÄme spoleÄnÄ vyÄistit svÄt!",
+ "label_button_facebook": "PokraÄovat pĹes Facebook",
+ "label_button_google": "PokraÄovat pĹes Google",
+ "label_button_try_app": "VyzkouĹĄet aplikaci bez ĂşÄtu",
+ "label_button_acknowledge": "Ok, mĂĄm to!",
+ "label_button_cancel": "ZruĹĄit",
+ "label_button_continue": "PokraÄovat",
"label_trash_status_threat": "threat",
"label_trash_status_regular": "regular",
"label_trash_status_cleaned": "cleaned",
@@ -44,14 +44,14 @@
"label_header_notific": "Notifications",
"label_text_notific_empty_subtitle": "Nothing to see here!",
"label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
- "label_header_profile": "My profile",
- "label_header_settings": "Account settings",
- "label_button_country_empty": "Country",
- "label_text_country": "Country",
- "label_header_select_country": "Select a country",
- "label_text_select_country_hint": "Search",
+ "label_header_profile": "MĹŻj profil",
+ "label_header_settings": "NastavenĂ ĂşÄtu",
+ "label_button_country_empty": "ZemÄ",
+ "label_text_country": "ZemÄ",
+ "label_header_select_country": "Vyberte zemi",
+ "label_text_select_country_hint": "VyhledĂĄvĂĄnĂ",
"label_button_tc": "Terms and Conditions",
- "label_button_logout": "Log out",
+ "label_button_logout": "OdhlĂĄsit se",
"label_text_congrats_image": "Trash captured",
"label_text_congrats_subtitle": "Great job!",
"label_text_congrats_text": "Now save the point by verifying the data.",
@@ -72,14 +72,14 @@
"label_text_detailsTP_amount": "Trash amount",
"label_text_detailsTP_type": "Trash type",
"label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
- "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_text_editTP_letsconfirm": "Ano, potvrzuji",
"label_alert_editTP_confirm": "Trashpoint successfully confirmed",
"label_text_editTP_letsedit": "No, let's edit",
"label_header_editTP": "Edit a trashpoint",
"label_button_editTP_save": "Save trashpoint changes",
"label_alert_editTP_edit": "Trashpoint successfully updated",
"label_alert_editTP_delete": "Trashpoint successfully deleted",
- "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_subtitle": "Mimo dosah",
"label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
"label_error_saveTP_subtitle": "Save trashpoint",
"label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
diff --git a/mobile-app/src/trans/cv.json b/mobile-app/src/trans/cv.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/cv.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/da.json b/mobile-app/src/trans/da.json
index 408d2d0057..e44e221fc6 100644
--- a/mobile-app/src/trans/da.json
+++ b/mobile-app/src/trans/da.json
@@ -50,7 +50,7 @@
"label_text_country": "Land",
"label_header_select_country": "VĂŚlg et land",
"label_text_select_country_hint": "Search",
- "label_button_tc": "Terms and Conditions",
+ "label_button_tc": "Betingelser og vilkĂĽr",
"label_button_logout": "Log out",
"label_text_congrats_image": "Trash captured",
"label_text_congrats_subtitle": "Great job!",
@@ -108,15 +108,15 @@
"label_error_modal_default_subtitle": "Vi fandt en fejl pĂĽ serveren!",
"label_location_permission_warning_ios": "Du skal Ìndre tilladelser for sted. For at gøre dette, gü til Indstillinger > Privatliv > Serviceydelser for sted.",
"label_location_permission_warning_android": "Du skal Ìndre tilladelser for sted. For at gøre dette, gü til Indstillinger > Apps.",
- "label_location_off_warning": "Serviceydelser for sted er slĂĽet fra. Venligst aktiver din GPS i dine Indstillinger for at bruge fuktionen.",
- "label_location_modal_title": "Aktiver sted",
- "label_network_off_warning_title": "Ingen netvĂŚrksforbindelse",
- "label_network_off_warning": "Mobildata er deaktiveret. Aktiverer mobil data eller tilslut din telefon til Wi-Fi for at bruge funktionen.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
"label_loading_image_text": "NĂŚsten fĂŚrdig...",
"label_loading_image_subtext": "Vent venligst, mens vi gemmer dine handlinger.",
"label_create_marker_missing_photos": "Markørbillederne kunne ikke overføres. Prøv at tilføje dem igen.",
"label_edit_marker_missing_photos": "Markørbillederne kunne ikke overføres. Prøv at tilføje dem igen.",
- "label_confirm_marker_missing_photos": "Markørbillederne kunne ikke uploades. Prøv venligst at tilføje dem igen.",
+ "label_confirm_marker_missing_photos": "Markørbillederne kunne ikke overføres. Prøv at tilføje dem igen.",
"label_button_delete": "Slet",
"label_delete_photo_title": "Slet foto",
"label_delete_photo_subtitle": "Er du sikker pĂĽ, du vil slette fotoet? Du kan ikke fortryde dette.",
diff --git a/mobile-app/src/trans/de.json b/mobile-app/src/trans/de.json
index 53d755a0cf..3316f2dbb8 100644
--- a/mobile-app/src/trans/de.json
+++ b/mobile-app/src/trans/de.json
@@ -50,7 +50,7 @@
"label_text_country": "Land",
"label_header_select_country": "Wähle ein Land",
"label_text_select_country_hint": "Suchen",
- "label_button_tc": "Allgemeine Geschäftsbedigungen",
+ "label_button_tc": "Allgemeine Geschäftsbedingungen",
"label_button_logout": "Abmelden",
"label_text_congrats_image": "MĂźll erbeutet",
"label_text_congrats_subtitle": "Gute Arbeit!",
diff --git a/mobile-app/src/trans/dv.json b/mobile-app/src/trans/dv.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/dv.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/dz.json b/mobile-app/src/trans/dz.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/dz.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/el.json b/mobile-app/src/trans/el.json
index 0a659718be..e85e574f25 100644
--- a/mobile-app/src/trans/el.json
+++ b/mobile-app/src/trans/el.json
@@ -50,7 +50,7 @@
"label_text_country": "ΧĎĎÎą",
"label_header_select_country": "ÎĎΚΝÎΞĎÎľ ĎĎĎÎą",
"label_text_select_country_hint": "ÎνιΜΎĎΡĎΡ",
- "label_button_tc": "ÎĎοΚ κιΚ ĎĎÎżĎ ĎοθÎĎξΚĎ",
+ "label_button_tc": "ÎĎοΚ κιΚ ĎĎÎżĎĎοθÎĎξΚĎ",
"label_button_logout": "ÎĎÎżĎĎνδξĎΡ",
"label_text_congrats_image": "Τι ÎąĎÎżĎĎίΟΟιĎÎą ÎąĎÎżĎĎ ĎĎθΡκιν",
"label_text_congrats_subtitle": "ΌινĎÎąĎĎΚκΏ!",
diff --git a/mobile-app/src/trans/en.json b/mobile-app/src/trans/en.json
index e94a8c0088..bec693b6bc 100644
--- a/mobile-app/src/trans/en.json
+++ b/mobile-app/src/trans/en.json
@@ -126,5 +126,7 @@
"label_text_about_4": "Estonian product, sponsored by the country and government",
"label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
"label_button_editTP_delete": "Delete trashpoint",
- "label_locked_account_warning": "Your account is locked. For details contact an administrator."
-}
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator.",
+ "label_no_connection_note": "Without the Internet, you can only mark the trash. This mark will be transferred to the server when the connection to the Internet is restored.",
+ "label_your_coordinates": "Your coordinates"
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/eo.json b/mobile-app/src/trans/eo.json
new file mode 100644
index 0000000000..49ad7ca87b
--- /dev/null
+++ b/mobile-app/src/trans/eo.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Ni purigu la mondon kune!",
+ "label_button_facebook": "DaĹrigu per Facebook",
+ "label_button_google": "DaĹrigu per Google",
+ "label_button_try_app": "Elprovu la apon sen konto",
+ "label_button_acknowledge": "Okej, mi komprenis!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "DaĹrigu",
+ "label_trash_status_threat": "danÄero",
+ "label_trash_status_regular": "normala",
+ "label_trash_status_cleaned": "purigita",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "uzanto",
+ "label_trash_status_change_location": "ĹanÄu lokon",
+ "label_trash_status_state_threat": "Tiu-Äi punkto estas danÄero!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "Tiu-Äi punkto estas purigita!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Kreita",
+ "label_TP_updated_date": "Äisdatigita",
+ "label_TP_by": " de ",
+ "label_trash_amount_handful": "mano da",
+ "label_trash_amount_bagful": "sako da",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastiko",
+ "label_trash_type_metal": "Metalo",
+ "label_trash_type_glass": "Vitro",
+ "label_trash_type_electro": "EletronikaÄľoj",
+ "label_trash_type_paper": "Papero/ligno",
+ "label_trash_type_tyres": "PneĹno",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Mebloj",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Mapo",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "Miaj aktivecoj",
+ "label_text_activity_empty_subtitle": "Nenio por vidi Äi-tie!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Aldonu rubaÄľpunkton!",
+ "label_header_notific": "Sciigoj",
+ "label_text_notific_empty_subtitle": "Nenio por vidi Äi-tie!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "Mia profilo",
+ "label_header_settings": "Kontaj agordoj",
+ "label_button_country_empty": "Lando",
+ "label_text_country": "Lando",
+ "label_header_select_country": "Elektu landon",
+ "label_text_select_country_hint": "SerÄi",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Elsaluti",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Bonege!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Krei rubaÄľpunkton",
+ "label_button_createTP_editloc": "Redakti lokon",
+ "label_header_edit_loc": "Redakti lokon",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Stato de punkto",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Aldonu fotojn de la rubaÄľo",
+ "label_text_createTP_select_amount": "Elekto kvanton de la rubaÄľo",
+ "label_text_createTP_select_type": "Elektu la tipon de la rubaÄľo",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Kreu rubaÄľpunkton",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Fotoj de la rubaÄľo",
+ "label_text_detailsTP_amount": "Kvanto de la rubaÄľo",
+ "label_text_detailsTP_type": "Tipo de rubaÄľo",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Jes, mi konfirmas",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "Ne, ni redaktu",
+ "label_header_editTP": "Redakti rubaÄľpunkton",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "ĹanÄu rubaÄľpunkton",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Detaloj pri la rubaÄľpunkto",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "Pri",
+ "label_edit_trashpoint_button": "Redakti rubaÄľpunkton",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Reprovi",
+ "label_country_picker_placeholder": "Elektu vian landon",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Ho ve!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "PreskaĹ alvenata...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Forigi",
+ "label_delete_photo_title": "Forigi foton",
+ "label_delete_photo_subtitle": "Äu vi certas ke vi volas forigi la foton? Ve ne povas malfari tion.",
+ "label_text_about_1": "Tiu-Äi apo estas iniciativo de Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Forigi rubaÄľpunkton",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/et.json b/mobile-app/src/trans/et.json
index 0006d94bdc..11aabb4663 100644
--- a/mobile-app/src/trans/et.json
+++ b/mobile-app/src/trans/et.json
@@ -6,16 +6,16 @@
"label_button_acknowledge": "Selge, sain aru!",
"label_button_cancel": "Loobu",
"label_button_continue": "Jätka",
- "label_trash_status_threat": "oht",
+ "label_trash_status_threat": "ohtlik",
"label_trash_status_regular": "tavaline",
"label_trash_status_cleaned": "koristatud",
"label_trash_status_outdated": "aegunud",
"label_trash_status_user": "kasutaja",
"label_trash_status_change_location": "muuda asukohta",
- "label_trash_status_state_threat": "Ohtlik leiukoht!",
+ "label_trash_status_state_threat": "Ohtlik prĂźgipunkt!",
"label_trash_status_state_regular": "Sage prĂźgi leiukoht.",
- "label_trash_status_state_cleaned": "Koristatud leiukoht!",
- "label_trash_status_state_outdated": "Ajakohastamata leiukoht!",
+ "label_trash_status_state_cleaned": "Koristatud prĂźgipunkt!",
+ "label_trash_status_state_outdated": "Aegunud prĂźgipunkt!",
"label_TP_created_date": "Loodud",
"label_TP_updated_date": "Uuendatud",
"label_TP_by": " ",
@@ -37,12 +37,12 @@
"label_header_map": "Kaart",
"label_text_popover_subtitle": "Liitu prĂźgi kaardistajatega!",
"label_text_popover_text": "Alusta prĂźgi leiukohtade kaardistamist, et muuta oma Ăźmbrus puhtamaks.",
- "label_header_activity": "Minu tegevused",
- "label_text_activity_empty_subtitle": "Siin pole midagi vaadata!",
+ "label_header_activity": "Minu panus",
+ "label_text_activity_empty_subtitle": "Pole veel midagi näidata!",
"label_text_activity_empty_text": "Sa ei ole veel lisanud Ăźhtegi prĂźgi leiukohta. Kui lisad uue leiukoha, siis ilmub see siia.",
"label_text_activity_empty_hint": "Lisa prĂźgi leiukoht!",
"label_header_notific": "Teated",
- "label_text_notific_empty_subtitle": "Siin pole midagi vaadata!",
+ "label_text_notific_empty_subtitle": "Pole veel midagi näidata!",
"label_text_notific_empty_text": "Uusi teateid pole, ent kui need saabuvad, siis kuvame neid siin!",
"label_header_profile": "Minu profiil",
"label_header_settings": "Konto sätted",
@@ -68,7 +68,7 @@
"label_text_createTP_add_hashtags_hint": "näiteks: #tootenimi, #purgid",
"label_button_createTP_confirm_create": "Loo uus prĂźgi leiukoht",
"label_alert_createTP_success": "PrĂźgi leiukoht edukalt loodud",
- "label_text_detailsTP_photos": "PrĂźgi fotod",
+ "label_text_detailsTP_photos": "Fotod prĂźgist",
"label_text_detailsTP_amount": "PrĂźgi kogus",
"label_text_detailsTP_type": "Prßgi tßßp",
"label_text_editTP_ask": "Kas prßgi leiukoha info on täpne ja ajakohastatud?",
@@ -77,11 +77,11 @@
"label_text_editTP_letsedit": "Ei, muudame infot",
"label_header_editTP": "Muuda prĂźgi leiukohta",
"label_button_editTP_save": "Salvesta muudatused",
- "label_alert_editTP_edit": "PrĂźgi leiukoht edukalt ajakohastatud",
+ "label_alert_editTP_edit": "PrĂźgipunkt edukalt uuendatud",
"label_alert_editTP_delete": "PrĂźgi leiukoht edukalt kustutatud",
"label_error_editTP_out_of_rng_subtitle": "Vahemikust väljas",
"label_error_editTP_out_of_rng_text": "Leiukohta saate muuta ainult siis, kui olete 100 meetri raadiuses.",
- "label_error_saveTP_subtitle": "Salvesta prĂźgi leiukoht",
+ "label_error_saveTP_subtitle": "Salvesta prĂźgipunkt",
"label_error_saveTP_pic_and_type": "Palun lisa pilt prßgi leiukohast ning määra prßgi tßßp.",
"label_error_saveTP_picture": "Meile on abiks, kui teed enne salvestamist prßgi leiukohast vähemalt ßhe pildi.",
"label_error_saveTP_trash_type": "Meile on kasulikum kui määrad enne salvestamist prßgi punkti tßßbi.",
@@ -118,7 +118,7 @@
"label_edit_marker_missing_photos": "Märgistusfotosid ei olnud vþimalik ßles laadida. Palun proovi need uuesti lisada.",
"label_confirm_marker_missing_photos": "Märgistusfotosid ei olnud vþimalik ßles laadida. Palun proovi need uuesti lisada.",
"label_button_delete": "Kustuta",
- "label_delete_photo_title": "Kustuta pilt",
+ "label_delete_photo_title": "Kustuta foto",
"label_delete_photo_subtitle": "Kas oled kindel, et soovid pildi kustutada? Seda tegevust ei saa tagasi vĂľtta.",
"label_text_about_1": "See rakendus on sihtasutuse \"Teeme Ăra!\" Maailmakoristus algatus",
"label_text_about_2": "Kþik ßlemaailmsete kasutajate poolt kogutud andmed on nähtavad globaalsel prßgikaardil, et Maailmakoristuspäeval, 15. septembril 2018, saaks talguid korraldada",
diff --git a/mobile-app/src/trans/ff.json b/mobile-app/src/trans/ff.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ff.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/fil.json b/mobile-app/src/trans/fil.json
index bfef181476..ae23cdd99d 100644
--- a/mobile-app/src/trans/fil.json
+++ b/mobile-app/src/trans/fil.json
@@ -115,8 +115,8 @@
"label_loading_image_text": "Halos tapos na...",
"label_loading_image_subtext": "Mangyaring maghintay habang isina-save natin ang iyong mga aksyon.",
"label_create_marker_missing_photos": "Hindi nai-upload ang mga marker na larawan. Pakisubukang idagdag muli ang mga ito.",
- "label_edit_marker_missing_photos": "Hindi mai-upload ang mga marker na larawan. Pakisubukang idagdag muli ang mga ito.",
- "label_confirm_marker_missing_photos": "Hindi mai-upload ang mga marker na larawan. Pakisubukang idagdag muli ang mga ito.",
+ "label_edit_marker_missing_photos": "Hindi nai-upload ang mga marker na larawan. Pakisubukang idagdag muli ang mga ito.",
+ "label_confirm_marker_missing_photos": "Hindi nai-upload ang mga marker na larawan. Pakisubukang idagdag muli ang mga ito.",
"label_button_delete": "Burahin",
"label_delete_photo_title": "Burahin ang larawan",
"label_delete_photo_subtitle": "Tiyak ka bang gusto mong burahin ang larawan? Hindi mo na maibabalik ito.",
diff --git a/mobile-app/src/trans/fo.json b/mobile-app/src/trans/fo.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/fo.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/fr.json b/mobile-app/src/trans/fr.json
index d33026ac10..33da6e2c63 100644
--- a/mobile-app/src/trans/fr.json
+++ b/mobile-app/src/trans/fr.json
@@ -87,7 +87,7 @@
"label_error_saveTP_trash_type": "Il est recommandĂŠ d'indiquer le type de dĂŠchets avant de sauvegarder.",
"label_error_change_loc_subtitle": "Trop loin",
"label_error_change_loc_text": "Veuillez ne cartographier que les spots situÊs à moins de 100 mètres de votre position.",
- "label_error_generic_error_subtitle": "IntitulĂŠ trop long",
+ "label_error_generic_error_subtitle": "Trop loin",
"label_error_generic_error_text": "Une erreur est survenue sur le serveur.",
"label_error_network_subtitle": "Pas de connexion rĂŠseau",
"label_error_network_text": "Les donnĂŠes mobiles sont dĂŠsactivĂŠes. Activez les donnĂŠes mobiles ou connectez votre tĂŠlĂŠphone Ă un rĂŠseau Wi-Fi pour utiliser l'application.",
@@ -108,10 +108,10 @@
"label_error_modal_default_subtitle": "La baleine ĂŠchouĂŠe Ă dĂŠtectĂŠ une erreur de serveur ! ",
"label_location_permission_warning_ios": "Vous devez changer les autorisations de gÊolocalisation. Pour ce faire, allez dans Paramètres > ConfidentialitÊ > Services de localisation.",
"label_location_permission_warning_android": "Vous devez changer les autorisations de gÊolocalisation. Pour ce faire, allez dans Paramètres > Applications.",
- "label_location_off_warning": "Les Services de GÊolocalisation sont dÊsactivÊs. Veuillez activer votre GPS dans vos Paramètres pour pouvoir utiliser l'application.",
+ "label_location_off_warning": "Les Services de GÊolocalisation sont dÊsactivÊs. Activez le GPS dans les Paramètres pour pouvoir utiliser l'application.",
"label_location_modal_title": "Activer la gĂŠolocalisation",
- "label_network_off_warning_title": "Aucune connexion rĂŠseau",
- "label_network_off_warning": "Les donnĂŠes mobiles sont dĂŠsactivĂŠes. Activez les donnĂŠes mobiles ou connectez votre tĂŠlĂŠphone Ă un rĂŠseau Wi-Fi pour pouvoir utiliser l'application.",
+ "label_network_off_warning_title": "Pas de connexion rĂŠseau",
+ "label_network_off_warning": "Les donnĂŠes mobiles sont dĂŠsactivĂŠes. Activez les donnĂŠes mobiles ou connectez votre tĂŠlĂŠphone Ă un rĂŠseau Wi-Fi pour utiliser l'application.",
"label_loading_image_text": "On y est presque...",
"label_loading_image_subtext": "Veuillez patienter pendant que nous enregistrons vos actions.",
"label_create_marker_missing_photos": "Les photos de repĂŠrage n'ont pas pu ĂŞtre tĂŠlĂŠchargĂŠes. Veuillez essayer de les envoyer Ă nouveau.",
diff --git a/mobile-app/src/trans/fra.json b/mobile-app/src/trans/fra.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/fra.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/frp.json b/mobile-app/src/trans/frp.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/frp.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/fur.json b/mobile-app/src/trans/fur.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/fur.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/fy.json b/mobile-app/src/trans/fy.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/fy.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/gaa.json b/mobile-app/src/trans/gaa.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/gaa.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/gn.json b/mobile-app/src/trans/gn.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/gn.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/gu.json b/mobile-app/src/trans/gu.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/gu.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/gv.json b/mobile-app/src/trans/gv.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/gv.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/hi.json b/mobile-app/src/trans/hi.json
index 352b7c9134..1599fb97f2 100644
--- a/mobile-app/src/trans/hi.json
+++ b/mobile-app/src/trans/hi.json
@@ -42,7 +42,7 @@
"label_text_activity_empty_text": "ŕ¤ŕ¤Şŕ¤¨ŕĽ ठŕ¤ŕĽ तठŕ¤ŕĽŕ¤ ŕ¤ŕĽ ŕ¤ŕ¤ŕ¤°ŕĽ ŕ¤ŕ¤ž सŕĽŕ¤Ľŕ¤˛ नचŕĽŕ¤ ŕ¤ŕĽŕ¤Ąŕ¤źŕ¤ž चŕĽ| ŕ¤ŕ¤Ź ŕ¤ŕ¤Ş ŕ¤ŕ¤°ŕĽŕ¤ŕ¤ŕĽ, त༠ा༠यचञठसŕĽŕ¤ŕĽŕ¤Źŕ¤ŚŕĽŕ¤§ चŕĽŕ¤ŕ¤ŕĽ|",
"label_text_activity_empty_hint": "ŕ¤ŕ¤ ŕ¤ŕ¤ŕ¤°ŕĽ ŕ¤ŕ¤ž सŕĽŕ¤Ľŕ¤˛ ŕ¤ŕĽŕ¤Ąŕ¤źŕĽŕ¤!",
"label_header_notific": "सŕĽŕ¤ŕ¤¨ŕ¤žŕ¤ŕ¤",
- "label_text_notific_empty_subtitle": "यचञठपर ऌŕĽŕ¤ŕ¤¨ŕĽ ŕ¤ŕĽ लिठŕ¤ŕĽŕ¤ नचŕĽŕ¤!",
+ "label_text_notific_empty_subtitle": "ऌŕĽŕ¤ŕ¤¨ŕĽ ŕ¤ŕĽ लिठŕ¤ŕĽŕ¤ नचŕĽŕ¤ च༠यचञŕ¤!",
"label_text_notific_empty_text": "चऎन༠ठŕ¤ŕĽ तठŕ¤ŕĽŕ¤ सŕĽŕ¤ŕ¤¨ŕ¤žŕ¤ŕ¤ नचŕĽŕ¤ ऌŕĽŕ¤ŕĽ चŕĽŕ¤, लŕĽŕ¤ŕ¤żŕ¤¨ चऎ ŕ¤ŕ¤Şŕ¤ŕĽ एतञŕ¤ŕ¤ŕ¤ŕĽ ŕ¤ŕ¤Ź ŕ¤ŕ¤¸ŕ¤ž चŕĽŕ¤¤ŕ¤ž चŕĽ!",
"label_header_profile": "ऎŕĽŕ¤°ŕĽ पञरŕĽŕ¤śŕĽŕ¤ľŕ¤ŕ¤żŕ¤¤ŕĽŕ¤°",
"label_header_settings": "ŕ¤ŕ¤žŕ¤¤ŕĽ ŕ¤ŕĽ सŕĽŕ¤ŕ¤żŕ¤ŕ¤ŕĽŕ¤¸",
diff --git a/mobile-app/src/trans/hil.json b/mobile-app/src/trans/hil.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/hil.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ho.json b/mobile-app/src/trans/ho.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ho.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/hu.json b/mobile-app/src/trans/hu.json
index 78344189bc..75893d0738 100644
--- a/mobile-app/src/trans/hu.json
+++ b/mobile-app/src/trans/hu.json
@@ -1,130 +1,130 @@
{
- "label_text_app_subtitle": "Let's clean up the world together!",
- "label_button_facebook": "Continue with Facebook",
- "label_button_google": "Continue with Google",
- "label_button_try_app": "Try out the app without account",
- "label_button_acknowledge": "Ok, got it!",
- "label_button_cancel": "Cancel",
- "label_button_continue": "Continue",
- "label_trash_status_threat": "threat",
- "label_trash_status_regular": "regular",
- "label_trash_status_cleaned": "cleaned",
- "label_trash_status_outdated": "outdated",
- "label_trash_status_user": "user",
+ "label_text_app_subtitle": "TisztĂtsuk meg egyĂźtt a vilĂĄgot!",
+ "label_button_facebook": "TovĂĄbbra is a Facebook",
+ "label_button_google": "TovĂĄbbra is a Google",
+ "label_button_try_app": "PrĂłbĂĄlja ki az alkalmazĂĄst, anĂŠlkĂźl, hogy figyelembe",
+ "label_button_acknowledge": "Ok, megvan!",
+ "label_button_cancel": "MĂŠgse",
+ "label_button_continue": "TovĂĄbb",
+ "label_trash_status_threat": "fenyegetĂŠs",
+ "label_trash_status_regular": "rendszeres",
+ "label_trash_status_cleaned": "tisztĂtani",
+ "label_trash_status_outdated": "elavult",
+ "label_trash_status_user": "felhasznĂĄlĂł",
"label_trash_status_change_location": "changeLocation",
- "label_trash_status_state_threat": "This point is a threat!",
- "label_trash_status_state_regular": "This is a regular trashpoint.",
- "label_trash_status_state_cleaned": "This point is cleaned!",
- "label_trash_status_state_outdated": "This point is outdated!",
- "label_TP_created_date": "Created",
+ "label_trash_status_state_threat": "Ez a pont egy fenyegetĂŠs!",
+ "label_trash_status_state_regular": "Ez egy rendszeres trashpoint.",
+ "label_trash_status_state_cleaned": "Ez a pont tisztĂtani!",
+ "label_trash_status_state_outdated": "Ezen a ponton elavult!",
+ "label_TP_created_date": "LĂŠtrehozott",
"label_TP_updated_date": "Updated",
- "label_TP_by": " by ",
- "label_trash_amount_handful": "handful",
- "label_trash_amount_bagful": "bagful",
+ "label_TP_by": " ĂĄltal ",
+ "label_trash_amount_handful": "maroknyi",
+ "label_trash_amount_bagful": "zsĂĄkkal",
"label_trash_amount_cartloadl": "cartload",
- "label_trash_amount_truckload": "truckload",
- "label_trash_type_plastic": "Plastic",
- "label_trash_type_metal": "Metal",
- "label_trash_type_glass": "Glass",
- "label_trash_type_electro": "Electronics",
- "label_trash_type_paper": "Paper/Wood",
- "label_trash_type_tyres": "Tyres",
- "label_trash_type_dom_waste": "Domestic waste",
- "label_trash_type_furniture": "Furniture",
- "label_trash_type_org_waste": "Organic waste",
- "label_header_tc": "Terms and Conditions",
- "label_button_tc_agree": "I agree with the Terms & Conditions",
- "label_header_map": "Map",
- "label_text_popover_subtitle": "Join other people who are mapping trash!",
- "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
- "label_header_activity": "My activity",
- "label_text_activity_empty_subtitle": "Nothing to see here!",
- "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
- "label_text_activity_empty_hint": "Add a trashpoint!",
- "label_header_notific": "Notifications",
- "label_text_notific_empty_subtitle": "Nothing to see here!",
- "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
- "label_header_profile": "My profile",
- "label_header_settings": "Account settings",
- "label_button_country_empty": "Country",
- "label_text_country": "Country",
- "label_header_select_country": "Select a country",
- "label_text_select_country_hint": "Search",
- "label_button_tc": "Terms and Conditions",
- "label_button_logout": "Log out",
- "label_text_congrats_image": "Trash captured",
- "label_text_congrats_subtitle": "Great job!",
- "label_text_congrats_text": "Now save the point by verifying the data.",
- "label_header_createTP": "Create a trashpoint",
- "label_button_createTP_editloc": "Edit location",
- "label_header_edit_loc": "Edit location",
- "label_button_edit_loc_set": "Set trashpoint location",
- "label_text_createTP_status_subtitle": "Point status",
- "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
- "label_text_createTP_add_photos": "Add trash photos",
- "label_text_createTP_select_amount": "Select trash amount",
- "label_text_createTP_select_type": "Select trash type",
- "label_text_createTP_add_hashtags": "Additional added tags",
- "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
- "label_button_createTP_confirm_create": "Create trashpoint",
- "label_alert_createTP_success": "Trashpoint successfully created",
- "label_text_detailsTP_photos": "Trash photos",
- "label_text_detailsTP_amount": "Trash amount",
- "label_text_detailsTP_type": "Trash type",
- "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
- "label_text_editTP_letsconfirm": "Yes, I confirm",
- "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
- "label_text_editTP_letsedit": "No, let's edit",
- "label_header_editTP": "Edit a trashpoint",
- "label_button_editTP_save": "Save trashpoint changes",
- "label_alert_editTP_edit": "Trashpoint successfully updated",
- "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_trash_amount_truckload": "teherautĂłnyi",
+ "label_trash_type_plastic": "MĹąanyag",
+ "label_trash_type_metal": "FĂŠm",
+ "label_trash_type_glass": "Ăveg",
+ "label_trash_type_electro": "Elektronika",
+ "label_trash_type_paper": "PapĂr/Fa",
+ "label_trash_type_tyres": "Gumiabroncsok",
+ "label_trash_type_dom_waste": "HĂĄztartĂĄsi hulladĂŠk",
+ "label_trash_type_furniture": "BĂştor",
+ "label_trash_type_org_waste": "Szerves hulladĂŠk",
+ "label_header_tc": "ĂltalĂĄnos szerzĹdĂŠsi FeltĂŠtelek",
+ "label_button_tc_agree": "EgyetĂŠrtek a felhasznĂĄlĂĄsi FeltĂŠtelek",
+ "label_header_map": "TĂŠrkĂŠp",
+ "label_text_popover_subtitle": "Csatlakozz a tĂśbbi ember, aki feltĂŠrkĂŠpezĂŠse szemetet!",
+ "label_text_popover_text": "Kezdeni trashpoints, hogy a kĂśzĂśssĂŠgi tisztĂĄbb, egĂŠszsĂŠgesebb.",
+ "label_header_activity": "A tevĂŠkenysĂŠg",
+ "label_text_activity_empty_subtitle": "Nincs itt semmi lĂĄtnivalĂł!",
+ "label_text_activity_empty_text": "MĂŠg nem adott hozzĂĄ semmilyen trashpoints mĂŠg. Ha lesznek itt felsorolt.",
+ "label_text_activity_empty_hint": "Adjunk hozzĂĄ egy trashpoint!",
+ "label_header_notific": "ĂrtesĂtĂŠsek",
+ "label_text_notific_empty_subtitle": "Nincs itt semmi lĂĄtnivalĂł!",
+ "label_text_notific_empty_text": "MĂŠg nem lĂĄttam olyan ĂŠrtesĂtĂŠsek jĂśtt mĂŠg be, de majd szĂłlok, ha akarjuk!",
+ "label_header_profile": "A profil",
+ "label_header_settings": "FiĂłk beĂĄllĂtĂĄsok",
+ "label_button_country_empty": "OrszĂĄg",
+ "label_text_country": "OrszĂĄg",
+ "label_header_select_country": "VĂĄlassza ki az orszĂĄgot",
+ "label_text_select_country_hint": "KeresĂŠs",
+ "label_button_tc": "ĂltalĂĄnos szerzĹdĂŠsi FeltĂŠtelek",
+ "label_button_logout": "KijelentkezĂŠs",
+ "label_text_congrats_image": "Szemetet rĂśgzĂtett",
+ "label_text_congrats_subtitle": "SzĂŠp munka!",
+ "label_text_congrats_text": "Most menteni a lĂŠnyeg, hogy ellenĹrzi az adatokat.",
+ "label_header_createTP": "Hozzon lĂŠtre egy trashpoint",
+ "label_button_createTP_editloc": "A hely szerkesztĂŠse",
+ "label_header_edit_loc": "A hely szerkesztĂŠse",
+ "label_button_edit_loc_set": "ĂllĂtsa trashpoint helye",
+ "label_text_createTP_status_subtitle": "Pont ĂĄllapota",
+ "label_text_createTP_status_text": "Ha egy gyors cselekvĂŠsre van szĂźksĂŠg (toxikus nehĂŠzfĂŠmek), kĂŠrjĂźk, ĂĄllĂtsa be, mint a fenyegetĂŠs.",
+ "label_text_createTP_add_photos": "Add szemetet fotĂłk",
+ "label_text_createTP_select_amount": "VĂĄlassza ki a szemetet Ăśsszeg",
+ "label_text_createTP_select_type": "VĂĄlassza ki a szemetet tĂpus",
+ "label_text_createTP_add_hashtags": "TovĂĄbbi hozzĂĄadott kategĂłria",
+ "label_text_createTP_add_hashtags_hint": "ie. #mĂĄrkanĂŠv, #doboz",
+ "label_button_createTP_confirm_create": "Hozzon lĂŠtre trashpoint",
+ "label_alert_createTP_success": "Sikeresen lĂŠtrehozta Trashpoint",
+ "label_text_detailsTP_photos": "Szemetet fotĂłk",
+ "label_text_detailsTP_amount": "Szemetet Ăśsszeg",
+ "label_text_detailsTP_type": "Szemetet tĂpus",
+ "label_text_editTP_ask": "Ez trashpoint informĂĄciĂłk tovĂĄbbra is korrekt, naprakĂŠsz?",
+ "label_text_editTP_letsconfirm": "Igen, megerĹsĂtem,",
+ "label_alert_editTP_confirm": "Trashpoint sikeresen megerĹsĂtette,",
+ "label_text_editTP_letsedit": "Nem, edit",
+ "label_header_editTP": "Edit egy trashpoint",
+ "label_button_editTP_save": "A mentĂŠs trashpoint vĂĄltozĂĄsok",
+ "label_alert_editTP_edit": "Trashpoint sikeresen frissĂtve",
+ "label_alert_editTP_delete": "Trashpoint sikeresen tĂśrĂślve",
"label_error_editTP_out_of_rng_subtitle": "Out of range",
- "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
- "label_error_saveTP_subtitle": "Save trashpoint",
- "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
- "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
- "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
- "label_error_change_loc_subtitle": "Out of bounds",
- "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
- "label_error_generic_error_subtitle": "Out of bounds",
- "label_error_generic_error_text": "There was an error on the server.",
- "label_error_network_subtitle": "No network connection",
- "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_error_location_subtitle": "Enable location",
- "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
- "label_trash_details_header": "Trashpoint details",
- "label_privacy_policy_header": "Privacy Policy",
- "label_about_header": "About",
- "label_edit_trashpoint_button": "Edit trashpoint",
- "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
- "label_retry_button": "Retry",
- "label_country_picker_placeholder": "Choose your country",
- "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
- "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
- "label_camera_error_title": "Camera Access Denied",
+ "label_error_editTP_out_of_rng_text": "Egy ponton lehet csak edx'ited ha 100 mĂŠteren belĂźl.",
+ "label_error_saveTP_subtitle": "A mentĂŠs trashpoint",
+ "label_error_saveTP_pic_and_type": "Ez tĂśbb, hasznos nekĂźnk, ha legalĂĄbb egy kĂŠpet a trashpoint, majd ĂĄllĂtsa be a szemĂŠt tĂpus.",
+ "label_error_saveTP_picture": "Ez tĂśbb, hasznos nekĂźnk, ha legalĂĄbb egy kĂŠpet a trashpoint mentĂŠse elĹtt.",
+ "label_error_saveTP_trash_type": "Ez tĂśbb, hasznos szĂĄmunkra, ha a trashpoint tĂpus mentĂŠse elĹtt.",
+ "label_error_change_loc_subtitle": "Tilos",
+ "label_error_change_loc_text": "KĂŠrjĂźk, tegyen egy pont 100 mĂŠteren belĂźl van a helye.",
+ "label_error_generic_error_subtitle": "Tilos",
+ "label_error_generic_error_text": "Hiba tĂśrtĂŠnt a kiszolgĂĄlĂłn.",
+ "label_error_network_subtitle": "Nincs hĂĄlĂłzati kapcsolat",
+ "label_error_network_text": "Mobil adat le van tiltva. EngedĂŠlyezze a mobil adat-vagy csatlakoztassa telefonjĂĄt Wi-Fi-t, hogy hasznĂĄlja az alkalmazĂĄst.",
+ "label_error_location_subtitle": "EngedĂŠlyezze a helymeghatĂĄrozĂĄst",
+ "label_error_location_text": "ElhelyezkedĂŠs a SzolgĂĄltatĂĄsok ki vannak kapcsolva. KĂŠrjĂźk, engedĂŠlyezze a GPS a BeĂĄllĂtĂĄsokat hasznĂĄlja az alkalmazĂĄs.",
+ "label_error_loc_permission_text": "A helymeghatĂĄrozĂĄs nem engedĂŠlyezett. KĂŠrem, engedje meg nekik, annak ĂŠrdekĂŠben, hogy hasznĂĄlja az alkalmazĂĄst.",
+ "label_trash_details_header": "Trashpoint rĂŠszletek",
+ "label_privacy_policy_header": "AdatvĂŠdelmi Politika",
+ "label_about_header": "KĂśrĂźlbelĂźl",
+ "label_edit_trashpoint_button": "SzerkesztĂŠs trashpoint",
+ "label_100m_limit_modal": "A pont csak akkor szerkeszthetĹ, ha 100 mĂŠteren belĂźl.",
+ "label_retry_button": "PrĂłbĂĄlja Ăşjra",
+ "label_country_picker_placeholder": "VĂĄlassza ki az orszĂĄgot",
+ "label_camera_permission_warning_ios": "MĂłdosĂtania kell a fĂŠnykĂŠpezĹgĂŠp hozzĂĄfĂŠrĂŠsi engedĂŠlyekkel. Ehhez lĂŠpjen a BeĂĄllĂtĂĄsok > AdatvĂŠdelem > Kamera",
+ "label_camera_permission_warning_android": "MĂłdosĂtania kell a fĂŠnykĂŠpezĹgĂŠp hozzĂĄfĂŠrĂŠsi engedĂŠlyekkel. Ehhez lĂŠpjen a BeĂĄllĂtĂĄsok > AlkalmazĂĄsok",
+ "label_camera_error_title": "Kamera HozzĂĄfĂŠrĂŠs Megtagadva",
"label_error_modal_default_title": "Oh noes!",
- "label_error_modal_default_subtitle": "The fail whale detected a server error!",
- "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
- "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
- "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_location_modal_title": "Enable location",
- "label_network_off_warning_title": "No network connection",
- "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_loading_image_text": "Almost there...",
- "label_loading_image_subtext": "Please wait while we save your actions.",
- "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_button_delete": "Delete",
- "label_delete_photo_title": "Delete photo",
- "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
- "label_text_about_1": "This app is an initiative by Let's Do It World",
- "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
- "label_text_about_3": "This app is a joint cooperation with",
- "label_text_about_4": "Estonian product, sponsored by the country and government",
- "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
- "label_button_editTP_delete": "Delete trashpoint",
- "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+ "label_error_modal_default_subtitle": "A sikertelen bĂĄlna ĂŠszlelt szerver hiba!",
+ "label_location_permission_warning_ios": "Meg kell vĂĄltoztatni helyen engedĂŠlyeket. Ehhez lĂŠpjen a BeĂĄllĂtĂĄsok > AdatvĂŠdelem > helymeghatĂĄrozĂĄs.",
+ "label_location_permission_warning_android": "Meg kell vĂĄltoztatni helyen engedĂŠlyeket. Ehhez lĂŠpjen a BeĂĄllĂtĂĄsok > AdatvĂŠdelem > helymeghatĂĄrozĂĄs.",
+ "label_location_off_warning": "ElhelyezkedĂŠs a SzolgĂĄltatĂĄsok ki vannak kapcsolva. KĂŠrjĂźk, engedĂŠlyezze a GPS a BeĂĄllĂtĂĄsokat hasznĂĄlja az alkalmazĂĄs.",
+ "label_location_modal_title": "EngedĂŠlyezze a helymeghatĂĄrozĂĄst",
+ "label_network_off_warning_title": "Nincs hĂĄlĂłzati kapcsolat",
+ "label_network_off_warning": "Mobil adat le van tiltva. EngedĂŠlyezze a mobil adat-vagy csatlakoztassa telefonjĂĄt Wi-Fi-t, hogy hasznĂĄlja az alkalmazĂĄst.",
+ "label_loading_image_text": "Majdnem ott van...",
+ "label_loading_image_subtext": "KĂŠrjĂźk, vĂĄrjon, mĂg mentsĂźk meg a tevĂŠkenysĂŠgĂŠt.",
+ "label_create_marker_missing_photos": "A jelĂślĹ kĂŠpeket nem lehet feltĂślteni. KĂŠrjĂźk, prĂłbĂĄlja ki Ĺket Ăşjra.",
+ "label_edit_marker_missing_photos": "A jelĂślĹ kĂŠpeket nem lehet feltĂślteni. KĂŠrjĂźk, prĂłbĂĄlja ki Ĺket Ăşjra.",
+ "label_confirm_marker_missing_photos": "A jelĂślĹ kĂŠpeket nem lehet feltĂślteni. KĂŠrjĂźk, prĂłbĂĄlja ki Ĺket Ăşjra.",
+ "label_button_delete": "TĂśrlĂŠs",
+ "label_delete_photo_title": "FotĂł tĂśrlĂŠse",
+ "label_delete_photo_subtitle": "Biztos, hogy tĂśrĂślni akarja a kĂŠpet? Nem vonhatĂł vissza.",
+ "label_text_about_1": "Ez az alkalmazĂĄs egy olyan kezdemĂŠnyezĂŠs ĂĄltal csinĂĄljuk VilĂĄg",
+ "label_text_about_2": "A gyĹąjtĂśtt adatokat a felhasznĂĄlĂłk ĂĄltal vilĂĄgszerte lesz elĂŠ kĂŠpzeltem a globĂĄlis szemetet tĂŠrkĂŠp kezdemĂŠnyezĹ vilĂĄgszerte tiszta-esemĂŠnyek a VilĂĄg TakarĂtĂĄs Nap, szeptember 15-2018",
+ "label_text_about_3": "Ez az alkalmazĂĄs egy kĂśzĂśs egyĂźttmĹąkĂśdĂŠs",
+ "label_text_about_4": "Ăszt termĂŠk ĂĄltal tĂĄmogatott, az orszĂĄg kormĂĄny",
+ "label_text_about_5": "TĂĄmogatĂł: ĂŠszt KĂśrnyezetvĂŠdelmi MinisztĂŠrium, A kĂźlĂźgyminisztĂŠrium, az Ăszt KĂśztĂĄrsasĂĄg, az ĂŠszt KĂśztĂĄrsasĂĄg, 100 program",
+ "label_button_editTP_delete": "TĂśrlĂŠs trashpoint",
+ "label_locked_account_warning": "A fiĂłk le van zĂĄrva. RĂŠszletekĂŠrt lĂŠpjen kapcsolatba egy adminisztrĂĄtorral."
}
\ No newline at end of file
diff --git a/mobile-app/src/trans/hz.json b/mobile-app/src/trans/hz.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/hz.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ii.json b/mobile-app/src/trans/ii.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ii.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ilo.json b/mobile-app/src/trans/ilo.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ilo.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/it.json b/mobile-app/src/trans/it.json
index b00bb0de89..3eafbeef8e 100644
--- a/mobile-app/src/trans/it.json
+++ b/mobile-app/src/trans/it.json
@@ -13,7 +13,7 @@
"label_trash_status_user": "utente",
"label_trash_status_change_location": "cambia posizione",
"label_trash_status_state_threat": "Questo punto è una minaccia!",
- "label_trash_status_state_regular": "Questo è un regolare punto di rifiuti.",
+ "label_trash_status_state_regular": "Questo è un trashpoint regolare.\n",
"label_trash_status_state_cleaned": "Questo punto è pulito!",
"label_trash_status_state_outdated": "Questo punto è obsoleto!",
"label_TP_created_date": "Creato",
@@ -21,7 +21,7 @@
"label_TP_by": " da ",
"label_trash_amount_handful": "manciata",
"label_trash_amount_bagful": "sacco pieno",
- "label_trash_amount_cartloadl": "carrettata",
+ "label_trash_amount_cartloadl": "carrello",
"label_trash_amount_truckload": "camion",
"label_trash_type_plastic": "Plastica",
"label_trash_type_metal": "Metallo",
@@ -36,11 +36,11 @@
"label_button_tc_agree": "Accetto i Termini e le Condizioni",
"label_header_map": "Mappa",
"label_text_popover_subtitle": "Unisciti ad altre persone che stanno mappando i rifiuti!",
- "label_text_popover_text": "Comincia a creare i punti di rifiuti e rende la tua comunitĂ piĂš pulita e sana.",
+ "label_text_popover_text": "Comincia a creare i trashpoint e rendi la tua comunitĂ piĂš pulita e sana.",
"label_header_activity": "Le mie attivitĂ ",
"label_text_activity_empty_subtitle": "Niente da vedere qui!",
- "label_text_activity_empty_text": "Non hai ancora aggiunto alcun punto di rifiuti. Quando lo farai, saranno elencati qui.",
- "label_text_activity_empty_hint": "Aggiungi un punto di rifiuti!",
+ "label_text_activity_empty_text": "Non hai ancora aggiunto alcun trashpoint. Quando lo farai, saranno elencati qui.",
+ "label_text_activity_empty_hint": "Aggiungi un trashpoint!",
"label_header_notific": "Notifiche",
"label_text_notific_empty_subtitle": "Niente da vedere qui!",
"label_text_notific_empty_text": "Non abbiamo ancora visto nessuna notifica, ma vi faremo sapere quando lo facciamo!",
@@ -52,79 +52,79 @@
"label_text_select_country_hint": "Cerca",
"label_button_tc": "Termini e Condizioni",
"label_button_logout": "Termina la sessione",
- "label_text_congrats_image": "Il rifiuto ĂŠ catturato",
+ "label_text_congrats_image": "Rifiuto catturato",
"label_text_congrats_subtitle": "Ottimo lavoro!",
"label_text_congrats_text": "Ora salva il punto verificando i dati.",
- "label_header_createTP": "Crea un punto di rifiuti",
+ "label_header_createTP": "Crea un trashpoint",
"label_button_createTP_editloc": "Modifica la posizione",
"label_header_edit_loc": "Modifica la posizione",
- "label_button_edit_loc_set": "Imposta la posizione del punto di rifiuti",
+ "label_button_edit_loc_set": "Imposta la posizione del trashpoint",
"label_text_createTP_status_subtitle": "Stato del punto",
- "label_text_createTP_status_text": "Se è necessario un'azione rapida (tossici, metalli pesanti), si prega di impostare come un pericolo.",
- "label_text_createTP_add_photos": "Aggiungi le foto di rifiuti",
+ "label_text_createTP_status_text": "Se è necessario un'azione rapida (tossici, metalli pesanti), si prega di impostare come una minaccia.",
+ "label_text_createTP_add_photos": "Aggiungi le foto dei rifiuti",
"label_text_createTP_select_amount": "Selezionare la quantitĂ di rifiuti",
"label_text_createTP_select_type": "Selezionare il genere di rifiuti",
"label_text_createTP_add_hashtags": "Ulteriore tag aggiunti",
"label_text_createTP_add_hashtags_hint": "cioè.#marchio#lattine",
- "label_button_createTP_confirm_create": "Crea un punto di rifiuti",
+ "label_button_createTP_confirm_create": "Crea un trashpoint",
"label_alert_createTP_success": "Il punto di rifiuti e' stato creato con successo",
- "label_text_detailsTP_photos": "Foto di rifiuti",
- "label_text_detailsTP_amount": "QuantitĂ di rifiuti",
- "label_text_detailsTP_type": "Genere di rifiuti",
- "label_text_editTP_ask": "L'informazione di questo punto di rifiuti ĂŠ aggiornato e corretto?",
- "label_text_editTP_letsconfirm": "SĂŹ, lo confermo",
- "label_alert_editTP_confirm": "Il punto di rifiuti e' stato creato con successo",
+ "label_text_detailsTP_photos": "Foto dei rifiuti",
+ "label_text_detailsTP_amount": "QuantitĂ dei rifiuti",
+ "label_text_detailsTP_type": "Genere dei rifiuti",
+ "label_text_editTP_ask": "L'informazione di questo trashpoint ĂŠ aggiornato e corretto?",
+ "label_text_editTP_letsconfirm": "SĂŹ, confermo",
+ "label_alert_editTP_confirm": "Il trashpoint e' stato creato con successo",
"label_text_editTP_letsedit": "No, modifichiamolo",
- "label_header_editTP": "Modificare il punto di rifiuto",
- "label_button_editTP_save": "Salve i cambiamenti del punto di rifiuti",
- "label_alert_editTP_edit": "Il punto di rifiuti e' stato creato con successo",
- "label_alert_editTP_delete": "Il punto di rifiuti e' stato cancellato con successo",
+ "label_header_editTP": "Modificare il trashpoint",
+ "label_button_editTP_save": "Salva i cambiamenti del trashpoint",
+ "label_alert_editTP_edit": "Il trashpoint è stato creato con successo",
+ "label_alert_editTP_delete": "Il trashpoint è stato cancellato con successo",
"label_error_editTP_out_of_rng_subtitle": "Fuori portata",
"label_error_editTP_out_of_rng_text": "Un punto può essere modificato solo se sei nel raggio di 100 metri.",
- "label_error_saveTP_subtitle": "Salva il punto di rifiuto",
- "label_error_saveTP_pic_and_type": "Ă piĂš utile per noi se fai almeno una foto al punto di rifiuto e imposti la tipologia del rifiuto.",
- "label_error_saveTP_picture": "Ă piĂš utile per noi se fai almeno una foto al punto di rifiuto prima di salvare.",
- "label_error_saveTP_trash_type": "Ă piĂš utile per noi se imposti la tipologia del punto di rifiuti prima di salvare.",
- "label_error_change_loc_subtitle": "Fuori dai limiti",
+ "label_error_saveTP_subtitle": "Salva il trashpoint",
+ "label_error_saveTP_pic_and_type": "Ă piĂš utile per noi se fai almeno una foto al trashpoint e imposti la tipologia del rifiuto.",
+ "label_error_saveTP_picture": "Ă piĂš utile per noi se fai almeno una foto al trashpoint prima di salvare.",
+ "label_error_saveTP_trash_type": "Ă piĂš utile per noi se imposti la tipologia del trashpoint prima di salvare.",
+ "label_error_change_loc_subtitle": "Fuori campo",
"label_error_change_loc_text": "Si prega di piazzare un punto in un raggio di 100 metri della posizione attuale.",
- "label_error_generic_error_subtitle": "Fuori dai limiti",
+ "label_error_generic_error_subtitle": "Fuori campo",
"label_error_generic_error_text": "C'è stato un errore sul server.",
"label_error_network_subtitle": "Nessuna connessione di rete",
- "label_error_network_text": "La data mobile è disabilitata. Attiva la data mobile o connetti il tuo cellulare al Wi-Fi per usare l'applicazione.",
+ "label_error_network_text": "I dati mobili sono disattivati. Abilita i dati mobili o connetti il tuo cellulare alla rete Wi-Fi per usare l'applicazione.",
"label_error_location_subtitle": "Abilitare la geolocalizzazione",
- "label_error_location_text": "Servizi di localizzazione sono disattivati. Si prega di attivare il GPS nell'impostazioni per utilizzare l'applicazione.",
- "label_error_loc_permission_text": "Servizi di localizazzione non sono autorizzati. Si prega di lascarli in ordine per utilizzare l'applicazione.",
- "label_trash_details_header": "Dettagli del punto di rifiuto",
+ "label_error_location_text": "I servizi di localizzazione sono disattivati. Attiva il GPS nelle Impostazioni per usare l'applicazione.",
+ "label_error_loc_permission_text": "Servizi di localizzazione non concessi. Si prega di abilitarli per utilizzare l'applicazione.",
+ "label_trash_details_header": "Dettagli del trashpoint",
"label_privacy_policy_header": "Informativa sulla Privacy",
- "label_about_header": "Riguarda o riferimento",
- "label_edit_trashpoint_button": "Modificare il punto di rifiuto",
+ "label_about_header": "Riferimenti",
+ "label_edit_trashpoint_button": "Modificare il trashpoint",
"label_100m_limit_modal": "Un punto può essere modificato solo se sei nel raggio di 100 metri da esso.",
"label_retry_button": "Riprova",
"label_country_picker_placeholder": "Scegli il tuo paese",
- "label_camera_permission_warning_ios": "E' necessario modificare i permessi dell'accesso alla fotocamera. Per fare questo, vai su Impostazioni>Privacy>Fotocamera",
+ "label_camera_permission_warning_ios": "E' necessario modificare i permessi dell'accesso alla fotocamera. Per fare questo, vai su Impostazioni > Privacy > Fotocamera",
"label_camera_permission_warning_android": "E' necessario modificare i permessi dell'accesso alla fotocamera. Per fare questo, vai su Impostazioni>Applicazioni",
- "label_camera_error_title": "Negato l'accesso alla fotocamera",
+ "label_camera_error_title": "Accesso negato alla fotocamera",
"label_error_modal_default_title": "Oh no!",
- "label_error_modal_default_subtitle": "La whale fail ha rilevato un errpre del server!",
- "label_location_permission_warning_ios": "Ă necessario modificare i permessi di localizazzione. Per fare questo, vai su Impostazioni > Privacy> Servizi di localizazzione.",
- "label_location_permission_warning_android": "Ă necessario modificare i permessi di localizazzione. Per fare questo, vai su Impostazioni > applicazioni.",
- "label_location_off_warning": "Servizi di localizzazione sono disattivati. Si prega di attivare il GPS nell'impostazioni per utilizzare l'applicazione.",
- "label_location_modal_title": "Abilitare la localizzazione",
+ "label_error_modal_default_subtitle": "La balena ha rilevato un errore del server!",
+ "label_location_permission_warning_ios": "Ă necessario modificare i permessi di localizzazione. Per fare questo, vai su Impostazioni > Privacy> Servizi di localizzazione.",
+ "label_location_permission_warning_android": "Ă necessario modificare i permessi di localizzazione. Per fare questo, vai su Impostazioni > applicazioni.",
+ "label_location_off_warning": "I servizi di localizzazione sono disattivati. Attiva il GPS nelle Impostazioni per usare l'applicazione.",
+ "label_location_modal_title": "Abilitare la geolocalizzazione",
"label_network_off_warning_title": "Nessuna connessione di rete",
- "label_network_off_warning": "La data mobile è disabilitata. Attiva la data mobile o connetti il tuo cellulare al Wi-Fi per usare l'applicazione.",
+ "label_network_off_warning": "I dati mobili sono disattivati. Abilita i dati mobili o connetti il tuo cellulare alla rete Wi-Fi per usare l'applicazione.",
"label_loading_image_text": "Ci siamo quasi...",
"label_loading_image_subtext": "Si prega di attendere mentre salviamo le tue azioni.",
- "label_create_marker_missing_photos": "Le marker photos potrebbe non essere caricate. Vi preghiamo di provare nuovamente ad aggiungerli.",
- "label_edit_marker_missing_photos": "Le marker photos potrebbe non essere caricate. Vi preghiamo di provare nuovamente ad aggiungerli.",
- "label_confirm_marker_missing_photos": "Le marker photos potrebbe non essere caricate. Si prega di riprovare ad aggiungerli.",
+ "label_create_marker_missing_photos": "Le foto segnaletiche potrebbero non essere state caricate. Vi preghiamo di aggiungerle di nuovo.",
+ "label_edit_marker_missing_photos": "Le foto segnaletiche potrebbero non essere state caricate. Vi preghiamo di aggiungerle di nuovo.",
+ "label_confirm_marker_missing_photos": "Le foto segnaletiche potrebbero non essere state caricate. Vi preghiamo di aggiungerle di nuovo.",
"label_button_delete": "Elimina",
"label_delete_photo_title": "Elimina la foto",
- "label_delete_photo_subtitle": "Sei sicuro di che voler cancellare la foto? Non è possibile annullare questo.",
+ "label_delete_photo_subtitle": "Sei sicuro di voler eliminare la foto? Non puoi annullare questo.",
"label_text_about_1": "Questa app è un iniziativa di Let's Do It World",
- "label_text_about_2": "Tutti i dati che sono raccolti dagli utenti in tutto il mondo verranno visualizzati nella mappatura globale di rifiuti per l'avvio l'evento mondiale clean-up in World Cleanup Day, 15 Settembre 2018",
+ "label_text_about_2": "I dati raccolti dagli utenti di tutto il mondo verranno visualizzati nella mappa globale dei rifiuti per avviare eventi di Clean-Up in tutto il mondo nel World Cleanup Day, il 15 settembre 2018",
"label_text_about_3": "Questa app è una collaborazione congiunta con",
- "label_text_about_4": "Prodotti estone, sponsorizzati dal paese e dal governo",
- "label_text_about_5": "Finanziatori: Ministero dell'ambiente Estone, Ministero degli affari esteri della Repubblica d'Estonia, Repubblica di Estonia 100 programmi",
- "label_button_editTP_delete": "Cancella il punto di rifiuti",
+ "label_text_about_4": "Prodotto Estone, sponsorizzato dal paese e dal governo",
+ "label_text_about_5": "Finanziatori: Ministero dell'ambiente Estone, Ministero degli Affari Esteri della Repubblica d'Estonia, Repubblica d'Estonia 100 programmi",
+ "label_button_editTP_delete": "Cancella il trashpoint",
"label_locked_account_warning": "Il tuo account è bloccato. Per ulteriori informazioni contattare un amministratore."
}
\ No newline at end of file
diff --git a/mobile-app/src/trans/iu.json b/mobile-app/src/trans/iu.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/iu.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/jbo.json b/mobile-app/src/trans/jbo.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/jbo.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/kab.json b/mobile-app/src/trans/kab.json
new file mode 100644
index 0000000000..a8adf2b859
--- /dev/null
+++ b/mobile-app/src/trans/kab.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Yaw meášáša a nesizdget amaá¸al!",
+ "label_button_facebook": "Kemmel ad Facebook",
+ "label_button_google": "Kemmel ad Google",
+ "label_button_try_app": "ĆreḠasnas mebla tiggezt",
+ "label_button_acknowledge": "Ih,dayen gziÉŁ!",
+ "label_button_cancel": "Sefsex",
+ "label_button_continue": "Kemmel",
+ "label_trash_status_threat": "Amihi",
+ "label_trash_status_regular": "tizeÉŁt",
+ "label_trash_status_cleaned": "yettwasizdeg",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "aseqdac",
+ "label_trash_status_change_location": "beddel adig",
+ "label_trash_status_state_threat": "Adig agi d-amihi !",
+ "label_trash_status_state_regular": "D-agudu tursaḠn tizeɣt",
+ "label_trash_status_state_cleaned": "Agudu yagi yettwasizdeg!",
+ "label_trash_status_state_outdated": "Agudu yagi ur yelli yara!",
+ "label_TP_created_date": "Yettwasnulfa",
+ "label_TP_updated_date": "Yettwalqem",
+ "label_TP_by": "s",
+ "label_trash_amount_handful": "Tummeáşt",
+ "label_trash_amount_bagful": "Ayen yellan deg tculiáš",
+ "label_trash_amount_cartloadl": "Ayen yellan deg caryuy",
+ "label_trash_amount_truckload": "Taccaášt n ukamyun",
+ "label_trash_type_plastic": "Plastik",
+ "label_trash_type_metal": "Ssini",
+ "label_trash_type_glass": "AsmaÉŁ",
+ "label_trash_type_electro": "Eliktášunik",
+ "label_trash_type_paper": "KaÉŁeá¸/AsÉŁaáš",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/kdh.json b/mobile-app/src/trans/kdh.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/kdh.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/kg.json b/mobile-app/src/trans/kg.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/kg.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/kj.json b/mobile-app/src/trans/kj.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/kj.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/kok.json b/mobile-app/src/trans/kok.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/kok.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ks.json b/mobile-app/src/trans/ks.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ks.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/kv.json b/mobile-app/src/trans/kv.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/kv.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/kw.json b/mobile-app/src/trans/kw.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/kw.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/li.json b/mobile-app/src/trans/li.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/li.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/lij.json b/mobile-app/src/trans/lij.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/lij.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ln.json b/mobile-app/src/trans/ln.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ln.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/lt.json b/mobile-app/src/trans/lt.json
index 78344189bc..7a182cece9 100644
--- a/mobile-app/src/trans/lt.json
+++ b/mobile-app/src/trans/lt.json
@@ -1,130 +1,130 @@
{
- "label_text_app_subtitle": "Let's clean up the world together!",
- "label_button_facebook": "Continue with Facebook",
- "label_button_google": "Continue with Google",
- "label_button_try_app": "Try out the app without account",
- "label_button_acknowledge": "Ok, got it!",
- "label_button_cancel": "Cancel",
- "label_button_continue": "Continue",
- "label_trash_status_threat": "threat",
- "label_trash_status_regular": "regular",
- "label_trash_status_cleaned": "cleaned",
- "label_trash_status_outdated": "outdated",
- "label_trash_status_user": "user",
- "label_trash_status_change_location": "changeLocation",
- "label_trash_status_state_threat": "This point is a threat!",
- "label_trash_status_state_regular": "This is a regular trashpoint.",
- "label_trash_status_state_cleaned": "This point is cleaned!",
- "label_trash_status_state_outdated": "This point is outdated!",
- "label_TP_created_date": "Created",
- "label_TP_updated_date": "Updated",
- "label_TP_by": " by ",
- "label_trash_amount_handful": "handful",
- "label_trash_amount_bagful": "bagful",
- "label_trash_amount_cartloadl": "cartload",
- "label_trash_amount_truckload": "truckload",
- "label_trash_type_plastic": "Plastic",
- "label_trash_type_metal": "Metal",
- "label_trash_type_glass": "Glass",
- "label_trash_type_electro": "Electronics",
- "label_trash_type_paper": "Paper/Wood",
- "label_trash_type_tyres": "Tyres",
- "label_trash_type_dom_waste": "Domestic waste",
- "label_trash_type_furniture": "Furniture",
- "label_trash_type_org_waste": "Organic waste",
- "label_header_tc": "Terms and Conditions",
- "label_button_tc_agree": "I agree with the Terms & Conditions",
- "label_header_map": "Map",
- "label_text_popover_subtitle": "Join other people who are mapping trash!",
- "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
- "label_header_activity": "My activity",
- "label_text_activity_empty_subtitle": "Nothing to see here!",
- "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
- "label_text_activity_empty_hint": "Add a trashpoint!",
- "label_header_notific": "Notifications",
- "label_text_notific_empty_subtitle": "Nothing to see here!",
- "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
- "label_header_profile": "My profile",
- "label_header_settings": "Account settings",
- "label_button_country_empty": "Country",
- "label_text_country": "Country",
- "label_header_select_country": "Select a country",
- "label_text_select_country_hint": "Search",
- "label_button_tc": "Terms and Conditions",
- "label_button_logout": "Log out",
- "label_text_congrats_image": "Trash captured",
- "label_text_congrats_subtitle": "Great job!",
- "label_text_congrats_text": "Now save the point by verifying the data.",
- "label_header_createTP": "Create a trashpoint",
- "label_button_createTP_editloc": "Edit location",
- "label_header_edit_loc": "Edit location",
- "label_button_edit_loc_set": "Set trashpoint location",
- "label_text_createTP_status_subtitle": "Point status",
- "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
- "label_text_createTP_add_photos": "Add trash photos",
- "label_text_createTP_select_amount": "Select trash amount",
- "label_text_createTP_select_type": "Select trash type",
- "label_text_createTP_add_hashtags": "Additional added tags",
- "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
- "label_button_createTP_confirm_create": "Create trashpoint",
- "label_alert_createTP_success": "Trashpoint successfully created",
- "label_text_detailsTP_photos": "Trash photos",
- "label_text_detailsTP_amount": "Trash amount",
- "label_text_detailsTP_type": "Trash type",
- "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
- "label_text_editTP_letsconfirm": "Yes, I confirm",
- "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
- "label_text_editTP_letsedit": "No, let's edit",
- "label_header_editTP": "Edit a trashpoint",
- "label_button_editTP_save": "Save trashpoint changes",
- "label_alert_editTP_edit": "Trashpoint successfully updated",
- "label_alert_editTP_delete": "Trashpoint successfully deleted",
- "label_error_editTP_out_of_rng_subtitle": "Out of range",
- "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
- "label_error_saveTP_subtitle": "Save trashpoint",
- "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
- "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
- "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
- "label_error_change_loc_subtitle": "Out of bounds",
- "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
- "label_error_generic_error_subtitle": "Out of bounds",
- "label_error_generic_error_text": "There was an error on the server.",
- "label_error_network_subtitle": "No network connection",
- "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_error_location_subtitle": "Enable location",
- "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
- "label_trash_details_header": "Trashpoint details",
- "label_privacy_policy_header": "Privacy Policy",
- "label_about_header": "About",
- "label_edit_trashpoint_button": "Edit trashpoint",
- "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
- "label_retry_button": "Retry",
- "label_country_picker_placeholder": "Choose your country",
- "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
- "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
- "label_camera_error_title": "Camera Access Denied",
- "label_error_modal_default_title": "Oh noes!",
- "label_error_modal_default_subtitle": "The fail whale detected a server error!",
- "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
- "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
- "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_location_modal_title": "Enable location",
- "label_network_off_warning_title": "No network connection",
- "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_loading_image_text": "Almost there...",
- "label_loading_image_subtext": "Please wait while we save your actions.",
- "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_button_delete": "Delete",
- "label_delete_photo_title": "Delete photo",
- "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
- "label_text_about_1": "This app is an initiative by Let's Do It World",
- "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
- "label_text_about_3": "This app is a joint cooperation with",
- "label_text_about_4": "Estonian product, sponsored by the country and government",
- "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
- "label_button_editTP_delete": "Delete trashpoint",
- "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+ "label_text_app_subtitle": "Sutvarkykime pasaulÄŻ kartu!",
+ "label_button_facebook": "TÄsti su Facebook",
+ "label_button_google": "TÄsti su Google",
+ "label_button_try_app": "IĹĄbandyti programÄlÄ be registracijos",
+ "label_button_acknowledge": "Supratau!",
+ "label_button_cancel": "AtĹĄaukti",
+ "label_button_continue": "TÄsti",
+ "label_trash_status_threat": "pavojinga",
+ "label_trash_status_regular": "ÄŻprasta",
+ "label_trash_status_cleaned": "sutvarkytas",
+ "label_trash_status_outdated": "pasenÄs",
+ "label_trash_status_user": "vartotojas",
+ "label_trash_status_change_location": "pakeisti vietÄ ",
+ "label_trash_status_state_threat": "Ĺ i vieta yra pavojinga!",
+ "label_trash_status_state_regular": "ÄŽprastĹł ĹĄiukĹĄliĹł vieta.",
+ "label_trash_status_state_cleaned": "Ĺ i vieta jau iĹĄvalyta!",
+ "label_trash_status_state_outdated": "Ĺ is taĹĄkas nebegalioja!",
+ "label_TP_created_date": "Sukurta",
+ "label_TP_updated_date": "Atnaujinta",
+ "label_TP_by": " ",
+ "label_trash_amount_handful": "sauja",
+ "label_trash_amount_bagful": "maiĹĄas",
+ "label_trash_amount_cartloadl": "karutis",
+ "label_trash_amount_truckload": "sunkveĹžimis",
+ "label_trash_type_plastic": "Plastikas",
+ "label_trash_type_metal": "Metalas",
+ "label_trash_type_glass": "Stiklas",
+ "label_trash_type_electro": "Elektronika",
+ "label_trash_type_paper": "Popierius/Mediena",
+ "label_trash_type_tyres": "Padangos",
+ "label_trash_type_dom_waste": "BuitinÄs atliekos",
+ "label_trash_type_furniture": "Baldai",
+ "label_trash_type_org_waste": "OrganinÄs atliekos",
+ "label_header_tc": "TaisyklÄs ir SÄ lygos",
+ "label_button_tc_agree": "AĹĄ sutinku su TaisyklÄmis ir SÄ lygomis",
+ "label_header_map": "Ĺ˝emÄlapis",
+ "label_text_popover_subtitle": "Prisijunk prie kitĹł, kurie Ĺžymi ĹĄiukĹĄles ĹžemÄlapyje!",
+ "label_text_popover_text": "PradÄk ĹžymÄti ĹĄiukĹĄliĹł taĹĄkus, kad paverstum bendruomenÄ ĹĄvaresne ir sveikesne.",
+ "label_header_activity": "Mano veikla",
+ "label_text_activity_empty_subtitle": "Deja, Äia tuĹĄÄia!",
+ "label_text_activity_empty_text": "JĹŤs dar nepridÄjote ĹĄiukĹĄliĹł taĹĄkĹł. Kai tai padarysite, jie atsiras Äia.",
+ "label_text_activity_empty_hint": "PridÄti ĹĄiukĹĄliĹł taĹĄkÄ !",
+ "label_header_notific": "PraneĹĄimai",
+ "label_text_notific_empty_subtitle": "Deja, Äia tuĹĄÄia!",
+ "label_text_notific_empty_text": "Kol kas praneĹĄimĹł nÄra, mes praneĹĄime kai jĹł atsiras!",
+ "label_header_profile": "Mano profilis",
+ "label_header_settings": "Paskyros nustatymai",
+ "label_button_country_empty": "Ĺ alis",
+ "label_text_country": "Ĺ alis",
+ "label_header_select_country": "Pasirinkti ĹĄalÄŻ",
+ "label_text_select_country_hint": "PaieĹĄka",
+ "label_button_tc": "TaisyklÄs ir SÄ lygos",
+ "label_button_logout": "Atsijungti",
+ "label_text_congrats_image": "Ĺ iukĹĄlÄs nufotografuotos",
+ "label_text_congrats_subtitle": "Puiku!",
+ "label_text_congrats_text": "IĹĄsaugokite taĹĄkÄ patvirtindami duomenis apie jÄŻ.",
+ "label_header_createTP": "Sukurti ĹĄiukĹĄliĹł taĹĄkÄ ",
+ "label_button_createTP_editloc": "Redaguoti vietÄ ",
+ "label_header_edit_loc": "Redaguoti vietÄ ",
+ "label_button_edit_loc_set": "Nustatyti ĹĄiukĹĄliĹł taĹĄko vietÄ ",
+ "label_text_createTP_status_subtitle": "TaĹĄko bĹŤsena",
+ "label_text_createTP_status_text": "Jei reikia veikti nedelsiant (nuodinga, sunkieji metalai) nustatykite kaip pavojinga.",
+ "label_text_createTP_add_photos": "PridÄkite ĹĄiukĹĄliĹł nuotraukĹł",
+ "label_text_createTP_select_amount": "Pasirinkite ĹĄiukĹĄliĹł kiekÄŻ",
+ "label_text_createTP_select_type": "Pasirinkite ĹĄiukĹĄliĹł tipÄ ",
+ "label_text_createTP_add_hashtags": "Papildomos Ĺžymos",
+ "label_text_createTP_add_hashtags_hint": "pvz. #gamintojas, #skardinÄs",
+ "label_button_createTP_confirm_create": "Sukurti ĹĄiukĹĄliĹł taĹĄkÄ ",
+ "label_alert_createTP_success": "Ĺ iukĹĄliĹł taĹĄkas sÄkmingai sukurtas",
+ "label_text_detailsTP_photos": "Ĺ iukĹĄliĹł nuotraukos",
+ "label_text_detailsTP_amount": "Ĺ iukĹĄliĹł kiekis",
+ "label_text_detailsTP_type": "Ĺ iukĹĄliĹł rĹŤĹĄis",
+ "label_text_editTP_ask": "Ar ĹĄi ĹĄiukĹĄliĹł taĹĄko informacija vis dar teisinga?",
+ "label_text_editTP_letsconfirm": "Taip, patvirtinu",
+ "label_alert_editTP_confirm": "Ĺ iukĹĄliĹł taĹĄkas sÄkmingai patvirtintas",
+ "label_text_editTP_letsedit": "Ne, redaguoti",
+ "label_header_editTP": "Redaguoti ĹĄiukĹĄliĹł taĹĄkÄ ",
+ "label_button_editTP_save": "IĹĄsaugoti ĹĄiukĹĄliĹł taĹĄko pakeitimus",
+ "label_alert_editTP_edit": "Ĺ iukĹĄliĹł taĹĄkas sÄkmingai atnaujintas",
+ "label_alert_editTP_delete": "Ĺ iukĹĄliĹł taĹĄkas sÄkmingai iĹĄtrintas",
+ "label_error_editTP_out_of_rng_subtitle": "Nepasiekiamas",
+ "label_error_editTP_out_of_rng_text": "Ĺ iukĹĄliĹł taĹĄkÄ galite redaguoti, jei esate nutolÄs nuo jo ne daugiau nei 100 metrĹł.",
+ "label_error_saveTP_subtitle": "IĹĄsaugoti ĹĄiukĹĄliĹł taĹĄkÄ ",
+ "label_error_saveTP_pic_and_type": "ÄŽkelkite bent vienÄ ĹĄiukĹĄliĹł taĹĄko nuotraukÄ ir nurodykite jĹł rĹŤĹĄÄŻ.",
+ "label_error_saveTP_picture": "PrieĹĄ iĹĄsaugant ÄŻkelkite bent vienÄ ĹĄiukĹĄliĹł taĹĄko nuotraukÄ .",
+ "label_error_saveTP_trash_type": "PrieĹĄ iĹĄsaugant nurodykite ĹĄiukĹĄliĹł rĹŤĹĄÄŻ.",
+ "label_error_change_loc_subtitle": "UĹž ribĹł",
+ "label_error_change_loc_text": "PaĹžymÄkite ĹĄiukĹĄliĹł taĹĄkÄ 100 metrĹł atstumu.",
+ "label_error_generic_error_subtitle": "UĹž ribĹł",
+ "label_error_generic_error_text": "Serverio klaida.",
+ "label_error_network_subtitle": "NÄra interneto ryĹĄio",
+ "label_error_network_text": "Mobilieji duomenys iĹĄjungti. Jei norite naudoti programÄlÄ, ÄŻjunkite mobiliuosius duomenis arba prijunkite telefonÄ prie \"Wi-Fi\" tinklo.",
+ "label_error_location_subtitle": "ÄŽjungti vietos nustatymÄ ",
+ "label_error_location_text": "Vietos nustatymo paslauga iĹĄjungta. ÄŽjunkite GPS funkcijÄ , kad galÄtumÄte naudotis ĹĄia programÄle.",
+ "label_error_loc_permission_text": "Vietos nustatymo paslauga negalima. ÄŽjunkite jÄ , jei norite naudotis ĹĄia programa.",
+ "label_trash_details_header": "Ĺ iukĹĄliĹł taĹĄko informacija",
+ "label_privacy_policy_header": "Privatumo politika",
+ "label_about_header": "Apie",
+ "label_edit_trashpoint_button": "Redaguoti ĹĄiukĹĄliĹł taĹĄkÄ ",
+ "label_100m_limit_modal": "Ĺ iukĹĄliĹł taĹĄkÄ galite redaguoti jei esate nutolÄs nuo jo ne daugiau nei 100 metrĹł.",
+ "label_retry_button": "Bandykite dar kartÄ ",
+ "label_country_picker_placeholder": "Pasirinkite ĹĄalÄŻ",
+ "label_camera_permission_warning_ios": "Pakeiskite fotoaparato prieigos nustatymus. NorÄdami tai padaryti, eikite ÄŻ Nustatymai>Privatumas>Fotoaparatas",
+ "label_camera_permission_warning_android": "Pakeiskite fotoaparato prieigos nustatymus. NorÄdami tai padaryti, eikite ÄŻ Nustatymai>Aplikacijos",
+ "label_camera_error_title": "Prieiga prie fotoaparato negalima",
+ "label_error_modal_default_title": "O ne!",
+ "label_error_modal_default_subtitle": "Aptikta serverio klaida!",
+ "label_location_permission_warning_ios": "ÄŽjunkite vietos nustatymo funkcijÄ . NorÄdami tai padaryti, eikite ÄŻ Nustatymai>Privatumas>Vietos nustatymo paslauga.",
+ "label_location_permission_warning_android": "ÄŽjunkite vietos nustatymo funkcijÄ . NorÄdami tai padaryti, eikite ÄŻ Parametrai > Aplikacijos.",
+ "label_location_off_warning": "Vietos nustatymo paslauga iĹĄjungta. ÄŽjunkite GPS funkcijÄ , kad galÄtumÄte naudotis ĹĄia programÄle.",
+ "label_location_modal_title": "ÄŽjungti vietos nustatymÄ ",
+ "label_network_off_warning_title": "NÄra interneto ryĹĄio",
+ "label_network_off_warning": "Mobilieji duomenys iĹĄjungti. Jei norite naudoti programÄlÄ, ÄŻjunkite mobiliuosius duomenis arba prijunkite telefonÄ prie \"Wi-Fi\" tinklo.",
+ "label_loading_image_text": "Jau beveik...",
+ "label_loading_image_subtext": "Palaukite, kol bus iĹĄsaugoti jĹŤsĹł veiksmai.",
+ "label_create_marker_missing_photos": "Nepavyko ÄŻkelti pasirinktĹł nuotraukĹł. Pabandykite jas ÄŻkelti dar kartÄ .",
+ "label_edit_marker_missing_photos": "Nepavyko ÄŻkelti pasirinktĹł nuotraukĹł. Pabandykite jas ÄŻkelti dar kartÄ .",
+ "label_confirm_marker_missing_photos": "Nepavyko ÄŻkelti pasirinktĹł nuotraukĹł. Pabandykite jas ÄŻkelti dar kartÄ .",
+ "label_button_delete": "IĹĄtrinti",
+ "label_delete_photo_title": "IĹĄtrinti nuotraukÄ ",
+ "label_delete_photo_subtitle": "Ar tikrai norite iĹĄtrinti ĹĄiÄ nuotraukÄ ? ",
+ "label_text_about_1": "Ĺ i programÄlÄ yra sukurta Let's Do It World iniciatyva",
+ "label_text_about_2": "Visi pasauliniu mastu surinkti duomenys bus pavaizduoti pasauliniame ĹĄiukĹĄliĹł ĹžemÄlapyje, skirtame inicijuoti tvarkymosi renginius per World Cleanup Day 2018 m. rugsÄjo 15 d.",
+ "label_text_about_3": "Ĺ i programÄlÄ sukurta bendradarbiaujant su",
+ "label_text_about_4": "Pagaminta Estijoje su ĹĄalies ir vyriausybÄs parama",
+ "label_text_about_5": "RÄmÄjai: Estijos aplinkos ministerija, Estijos Respublikos uĹžsienio reikalĹł ministerija, programa Estijos Respublikai 100",
+ "label_button_editTP_delete": "IĹĄtrinti ĹĄiukĹĄliĹł taĹĄkÄ ",
+ "label_locked_account_warning": "JĹŤsĹł paskyra uĹžblokuota. Susisiekite su administratoriumi."
}
\ No newline at end of file
diff --git a/mobile-app/src/trans/luy.json b/mobile-app/src/trans/luy.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/luy.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/lv.json b/mobile-app/src/trans/lv.json
index 3ad4df9a78..9f39d775dc 100644
--- a/mobile-app/src/trans/lv.json
+++ b/mobile-app/src/trans/lv.json
@@ -47,7 +47,7 @@
"label_header_profile": "Mans profils",
"label_header_settings": "Account settings",
"label_button_country_empty": "Valsts",
- "label_text_country": "Country",
+ "label_text_country": "Valsts",
"label_header_select_country": "IzvÄlieties valsti",
"label_text_select_country_hint": "Search",
"label_button_tc": "Terms and Conditions",
diff --git a/mobile-app/src/trans/mai.json b/mobile-app/src/trans/mai.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/mai.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/me.json b/mobile-app/src/trans/me.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/me.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/mg.json b/mobile-app/src/trans/mg.json
index 488633294e..55012225f7 100644
--- a/mobile-app/src/trans/mg.json
+++ b/mobile-app/src/trans/mg.json
@@ -111,7 +111,7 @@
"label_location_off_warning": "Vietos nustatymo paslauga iĹĄjungta. ÄŽjunkite GPS funkcijÄ , kad galÄtumÄte naudotis ĹĄia aplikacija.",
"label_location_modal_title": "Enable location",
"label_network_off_warning_title": "NÄra interneto ryĹĄio",
- "label_network_off_warning": "Mobilieji duomenys iĹĄjungti. Jei norite naudoti programÄ , ÄŻjunkite mobiliuosius duomenis arba prisijunkite prie \"Wi-Fi\" tinklo.",
+ "label_network_off_warning": "Mobilieji duomenys iĹĄjungti. Jei norite naudoti programÄ , ÄŻjunkite mobiliuosius duomenis arba prijunkite telefonÄ prie \"Wi-Fi\" tinklo.",
"label_loading_image_text": "Netrukus pasieksite savo tikslo vietÄ ",
"label_loading_image_subtext": "Palaukite, kol bus iĹĄsaugoti jĹŤsĹł veiksmai.",
"label_create_marker_missing_photos": "Nepavyko ÄŻkelti pasirinktĹł nuotraukĹł. Pabandykite jas ÄŻkelti dar kartÄ .",
diff --git a/mobile-app/src/trans/mh.json b/mobile-app/src/trans/mh.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/mh.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/mk.json b/mobile-app/src/trans/mk.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/mk.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ml.json b/mobile-app/src/trans/ml.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ml.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/moh.json b/mobile-app/src/trans/moh.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/moh.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/mos.json b/mobile-app/src/trans/mos.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/mos.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/mr.json b/mobile-app/src/trans/mr.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/mr.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ms.json b/mobile-app/src/trans/ms.json
index 5319dc98ce..2ad4468259 100644
--- a/mobile-app/src/trans/ms.json
+++ b/mobile-app/src/trans/ms.json
@@ -7,7 +7,7 @@
"label_button_cancel": "Batal",
"label_button_continue": "Terus",
"label_trash_status_threat": "ancaman",
- "label_trash_status_regular": "regular",
+ "label_trash_status_regular": "biasa",
"label_trash_status_cleaned": "dibersihkan",
"label_trash_status_outdated": "outdated",
"label_trash_status_user": "pengguna",
@@ -50,7 +50,7 @@
"label_text_country": "Negara",
"label_header_select_country": "Pilih satu negara",
"label_text_select_country_hint": "Search",
- "label_button_tc": "Terms and Conditions",
+ "label_button_tc": "Terma dan Syarat",
"label_button_logout": "Log out",
"label_text_congrats_image": "Trash captured",
"label_text_congrats_subtitle": "Great job!",
diff --git a/mobile-app/src/trans/my.json b/mobile-app/src/trans/my.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/my.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ng.json b/mobile-app/src/trans/ng.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ng.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/nl.json b/mobile-app/src/trans/nl.json
index 78344189bc..676b0439b4 100644
--- a/mobile-app/src/trans/nl.json
+++ b/mobile-app/src/trans/nl.json
@@ -1,130 +1,130 @@
{
"label_text_app_subtitle": "Let's clean up the world together!",
- "label_button_facebook": "Continue with Facebook",
- "label_button_google": "Continue with Google",
- "label_button_try_app": "Try out the app without account",
- "label_button_acknowledge": "Ok, got it!",
- "label_button_cancel": "Cancel",
- "label_button_continue": "Continue",
- "label_trash_status_threat": "threat",
- "label_trash_status_regular": "regular",
- "label_trash_status_cleaned": "cleaned",
- "label_trash_status_outdated": "outdated",
- "label_trash_status_user": "user",
- "label_trash_status_change_location": "changeLocation",
- "label_trash_status_state_threat": "This point is a threat!",
- "label_trash_status_state_regular": "This is a regular trashpoint.",
- "label_trash_status_state_cleaned": "This point is cleaned!",
- "label_trash_status_state_outdated": "This point is outdated!",
- "label_TP_created_date": "Created",
- "label_TP_updated_date": "Updated",
- "label_TP_by": " by ",
- "label_trash_amount_handful": "handful",
- "label_trash_amount_bagful": "bagful",
- "label_trash_amount_cartloadl": "cartload",
- "label_trash_amount_truckload": "truckload",
- "label_trash_type_plastic": "Plastic",
- "label_trash_type_metal": "Metal",
- "label_trash_type_glass": "Glass",
- "label_trash_type_electro": "Electronics",
- "label_trash_type_paper": "Paper/Wood",
- "label_trash_type_tyres": "Tyres",
- "label_trash_type_dom_waste": "Domestic waste",
- "label_trash_type_furniture": "Furniture",
- "label_trash_type_org_waste": "Organic waste",
- "label_header_tc": "Terms and Conditions",
- "label_button_tc_agree": "I agree with the Terms & Conditions",
- "label_header_map": "Map",
- "label_text_popover_subtitle": "Join other people who are mapping trash!",
- "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
- "label_header_activity": "My activity",
- "label_text_activity_empty_subtitle": "Nothing to see here!",
- "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
- "label_text_activity_empty_hint": "Add a trashpoint!",
- "label_header_notific": "Notifications",
- "label_text_notific_empty_subtitle": "Nothing to see here!",
- "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
- "label_header_profile": "My profile",
- "label_header_settings": "Account settings",
- "label_button_country_empty": "Country",
- "label_text_country": "Country",
- "label_header_select_country": "Select a country",
- "label_text_select_country_hint": "Search",
- "label_button_tc": "Terms and Conditions",
- "label_button_logout": "Log out",
- "label_text_congrats_image": "Trash captured",
- "label_text_congrats_subtitle": "Great job!",
- "label_text_congrats_text": "Now save the point by verifying the data.",
- "label_header_createTP": "Create a trashpoint",
- "label_button_createTP_editloc": "Edit location",
- "label_header_edit_loc": "Edit location",
- "label_button_edit_loc_set": "Set trashpoint location",
- "label_text_createTP_status_subtitle": "Point status",
- "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
- "label_text_createTP_add_photos": "Add trash photos",
- "label_text_createTP_select_amount": "Select trash amount",
- "label_text_createTP_select_type": "Select trash type",
- "label_text_createTP_add_hashtags": "Additional added tags",
- "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
- "label_button_createTP_confirm_create": "Create trashpoint",
- "label_alert_createTP_success": "Trashpoint successfully created",
- "label_text_detailsTP_photos": "Trash photos",
- "label_text_detailsTP_amount": "Trash amount",
- "label_text_detailsTP_type": "Trash type",
- "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
- "label_text_editTP_letsconfirm": "Yes, I confirm",
- "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
- "label_text_editTP_letsedit": "No, let's edit",
- "label_header_editTP": "Edit a trashpoint",
- "label_button_editTP_save": "Save trashpoint changes",
- "label_alert_editTP_edit": "Trashpoint successfully updated",
- "label_alert_editTP_delete": "Trashpoint successfully deleted",
- "label_error_editTP_out_of_rng_subtitle": "Out of range",
- "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
- "label_error_saveTP_subtitle": "Save trashpoint",
- "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
- "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
- "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_button_facebook": "Ga door met Facebook",
+ "label_button_google": "Ga door met Google",
+ "label_button_try_app": "Probeer de app zonder account",
+ "label_button_acknowledge": "Ok, ik snap het!",
+ "label_button_cancel": "Stoppen",
+ "label_button_continue": "Doorgaan",
+ "label_trash_status_threat": "bedreiging",
+ "label_trash_status_regular": "regelmatig",
+ "label_trash_status_cleaned": "schoongemaakt",
+ "label_trash_status_outdated": "verouderd",
+ "label_trash_status_user": "gebruiker",
+ "label_trash_status_change_location": "Verander locatie",
+ "label_trash_status_state_threat": "Dit punt is een bedreiging!",
+ "label_trash_status_state_regular": "Dit is een regelmatig afvalpunt.",
+ "label_trash_status_state_cleaned": "Dit punt is schoongemaakt!",
+ "label_trash_status_state_outdated": "Dit punt is verouderd!",
+ "label_TP_created_date": "Gemaakt",
+ "label_TP_updated_date": "Bijgewerkt",
+ "label_TP_by": " door ",
+ "label_trash_amount_handful": "handvol",
+ "label_trash_amount_bagful": "volle zak",
+ "label_trash_amount_cartloadl": "karlading",
+ "label_trash_amount_truckload": "vrachtwagenlading",
+ "label_trash_type_plastic": "Kunststof",
+ "label_trash_type_metal": "Metaal",
+ "label_trash_type_glass": "Glas",
+ "label_trash_type_electro": "Elektronica",
+ "label_trash_type_paper": "Papier/hout",
+ "label_trash_type_tyres": "Banden",
+ "label_trash_type_dom_waste": "Huishoudelijk afval",
+ "label_trash_type_furniture": "Meubilair",
+ "label_trash_type_org_waste": "Organisch afval",
+ "label_header_tc": "Algemene voorwaarden",
+ "label_button_tc_agree": "Ik ga akkoord met de algemene voorwaarden",
+ "label_header_map": "Kaart",
+ "label_text_popover_subtitle": "Doe mee met andere mensen die afval in kaart brengen!",
+ "label_text_popover_text": "Begin met het maken van afvalpunten om uw gemeenschap schoner en gezonder te maken.",
+ "label_header_activity": "Mijn activiteit",
+ "label_text_activity_empty_subtitle": "Niets te zien hier!",
+ "label_text_activity_empty_text": "U heb nog geen afvalpunten nog toegevoegd. Wanneer u dit doet, zullen ze hier getoond worden.",
+ "label_text_activity_empty_hint": "Voeg een afvalpunt toe!",
+ "label_header_notific": "Meldingen",
+ "label_text_notific_empty_subtitle": "Niets te zien hier!",
+ "label_text_notific_empty_text": "We hebben nog geen meldingen zien binnenkomen, maar we laten je het weten zodra dat wel gebeurt!",
+ "label_header_profile": "Mijn profiel",
+ "label_header_settings": "Accountinstellingen",
+ "label_button_country_empty": "Land",
+ "label_text_country": "Land",
+ "label_header_select_country": "Selecteer een land",
+ "label_text_select_country_hint": "Zoek",
+ "label_button_tc": "Algemene voorwaarden",
+ "label_button_logout": "Uitloggen",
+ "label_text_congrats_image": "Afval vastgelegd",
+ "label_text_congrats_subtitle": "Goed gedaan!",
+ "label_text_congrats_text": "Sla nu het punt op door de gegevens te controleren.",
+ "label_header_createTP": "Een afvalpunt maken",
+ "label_button_createTP_editloc": "Bewerk locatie",
+ "label_header_edit_loc": "Bewerk locatie",
+ "label_button_edit_loc_set": "Afval locatie instellen",
+ "label_text_createTP_status_subtitle": "Status van het punt",
+ "label_text_createTP_status_text": "Als een snelle actie is nodig (giftig, zware metalen), stel a.u.b. in als bedreiging.",
+ "label_text_createTP_add_photos": "Afval foto's toevoegen",
+ "label_text_createTP_select_amount": "Selecteer hoeveelheid afval",
+ "label_text_createTP_select_type": "Selecteer soort afval",
+ "label_text_createTP_add_hashtags": "Extra toegevoegde tags",
+ "label_text_createTP_add_hashtags_hint": "Bijv. #merknaam, #blikjes",
+ "label_button_createTP_confirm_create": "Een afvalpunt maken",
+ "label_alert_createTP_success": "Afvalpunt met succes gemaakt",
+ "label_text_detailsTP_photos": "Afval foto's",
+ "label_text_detailsTP_amount": "Hoeveelheid afval",
+ "label_text_detailsTP_type": "Afval soort",
+ "label_text_editTP_ask": "Zijn de afvalpunt gegevens nog steeds correct en up-to-date?",
+ "label_text_editTP_letsconfirm": "Ja, ik bevestig",
+ "label_alert_editTP_confirm": "Afvalpunt met succes bevestigd",
+ "label_text_editTP_letsedit": "Nee, laten we het aanpassen",
+ "label_header_editTP": "Wijzig een afvalpunt",
+ "label_button_editTP_save": "Afvalpunt wijzigingen opslaan",
+ "label_alert_editTP_edit": "Afvalpunt met succes aangepast",
+ "label_alert_editTP_delete": "Afvalpunt met succes verwijderd",
+ "label_error_editTP_out_of_rng_subtitle": "Buiten het bereik",
+ "label_error_editTP_out_of_rng_text": "Een punt kan alleen worden gewijzigd als u zich binnen 100 meter daarvan bevindt.",
+ "label_error_saveTP_subtitle": "Afvalpunt opslaan",
+ "label_error_saveTP_pic_and_type": "Het is nuttiger voor ons, als ten minste ĂŠĂŠn foto neemt van het afvalpunt en het soort afval instelt.",
+ "label_error_saveTP_picture": "Het is nuttiger voor ons als u ten minste ĂŠĂŠn foto van het afvalpunt neemt alvorens op te slaan.",
+ "label_error_saveTP_trash_type": "Het is nuttiger voor ons, als u het afvalpunt soort voor opslaan instelt.",
"label_error_change_loc_subtitle": "Out of bounds",
- "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_change_loc_text": "Plaats een punt binnen 100 meter van uw locatie.",
"label_error_generic_error_subtitle": "Out of bounds",
- "label_error_generic_error_text": "There was an error on the server.",
- "label_error_network_subtitle": "No network connection",
- "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_error_location_subtitle": "Enable location",
- "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
- "label_trash_details_header": "Trashpoint details",
- "label_privacy_policy_header": "Privacy Policy",
- "label_about_header": "About",
- "label_edit_trashpoint_button": "Edit trashpoint",
- "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
- "label_retry_button": "Retry",
- "label_country_picker_placeholder": "Choose your country",
- "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
- "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
- "label_camera_error_title": "Camera Access Denied",
- "label_error_modal_default_title": "Oh noes!",
- "label_error_modal_default_subtitle": "The fail whale detected a server error!",
- "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
- "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
- "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_location_modal_title": "Enable location",
- "label_network_off_warning_title": "No network connection",
- "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_loading_image_text": "Almost there...",
- "label_loading_image_subtext": "Please wait while we save your actions.",
- "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_button_delete": "Delete",
- "label_delete_photo_title": "Delete photo",
- "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
- "label_text_about_1": "This app is an initiative by Let's Do It World",
- "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
- "label_text_about_3": "This app is a joint cooperation with",
- "label_text_about_4": "Estonian product, sponsored by the country and government",
- "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
- "label_button_editTP_delete": "Delete trashpoint",
- "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+ "label_error_generic_error_text": "Er is een fout opgetreden op de server.",
+ "label_error_network_subtitle": "Geen netwerkverbinding",
+ "label_error_network_text": "Mobiel dataverkeer is uitgeschakeld. Schakel deze in of verbind de telefoon met Wi-Fi om de toepassing te gebruiken.",
+ "label_error_location_subtitle": "Locatie inschakelen",
+ "label_error_location_text": "Locatieservices zijn uitgeschakeld. Activeer uw GPS in uw instellingen om de toepassing te gebruiken.",
+ "label_error_loc_permission_text": "Locatieservices zijn niet toegestaan. Gelieve deze toe te laten om de toepassing te gebruiken.",
+ "label_trash_details_header": "Afvalpunt details",
+ "label_privacy_policy_header": "Privacybeleid",
+ "label_about_header": "Over",
+ "label_edit_trashpoint_button": "Voeg een afvalpunt toe",
+ "label_100m_limit_modal": "Een punt kan alleen worden gewijzigd als u zich binnen 100 meter daarvan bevindt.",
+ "label_retry_button": "Opnieuw proberen",
+ "label_country_picker_placeholder": "Kies uw land",
+ "label_camera_permission_warning_ios": "U moet camera toegangsmachtigingen wijzigen. Om dit te doen, ga naar instellingen > Privacy > Camera",
+ "label_camera_permission_warning_android": "U moet camera toegangsmachtigingen wijzigen. Om dit te doen, ga naar instellingen > Apps",
+ "label_camera_error_title": "Camera toegang geweigerd",
+ "label_error_modal_default_title": "Oh nee!",
+ "label_error_modal_default_subtitle": "De fail-walvis heeft een serverfout ontdekt!",
+ "label_location_permission_warning_ios": "U moet de locatie machtigingen wijzigen. Om dit te doen, ga naar instellingen > Privacy > locatievoorzieningen.",
+ "label_location_permission_warning_android": "U moet de locatie machtigingen wijzigen. Om dit te doen, ga naar instellingen > Apps.",
+ "label_location_off_warning": "Locatieservices zijn uitgeschakeld. Activeer uw GPS in uw instellingen om de toepassing te gebruiken.",
+ "label_location_modal_title": "Locatie inschakelen",
+ "label_network_off_warning_title": "Geen netwerkverbinding",
+ "label_network_off_warning": "Mobiel dataverkeer is uitgeschakeld. Schakel deze in of verbind de telefoon met Wi-Fi om de toepassing te gebruiken.",
+ "label_loading_image_text": "We zijn er bijna...",
+ "label_loading_image_subtext": "Een moment geduld a.u.b. terwijl we uw acties opslaan.",
+ "label_create_marker_missing_photos": "De marker foto's kunnen niet worden geĂźpload. Gelieve te proberen hen opnieuw toe te voegen.",
+ "label_edit_marker_missing_photos": "De marker foto's kunnen niet worden geĂźpload. Gelieve te proberen hen opnieuw toe te voegen.",
+ "label_confirm_marker_missing_photos": "De marker foto's kunnen niet worden geĂźpload. Gelieve te proberen hen opnieuw toe te voegen.",
+ "label_button_delete": "Verwijderen",
+ "label_delete_photo_title": "Foto verwijderen",
+ "label_delete_photo_subtitle": "Weet u zeker dat u de foto wil verwijderen? U niet dit ongedaan maken.",
+ "label_text_about_1": "Deze app is een initiatief van Let's Do It World",
+ "label_text_about_2": "Alle gegevens die zijn verzameld door gebruikers wereldwijd zal worden gevisualiseerd in de wereldwijde afval-kaart voor het initiĂŤren van wereldwijde schoonmaak evenementen op World Cleanup dag, 15 September 2018",
+ "label_text_about_3": "Dit app is een samenwerking met",
+ "label_text_about_4": "Een product uit Estland, gesponsord door het land en de regering",
+ "label_text_about_5": "Financiers: Estse ministerie van milieu, het ministerie van buitenlandse zaken van de Republiek Estland, het 100 programma van de Estse Republiek",
+ "label_button_editTP_delete": "Afvalpunt verwijderen",
+ "label_locked_account_warning": "Uw account is geblokkeerd. Neem contact op met de beheerder voor meer informatie."
}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ny.json b/mobile-app/src/trans/ny.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ny.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/oc.json b/mobile-app/src/trans/oc.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/oc.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/oj.json b/mobile-app/src/trans/oj.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/oj.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/om.json b/mobile-app/src/trans/om.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/om.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/or.json b/mobile-app/src/trans/or.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/or.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/os.json b/mobile-app/src/trans/os.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/os.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/pa.json b/mobile-app/src/trans/pa.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/pa.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/pam.json b/mobile-app/src/trans/pam.json
new file mode 100644
index 0000000000..ae23cdd99d
--- /dev/null
+++ b/mobile-app/src/trans/pam.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Linisin natin ang mundo ng sama-sama!",
+ "label_button_facebook": "Magpatuloy gamit ang Facebook",
+ "label_button_google": "Magpatuloy gamita ang Google",
+ "label_button_try_app": "Subukan ang mga app ng walang account",
+ "label_button_acknowledge": "Ok, nakuha ko!",
+ "label_button_cancel": "Kanselahin",
+ "label_button_continue": "Magpatuloy",
+ "label_trash_status_threat": "banta",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "nalinis na",
+ "label_trash_status_outdated": "lipas na sa panahon",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "baguhin ang Lokasyon",
+ "label_trash_status_state_threat": "Ang puntong ito ay isang banta!",
+ "label_trash_status_state_regular": "Ito ay isang regular na trashpoint.",
+ "label_trash_status_state_cleaned": "Ang lugar na ito ay nalinis na!",
+ "label_trash_status_state_outdated": "Ang lugar na ito ay lipas na sa panahon!",
+ "label_TP_created_date": "Nalikha na",
+ "label_TP_updated_date": "Na-update na",
+ "label_TP_by": " mula kay ",
+ "label_trash_amount_handful": "isang dakot",
+ "label_trash_amount_bagful": "isang supot",
+ "label_trash_amount_cartloadl": "isang kariton",
+ "label_trash_amount_truckload": "isang trak",
+ "label_trash_type_plastic": "Plastik",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Salamin",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Papel/Kahoy",
+ "label_trash_type_tyres": "Mga gulong",
+ "label_trash_type_dom_waste": "Basurang mula sa tahanan",
+ "label_trash_type_furniture": "Kasangkapan sa bahay",
+ "label_trash_type_org_waste": "Basurang organiko",
+ "label_header_tc": "Mga tuntunin at kondisyon",
+ "label_button_tc_agree": "Sumasang-ayon ako sa mga tuntunin & kundisyon",
+ "label_header_map": "Mapa",
+ "label_text_popover_subtitle": "Sumali sa iba pang mga tao na nagmamapa ng basura!",
+ "label_text_popover_text": "Magsimulang lumikha ng mga trashpoints upang gawing mas malinis at malusog ang iyong komunidad.",
+ "label_header_activity": "Aking mga aktibidad",
+ "label_text_activity_empty_subtitle": "Walang makikita dito!",
+ "label_text_activity_empty_text": "Hindi ka pa nagdaradag ng anumang trashpoints. Kapag nagdagdag ka ng trashpoint, iyon ay mai-lilista dito.",
+ "label_text_activity_empty_hint": "Magdagdag ng isang trashpoint!",
+ "label_header_notific": "Mga notification",
+ "label_text_notific_empty_subtitle": "Walang makikita dito!",
+ "label_text_notific_empty_text": "Hindi pa kami nakakita ng anumang notification, ngunit ipapaalam sa iyo kapag mayroon na!",
+ "label_header_profile": "Aking profile",
+ "label_header_settings": "Mga setting ng account",
+ "label_button_country_empty": "Bansa",
+ "label_text_country": "Bansa",
+ "label_header_select_country": "Pumili ng bansa",
+ "label_text_select_country_hint": "Maghanap",
+ "label_button_tc": "Mga tuntunin at kondisyon",
+ "label_button_logout": "Mag-logout",
+ "label_text_congrats_image": "Nakunang basura",
+ "label_text_congrats_subtitle": "Mahusay!",
+ "label_text_congrats_text": "Ngayon i-save ang lugar sa pamamagitan ng nagpapatunay na mga datos.",
+ "label_header_createTP": "Lumikha ng isang trashpoint",
+ "label_button_createTP_editloc": "Mag-edit ng lokasyon",
+ "label_header_edit_loc": "Mag-edit ng lokasyon",
+ "label_button_edit_loc_set": "Magtakda ng lokasyon ng trashpoint",
+ "label_text_createTP_status_subtitle": "Katayuan ng lugar",
+ "label_text_createTP_status_text": "Kung ang isang mabilis na pagkilos ay kinakailangang (nakakalason, heavy metal), mangyaring itakda bilang banta.",
+ "label_text_createTP_add_photos": "Magdagdag ng mga larawan ng basura",
+ "label_text_createTP_select_amount": "Piliin ang dami ng basura",
+ "label_text_createTP_select_type": "Piliin ang uri ng basura",
+ "label_text_createTP_add_hashtags": "Karagdagang mga tag",
+ "label_text_createTP_add_hashtags_hint": "halimbawa #tatak, #lata",
+ "label_button_createTP_confirm_create": "Lumikha ng isang trashpoint",
+ "label_alert_createTP_success": "Ang trashpoint ay matagumpay na nalikha",
+ "label_text_detailsTP_photos": "Mga larawan ng basura",
+ "label_text_detailsTP_amount": "Dami ng basura",
+ "label_text_detailsTP_type": "Uri ng basura",
+ "label_text_editTP_ask": "Ang impormasyong ito ba tungkol sa trashpoint ay tama at napapanahon?",
+ "label_text_editTP_letsconfirm": "Oo, Kinukumpirma ko",
+ "label_alert_editTP_confirm": "Ang trashpoint matagumpay na nakumpirma",
+ "label_text_editTP_letsedit": "Hindi, tayo'y mag-edit",
+ "label_header_editTP": "I-edit ang trashpoint",
+ "label_button_editTP_save": "I-save ang mga pagbabago sa trashpoint",
+ "label_alert_editTP_edit": "Ang trashpoint ay matagumpay na nai-update",
+ "label_alert_editTP_delete": "Trashpoint matagumpay na nabura",
+ "label_error_editTP_out_of_rng_subtitle": "Hindi sakop ng range",
+ "label_error_editTP_out_of_rng_text": "Ang isang lugar ay maaari lamang i-edit kung ikaw ay nasa loob ng 100 metro nito.",
+ "label_error_saveTP_subtitle": "I-save ang trashpoint",
+ "label_error_saveTP_pic_and_type": "Higit na kapaki-pakinabang para sa amin kung kukuha ng kahit isang larawan ng trashpoint at magtakda ng uri ng basura nito.",
+ "label_error_saveTP_picture": "Higit na kapaki-pakinabang para sa amin kung kukuha ng kahit isang larawan ng trashpoint bago ito i-save.",
+ "label_error_saveTP_trash_type": "Higit na kapaki-pakinabang para sa amin kung itinakda mo ang uri ng mga trashpoint bago ito i-save.",
+ "label_error_change_loc_subtitle": "Nasa labas ng hangganan",
+ "label_error_change_loc_text": "Mangyaring ilagay ang isang lugar sa loob ng 100 metro ng iyong lokasyon.",
+ "label_error_generic_error_subtitle": "Nasa labas ng hangganan",
+ "label_error_generic_error_text": "Nagkaroon ng error sa server.",
+ "label_error_network_subtitle": "Walang koneksyon sa network",
+ "label_error_network_text": "Hindi pinagagana ang mobile data. Paganahin ang mobile data o ikonekta ang iyong telepono sa Wi-Fi para gamitin ang application na ito.",
+ "label_error_location_subtitle": "Paganahin ang lokasyon",
+ "label_error_location_text": "Ang Location Services ay nakapatay. Mangyaring paganahin ang GPS mo sa iyong mga setting upang gamitin ang application na ito.",
+ "label_error_loc_permission_text": "Hindi pinapayagan ang mga serbisyo ng lokasyon. Pakiusap na payagan ang mga ito upang gamitin ang application na ito.",
+ "label_trash_details_header": "Mga detalye ng Trashpoint",
+ "label_privacy_policy_header": "Patakaran sa privacy",
+ "label_about_header": "Tungkol sa",
+ "label_edit_trashpoint_button": "I-edit ang trashpoint",
+ "label_100m_limit_modal": "Ang isang lugar ay maaari lamang i-edit kung ikaw ay nasa loob ng 100 metro nito.",
+ "label_retry_button": "Subukang muli",
+ "label_country_picker_placeholder": "Piliin ang iyong bansa",
+ "label_camera_permission_warning_ios": "Kailangan mong baguhin ang mga permiso sa akses ng kamera. Upang gawin ito, pumunta sa Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "Kailangan mong baguhin ang mga permiso sa akses ng kamera. Upang gawin ito, pumunta sa Settings > Apps",
+ "label_camera_error_title": "Hindi pinayagan ang akses sa camera",
+ "label_error_modal_default_title": "Ah hindi!",
+ "label_error_modal_default_subtitle": "Ang fail whale ay nakapansin ng server error!",
+ "label_location_permission_warning_ios": "Kailangan mong baguhin ang mga pahintulot sa lokasyon. Upang gawin ito, pumunta sa Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "Kailangan mong baguhin ang mga pahintulot sa lokasyon. Upang gawin ito, pumunta sa Settings > Apps.",
+ "label_location_off_warning": "Ang Location Services ay nakapatay. Mangyaring paganahin ang GPS mo sa iyong mga setting upang gamitin ang application na ito.",
+ "label_location_modal_title": "Paganahin ang lokasyon",
+ "label_network_off_warning_title": "Walang koneksyon sa network",
+ "label_network_off_warning": "Hindi pinagagana ang mobile data. Paganahin ang mobile data o ikonekta ang iyong telepono sa Wi-Fi para gamitin ang application na ito.",
+ "label_loading_image_text": "Halos tapos na...",
+ "label_loading_image_subtext": "Mangyaring maghintay habang isina-save natin ang iyong mga aksyon.",
+ "label_create_marker_missing_photos": "Hindi nai-upload ang mga marker na larawan. Pakisubukang idagdag muli ang mga ito.",
+ "label_edit_marker_missing_photos": "Hindi nai-upload ang mga marker na larawan. Pakisubukang idagdag muli ang mga ito.",
+ "label_confirm_marker_missing_photos": "Hindi nai-upload ang mga marker na larawan. Pakisubukang idagdag muli ang mga ito.",
+ "label_button_delete": "Burahin",
+ "label_delete_photo_title": "Burahin ang larawan",
+ "label_delete_photo_subtitle": "Tiyak ka bang gusto mong burahin ang larawan? Hindi mo na maibabalik ito.",
+ "label_text_about_1": "Ang app na ito ay isang inisyatibo ng Let's Do It World",
+ "label_text_about_2": "Ang lahat ng datos na nakolekta mula sa mga gumagamit ng app sa buong mundo ay ipipakita sa mapa ng global na basura para sa pagbago sa pamamagitan ng pandaigdigang paglilinis na magaganap sa ika-15 ng Setyembre taong 2018",
+ "label_text_about_3": "Ang app ay isang magkasanib na pakikipagtulungan sa",
+ "label_text_about_4": "Estonian product, itinataguyod ng bansa at pamahalaan",
+ "label_text_about_5": "Mga Natatag: Ministro ng Kapaligiran ng Estonia, Ministro ng Panglabas na Pikikipagugnayan ng Republika ng Estonia, Programa ng Republika ng Estonia 100",
+ "label_button_editTP_delete": "Burahin ang trashpoint",
+ "label_locked_account_warning": "Naka-lock ang account mo. Para sa mga detalye makipag-ugnayan sa administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/pi.json b/mobile-app/src/trans/pi.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/pi.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/pl.json b/mobile-app/src/trans/pl.json
index 3656db8b61..2d13df57ff 100644
--- a/mobile-app/src/trans/pl.json
+++ b/mobile-app/src/trans/pl.json
@@ -7,15 +7,15 @@
"label_button_cancel": "Anuluj",
"label_button_continue": "Kontynuuj",
"label_trash_status_threat": "zagroĹźenie",
- "label_trash_status_regular": "regularne",
+ "label_trash_status_regular": "normalne",
"label_trash_status_cleaned": "oczyszczone",
"label_trash_status_outdated": "nieaktualne",
"label_trash_status_user": "uĹźytkownik",
- "label_trash_status_change_location": "zmieĹLokacjÄ",
+ "label_trash_status_change_location": "zmieĹ lokalizacjÄ",
"label_trash_status_state_threat": "Ten punkt stanowi zagroĹźenie!",
- "label_trash_status_state_regular": "To jest zwykĹy trashpoint.",
- "label_trash_status_state_cleaned": "To miejsce jest oczyszczone!",
- "label_trash_status_state_outdated": "To miejsce jest przestarzaĹe!",
+ "label_trash_status_state_regular": "To zaĹmiecone miejsce ma status \"normalny\".",
+ "label_trash_status_state_cleaned": "To zaĹmiecone miejsce jest oczyszczone!",
+ "label_trash_status_state_outdated": "To miejsce jest nieaktualne!",
"label_TP_created_date": "Stworzone",
"label_TP_updated_date": "Zaktualizowane",
"label_TP_by": " przez ",
@@ -27,23 +27,23 @@
"label_trash_type_metal": "Metal",
"label_trash_type_glass": "SzkĹo",
"label_trash_type_electro": "Elektronika",
- "label_trash_type_paper": "Papier/drewno",
+ "label_trash_type_paper": "Papier/Drewno",
"label_trash_type_tyres": "Opony",
- "label_trash_type_dom_waste": "Odpady domowe",
+ "label_trash_type_dom_waste": "Odpady komunalne",
"label_trash_type_furniture": "Meble",
"label_trash_type_org_waste": "Odpady organiczne",
"label_header_tc": "Regulamin",
- "label_button_tc_agree": "Zgadzam siÄ z warunkami regulaminu",
+ "label_button_tc_agree": "Zgadzam siÄ z Regulaminem",
"label_header_map": "Mapa",
- "label_text_popover_subtitle": "DoĹÄ cz do ludzi, ktĂłrzy mapujÄ Ĺmieci!",
- "label_text_popover_text": "Zacznij tworzenie trashpoint'Ăłw, aby zrobiÄ swojÄ lokalnÄ spoĹecznoĹÄ czystszÄ i zdrowszÄ .",
+ "label_text_popover_subtitle": "DoĹÄ cz do innych ludzi, ktĂłrzy mapujÄ Ĺmieci!",
+ "label_text_popover_text": "Zacznij tworzenie zaĹmieconych miejsc i spraw, Ĺźeby twoje otoczenie byĹo czystsze i zdrowsze.",
"label_header_activity": "Moja aktywnoĹÄ",
"label_text_activity_empty_subtitle": "Nic tu nie ma!",
- "label_text_activity_empty_text": "Nie dodaĹeĹ jeszcze Ĺźadnych trashpoint'Ăłw. Kiedy to zrobisz, bÄdÄ one wypisane tutaj.",
- "label_text_activity_empty_hint": "Dodaj nowy trashpoint!",
+ "label_text_activity_empty_text": "Nie dodaĹeĹ jeszcze Ĺźadnych zaĹmieconych miejsc. Kiedy to zrobisz, bÄdÄ one wypisane tutaj.",
+ "label_text_activity_empty_hint": "Dodaj nowe zaĹmiecone miejsce!",
"label_header_notific": "Powiadomienia",
"label_text_notific_empty_subtitle": "Nic tu nie ma!",
- "label_text_notific_empty_text": "Nie widzieliĹmy Ĺźadnych przychodzÄ cych powiadomieĹ, ale damy Ci znaÄ, kiedy zobaczymy!",
+ "label_text_notific_empty_text": "Nie widzieliĹmy Ĺźadnych przychodzÄ cych powiadomieĹ, ale damy Ci znaÄ, kiedy je zobaczymy!",
"label_header_profile": "MĂłj profil",
"label_header_settings": "Ustawienia konta",
"label_button_country_empty": "Kraj",
@@ -52,79 +52,79 @@
"label_text_select_country_hint": "Szukaj",
"label_button_tc": "Regulamin",
"label_button_logout": "Wyloguj",
- "label_text_congrats_image": "Ĺmieci zĹapane",
+ "label_text_congrats_image": "Ĺmieci schwytane",
"label_text_congrats_subtitle": "Ĺwietna robota!",
- "label_text_congrats_text": "Teraz zapisz punkt poprzez weryfikacjÄ danych.",
- "label_header_createTP": "StwĂłrz trashpoint",
+ "label_text_congrats_text": "Teraz zapisz miejsce poprzez weryfikacjÄ danych.",
+ "label_header_createTP": "StwĂłrz zaĹmiecone miejsce",
"label_button_createTP_editloc": "Edytuj lokalizacjÄ",
"label_header_edit_loc": "Edytuj lokalizacjÄ",
- "label_button_edit_loc_set": "Ustaw lokalizacjÄ trashpoint'u",
- "label_text_createTP_status_subtitle": "Status punktu",
- "label_text_createTP_status_text": "JeĹli szybka akcja jest potrzebna (toksycznoĹÄ, metale ciÄĹźkie), proszÄ ustaw to jako zagroĹźenie.",
+ "label_button_edit_loc_set": "Ustaw lokalizacjÄ zaĹmieconego miejsca",
+ "label_text_createTP_status_subtitle": "Status miejsca",
+ "label_text_createTP_status_text": "JeĹli potrzebna jest natychmiastowa akcja (toksycznoĹÄ, metale ciÄĹźkie), proszÄ ustaw status: zagroĹźenie.",
"label_text_createTP_add_photos": "Dodaj zdjÄcia Ĺmieci",
"label_text_createTP_select_amount": "Ustaw iloĹÄ Ĺmieci",
"label_text_createTP_select_type": "Ustaw typ Ĺmieci",
"label_text_createTP_add_hashtags": "Dodatkowe dodane tagi",
- "label_text_createTP_add_hashtags_hint": "tzn. #nazwamarki, #puszki",
- "label_button_createTP_confirm_create": "StwĂłrz trashpoint",
- "label_alert_createTP_success": "Trashpoint stworzony pomyĹlnie",
+ "label_text_createTP_add_hashtags_hint": "tzn. #marka, #puszki",
+ "label_button_createTP_confirm_create": "StwĂłrz zaĹmiecone miejsce",
+ "label_alert_createTP_success": "ZaĹmiecone miejsce utworzone pomyĹlnie",
"label_text_detailsTP_photos": "ZdjÄcia Ĺmieci",
"label_text_detailsTP_amount": "IloĹÄ Ĺmieci",
"label_text_detailsTP_type": "Typ Ĺmieci",
- "label_text_editTP_ask": "Czy informacje o tym trashpoincie jest nadal aktualna i odpowiednia?",
- "label_text_editTP_letsconfirm": "Tak, potwierdzam",
- "label_alert_editTP_confirm": "Trashpoint potwierdzony pomyĹlnie",
- "label_text_editTP_letsedit": "Nie, przeprowadĹşmy edycjÄ",
- "label_header_editTP": "Edytuj trashpoint",
- "label_button_editTP_save": "Zapisz zmiany w trashpoincie",
- "label_alert_editTP_edit": "Trashpoint zaktualizowany pomyĹlnie",
- "label_alert_editTP_delete": "Trashpoint usuniÄty pomyĹlnie",
- "label_error_editTP_out_of_rng_subtitle": "Poza zakresem",
- "label_error_editTP_out_of_rng_text": "Punkt moĹźe byÄ edytowany jedynie jeĹli jesteĹ w odlegĹoĹci 100 metrĂłw od niego.",
- "label_error_saveTP_subtitle": "Zapisz trashpoint",
- "label_error_saveTP_pic_and_type": "JeĹli weĹşmiesz chociaĹź jedno zdjÄcie trashpointu i jeden rodzaj Ĺmieci bardziej nam pomoĹźesz.",
- "label_error_saveTP_picture": "JeĹli weĹşmiesz chociaĹź jedno zdjÄcie trashpointu i jeden rodzaj Ĺmieci przed zapisaniem bardziej nam pomoĹźesz.",
- "label_error_saveTP_trash_type": "Jest to bardziej przydatne dla nas, jeĹli ustawisz typ trashpoint przed zapisaniem.",
+ "label_text_editTP_ask": "Czy informacje o tym zaĹmieconym miejscu jest nadal odpowiednia i aktualna?",
+ "label_text_editTP_letsconfirm": "Tak, zatwierdzam",
+ "label_alert_editTP_confirm": "ZaĹmiecone miejsce zatwierdzono pomyĹlnie",
+ "label_text_editTP_letsedit": "Nie, edytujmy to",
+ "label_header_editTP": "Edytuj zaĹmiecone miejsce",
+ "label_button_editTP_save": "Zapisz zmiany w zaĹmieconym miejscu",
+ "label_alert_editTP_edit": "ZaĹmiecone miejsce zaktualizowano pomyĹlnie",
+ "label_alert_editTP_delete": "ZaĹmiecone miejsce usuniÄto pomyĹlnie",
+ "label_error_editTP_out_of_rng_subtitle": "Poza zasiÄgiem",
+ "label_error_editTP_out_of_rng_text": "Miejsce moĹźe byÄ edytowane jedynie jeĹli jesteĹ w odlegĹoĹci 100 metrĂłw od niego.",
+ "label_error_saveTP_subtitle": "Zapisz zaĹmiecone miejsce",
+ "label_error_saveTP_pic_and_type": "PomoĹźesz nam bardziej jeĹli zrobisz przynajmniej jedno zdjÄcie zaĹmieconego miejsca i ustawisz rodzaj Ĺmieci.",
+ "label_error_saveTP_picture": "PomoĹźesz nam bardziej jeĹli zrobisz przynajmniej jedno zdjÄcie zaĹmieconego miejsca przed zapisaniem go.",
+ "label_error_saveTP_trash_type": "PomoĹźesz nam bardziej jeĹli ustawisz typ zaĹmieconego miejsca przed zapisaniem go.",
"label_error_change_loc_subtitle": "Poza zakresem",
- "label_error_change_loc_text": "ProszÄ postaw punkt w odlegĹoĹci 100 metrĂłw z Twojej lokalizacji.",
+ "label_error_change_loc_text": "ProszÄ ustaw miejsce w odlegĹoĹci 100 metrĂłw od Twojej lokalizacji.",
"label_error_generic_error_subtitle": "Poza zakresem",
"label_error_generic_error_text": "WystÄ piĹ bĹÄ d na serwerze.",
"label_error_network_subtitle": "Brak poĹÄ czenia z sieciÄ ",
- "label_error_network_text": "Transmisja danych jest wyĹÄ czona. WĹÄ cz dane mobilne lub poĹÄ cz telefon do Wifi do korzystania z aplikacji.",
- "label_error_location_subtitle": "UmoĹźliw lokalizowanie",
+ "label_error_network_text": "Transmisja danych jest wyĹÄ czona. WĹÄ cz dane mobilne lub podĹÄ cz telefon do WiFi w celu korzystania z aplikacji.",
+ "label_error_location_subtitle": "UdostÄpnij lokalizacjÄ",
"label_error_location_text": "UsĹugi lokalizacji sÄ wyĹÄ czone. ProszÄ wĹÄ czyÄ GPS w ustawieniach aby mĂłc uĹźywaÄ aplikacji.",
- "label_error_loc_permission_text": "UsĹugi lokalizacji nie sÄ dozwolone. ProszÄ daÄ im pozwolenie w celu korzystania z aplikacji.",
- "label_trash_details_header": "SzczegĂłĹy trashpoint'u",
+ "label_error_loc_permission_text": "UsĹugi lokalizacji nie sÄ dozwolone. ProszÄ wyraziÄ zgodÄ na nie w celu korzystania z aplikacji.",
+ "label_trash_details_header": "SzczegĂłĹy zaĹmieconego miejsca",
"label_privacy_policy_header": "Polityka prywatnoĹci",
"label_about_header": "O",
- "label_edit_trashpoint_button": "Edytuj trashpoint",
- "label_100m_limit_modal": "Trashpoint moĹźe byÄ edytowany tylko, jeĹli jesteĹ w odlegĹoĹci 100 metrĂłw od niego.",
+ "label_edit_trashpoint_button": "Edytuj zaĹmiecone miejsce",
+ "label_100m_limit_modal": "ZaĹmiecone miejsce moĹźe byÄ edytowany tylko jeĹli znajdujesz siÄ w odlegĹoĹci 100 metrĂłw od niego.",
"label_retry_button": "PonĂłw prĂłbÄ",
"label_country_picker_placeholder": "Wybierz swĂłj kraj",
- "label_camera_permission_warning_ios": "Musisz zmieniÄ uprawnienia dostÄpu kamery. Aby to zrobiÄ przejdĹş do Ustawienia > PrywatnoĹÄ > Kamera",
- "label_camera_permission_warning_android": "Musisz zmieniÄ uprawnienia dostÄpu kamery. Aby to zrobiÄ przejdĹş do Ustawienia > Aplikacje",
- "label_camera_error_title": "Odmowa dostÄpu do kamery",
+ "label_camera_permission_warning_ios": "Musisz zmieniÄ uprawnienia dostÄpu aparatu. Aby to zrobiÄ przejdĹş do Ustawienia > PrywatnoĹÄ > Aparat",
+ "label_camera_permission_warning_android": "Musisz zmieniÄ uprawnienia dostÄpu aparatu. Aby to zrobiÄ przejdĹş do Ustawienia > Aplikacje",
+ "label_camera_error_title": "Odmowa dostÄpu do aparatu",
"label_error_modal_default_title": "O nie!",
"label_error_modal_default_subtitle": "WielbĹÄ d bĹÄdu wykryĹ bĹÄ d serwera!",
- "label_location_permission_warning_ios": "Musisz zmieniÄ uprawnienia lokacji. Aby to zrobiÄ przejdĹş do Ustawienia > PrywatnoĹÄ > Ustawienia lokalizacji.",
+ "label_location_permission_warning_ios": "Musisz zmieniÄ uprawnienia lokalizacji. Aby to zrobiÄ przejdĹş do Ustawienia > PrywatnoĹÄ > UsĹugi lokalizacji.",
"label_location_permission_warning_android": "Musisz zmieniÄ uprawnienia lokalizacji. Aby to zrobiÄ przejdĹş do Ustawienia > Aplikacje.",
"label_location_off_warning": "UsĹugi lokalizacji sÄ wyĹÄ czone. ProszÄ wĹÄ czyÄ GPS w ustawieniach aby mĂłc uĹźywaÄ aplikacji.",
- "label_location_modal_title": "UmoĹźliw lokalizowanie",
+ "label_location_modal_title": "UdostÄpnij lokalizacjÄ",
"label_network_off_warning_title": "Brak poĹÄ czenia z sieciÄ ",
- "label_network_off_warning": "Transmisja danych jest wyĹÄ czona. WĹÄ cz dane mobilne lub poĹÄ cz telefon do Wifi do korzystania z aplikacji.",
+ "label_network_off_warning": "Transmisja danych jest wyĹÄ czona. WĹÄ cz dane mobilne lub podĹÄ cz telefon do WiFi w celu korzystania z aplikacji.",
"label_loading_image_text": "JuĹź prawie...",
"label_loading_image_subtext": "Czekaj, zapisujemy Twoje dziaĹania.",
- "label_create_marker_missing_photos": "Nie moĹźna przekazaÄ zdjÄcia znacznika. ProszÄ sprĂłbuj dodaÄ je ponownie.",
- "label_edit_marker_missing_photos": "Nie moĹźna przekazaÄ zdjÄcia znacznika. ProszÄ sprĂłbuj dodaÄ je ponownie.",
- "label_confirm_marker_missing_photos": "Nie moĹźna przekazaÄ zdjÄcia znacznika. ProszÄ sprĂłbuj dodaÄ je ponownie.",
+ "label_create_marker_missing_photos": "Nie moĹźna zaĹadowaÄ zdjÄÄ znacznika. ProszÄ sprĂłbuj dodaÄ je ponownie.",
+ "label_edit_marker_missing_photos": "Nie moĹźna zaĹadowaÄ zdjÄÄ znacznika. ProszÄ sprĂłbuj dodaÄ je ponownie.",
+ "label_confirm_marker_missing_photos": "Nie moĹźna zaĹadowaÄ zdjÄÄ znacznika. ProszÄ sprĂłbuj dodaÄ je ponownie.",
"label_button_delete": "UsuĹ",
"label_delete_photo_title": "UsuĹ zdjÄcie",
- "label_delete_photo_subtitle": "Czy na pewno chcesz usunÄ Ä zdjÄcie? Nie moĹźesz tego cofnÄ Ä.",
+ "label_delete_photo_subtitle": "Czy na pewno chcesz usunÄ Ä to zdjÄcie? Nie moĹźesz tego cofnÄ Ä.",
"label_text_about_1": "Ta aplikacja jest inicjatywÄ Let's Do It World",
- "label_text_about_2": "Wszystkie dane zebrane przez uĹźytkownikĂłw na caĹym Ĺwiecie bÄdzie moĹźna podejrzeÄ na globalnej mapie Ĺmieci, Ĺźeby inicjowaÄ wydarzenia dotyczÄ ce sprzÄ tania na caĹym Ĺwiecie podczas Ĺwiatowego Dnia SprzÄ tania, 15 wrzeĹnia 2018",
+ "label_text_about_2": "Wszystkie dane zebrane przez uĹźytkownikĂłw na caĹym Ĺwiecie bÄdzie moĹźna podejrzeÄ na globalnej mapie Ĺmieci w celu rozpoczÄcia ogĂłlnoĹwiatowych wydarzeĹ porzÄ dkowych podczas Ĺwiatowego Dnia OdĹmiecania, 15 wrzeĹnia 2018",
"label_text_about_3": "Aplikacja wspĂłĹtworzona z",
"label_text_about_4": "Produkt EstoĹski, sponsorowany przez kraj i rzÄ d",
- "label_text_about_5": "Fundatorzy: EstoĹskie Ministerstwo Ĺrodowiska, Ministerstwo Spraw Zagranicznych Republiki Estonii, program 100 Republiki EstoĹskiej",
- "label_button_editTP_delete": "UsuĹ trashpoint",
+ "label_text_about_5": "Fundatorzy: EstoĹskie Ministerstwo Ĺrodowiska, Ministerstwo Spraw Zagranicznych Republiki Estonii, program Republiki EstoĹskiej \"Estonia100\"",
+ "label_button_editTP_delete": "UsuĹ zaĹmiecone miejsce",
"label_locked_account_warning": "Twoje konto zostaĹo zablokowane. Po szczegĂłĹy skontaktuj siÄ z administratorem."
}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ps.json b/mobile-app/src/trans/ps.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ps.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/pt.json b/mobile-app/src/trans/pt.json
index 6223b7fe25..ff73a3a68d 100644
--- a/mobile-app/src/trans/pt.json
+++ b/mobile-app/src/trans/pt.json
@@ -108,10 +108,10 @@
"label_error_modal_default_subtitle": "A baleia da falha encontrou um erro do servidor!",
"label_location_permission_warning_ios": "Deve alterar as permissþes de localização. Para fazer isso, dirija-se a Definiçþes > Privacidade > Serviços de localização",
"label_location_permission_warning_android": "Deve alterar as permissþes de localização. Para fazer isso, dirija-se a Definiçþes > Aplicaçþes",
- "label_location_off_warning": "Serviços de localização estão desligados. Por favor ligue o seu GPS nas sua configuraçþes para usar a aplicação.",
+ "label_location_off_warning": "Serviços de localização estão desligados. Por favor ligue o seu GPS, nas Definiçþes, para poder usar a aplicação.",
"label_location_modal_title": "Permitir a localização",
"label_network_off_warning_title": "Sem ligação à internet",
- "label_network_off_warning": "Dados móveis encontram-se desligados. Ligue os dados móveis ou conecte o seu telefone ao Wi-Fi para usar a aplicação.",
+ "label_network_off_warning": "Dados móveis encontram-se desligados. Ligue os dados móveis ou Wi-Fi para poder usar a aplicação.",
"label_loading_image_text": "Quase lĂĄ...",
"label_loading_image_subtext": "Por favor espere, enquanto guardamos as suas acçþes.",
"label_create_marker_missing_photos": "As fotos do mercador nĂŁo conseguiram ser carregadas. Por favor tente adicionĂĄ-las novamente.",
diff --git a/mobile-app/src/trans/qya.json b/mobile-app/src/trans/qya.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/qya.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/rn.json b/mobile-app/src/trans/rn.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/rn.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ru.json b/mobile-app/src/trans/ru.json
index ecb5e27ed3..69de760cd6 100644
--- a/mobile-app/src/trans/ru.json
+++ b/mobile-app/src/trans/ru.json
@@ -3,7 +3,7 @@
"label_button_facebook": "ĐŃОдОНМиŃŃ ŃĐľŃоС Facebook",
"label_button_google": "ĐŃОдОНМиŃŃ ŃĐľŃоС Google",
"label_button_try_app": "ĐŃĐżŃŃĐ°ĐšŃĐľ ĐżŃиНОМонио, но ŃĐžĐˇĐ´Đ°Đ˛Đ°Ń Đ°ĐşĐşĐ°ŃĐ˝Ń",
- "label_button_acknowledge": "ĐкоК, пОнŃŃнО!",
+ "label_button_acknowledge": "ĐОнŃŃнО!",
"label_button_cancel": "ĐŃПона",
"label_button_continue": "ĐŃОдОНМиŃŃ",
"label_trash_status_threat": "ОпаŃнОŃŃŃ",
@@ -108,15 +108,15 @@
"label_error_modal_default_subtitle": "ĐйнаŃŃМона ĐžŃийка ŃĐľŃвоŃĐ°!",
"label_location_permission_warning_ios": "ĐĐľĐžĐąŃ ĐžĐ´Đ¸ĐźĐž иСПониŃŃ ŃаСŃĐľŃонио Đ´ĐťŃ ĐžĐżŃĐľĐ´ĐľĐťĐľĐ˝Đ¸Ń ĐźĐľŃŃОпОНОМониŃ. ЧŃĐžĐąŃ ŃдоНаŃŃ ŃŃĐž, СаКдиŃĐľ в ĐĐ°ŃŃŃОКки > ĐОнŃидонŃиаНŃнОŃŃŃ > ĐĄĐľŃĐ˛Đ¸Ń ĐťĐžĐşĐ°ĐťĐ¸ĐˇĐ°Ńии.",
"label_location_permission_warning_android": "ĐĐľĐžĐąŃ ĐžĐ´Đ¸ĐźĐž иСПониŃŃ ŃаСŃĐľŃĐľĐ˝Đ¸Ń Đ´ĐťŃ ĐžĐżŃĐľĐ´ĐľĐťĐľĐ˝Đ¸Ń ĐźĐľŃŃОпОНОМониŃ. ЧŃĐžĐąŃ ŃдоНаŃŃ ŃŃĐž, СаКдиŃĐľ в ĐĐ°ŃŃŃОКки > ĐŃиНОМониŃ.",
- "label_location_off_warning": "ĐĐżŃодоНонио ПоŃŃĐžĐ˝Đ°Ń ĐžĐśĐ´ĐľĐ˝Đ¸Ń ĐžŃкНŃŃонО. ЧŃĐžĐąŃ Đ¸ŃпОНŃСОваŃŃ ĐżŃиНОМонио, ĐżŃĐžŃиП вкНŃŃиŃŃ GPS в ваŃĐ¸Ń Đ˝Đ°ŃŃŃĐžĐšĐşĐ°Ń .",
- "label_location_modal_title": "РаСŃĐľŃиŃŃ ĐžĐżŃодоНонио ПоŃŃĐžĐ˝Đ°Ń ĐžĐśĐ´ĐľĐ˝Đ¸Ń",
- "label_network_off_warning_title": "ĐĐľŃ ŃĐžĐľĐ´Đ¸Đ˝ĐľĐ˝Đ¸Ń Ń ĐĐ˝ŃĐľŃноŃОП",
+ "label_location_off_warning": "ĐŁŃĐťŃга ОпŃĐľĐ´ĐľĐťĐľĐ˝Đ¸Ń ĐźĐľŃŃĐžĐżĐžĐťĐžĐśĐľĐ˝Đ¸Ń ĐžŃкНŃŃона. ЧŃĐžĐąŃ Đ¸ŃпОНŃСОваŃŃ ĐżŃиНОМонио, вкНŃŃиŃĐľ GPS.",
+ "label_location_modal_title": "РаСŃĐľŃиŃŃ ĐžĐżŃодоНŃŃŃ ĐźĐľŃŃĐžĐ˝Đ°Ń ĐžĐśĐ´ĐľĐ˝Đ¸Đľ",
+ "label_network_off_warning_title": "ĐĐľŃ ĐżĐžĐ´ĐşĐťŃŃĐľĐ˝Đ¸Ń Đş ĐĐ˝ŃĐľŃноŃŃ",
"label_network_off_warning": "ĐОйиНŃĐ˝ŃĐľ даннŃĐľ ĐžŃкНŃŃонŃ. ЧŃĐžĐąŃ Đ¸ŃпОНŃСОваŃŃ ĐżŃиНОМонио, вкНŃŃиŃĐľ ПОйиНŃĐ˝ŃĐľ даннŃĐľ иНи пОдкНŃŃиŃĐľ ваŃĐľ ŃŃŃŃОКŃŃвО Đş Wi-Fi.",
"label_loading_image_text": "ĐĐžŃŃи гОŃОвО...",
"label_loading_image_subtext": "ĐŃĐžŃиП пОдОМдаŃŃ, пОка ĐźŃ ŃĐžŃ ŃĐ°Đ˝ŃоП ваŃи даннŃĐľ.",
"label_create_marker_missing_photos": "ФОŃОгŃĐ°Ńии ŃĐžŃки но ŃдаНОŃŃ ĐˇĐ°ĐłŃŃСиŃŃ. ĐŃĐžŃиП дОйавиŃŃ Đ¸Ń ĐľŃĐľ ŃаС.",
"label_edit_marker_missing_photos": "ФОŃОгŃĐ°Ńии ŃĐžŃки но ŃдаНОŃŃ ĐˇĐ°ĐłŃŃСиŃŃ. ĐŃĐžŃиП дОйавиŃŃ Đ¸Ń ĐľŃĐľ ŃаС.",
- "label_confirm_marker_missing_photos": "ФОŃОгŃĐ°Ńии ŃĐžŃки но ŃдаНОŃŃ ĐˇĐ°ĐłŃŃСиŃŃ. ĐŃĐžŃиП пОпŃОйОваŃŃ Đ´ĐžĐąĐ°Đ˛Đ¸ŃŃ Đ¸Ń ĐľŃĐľ ŃаС.",
+ "label_confirm_marker_missing_photos": "ФОŃОгŃĐ°Ńии ŃĐžŃки но ŃдаНОŃŃ ĐˇĐ°ĐłŃŃСиŃŃ. ĐŃĐžŃиП дОйавиŃŃ Đ¸Ń ĐľŃĐľ ŃаС.",
"label_button_delete": "УдаНиŃŃ",
"label_delete_photo_title": "УдаНиŃŃ ŃĐžŃĐž",
"label_delete_photo_subtitle": "ĐŃ ŃвоŃонŃ, ŃŃĐž МоНаоŃĐľ ŃдаНиŃŃ ŃĐžŃОгŃĐ°ŃиŃ? ĐŃĐž доКŃŃвио ноНŃĐˇŃ ĐžŃПониŃŃ.",
diff --git a/mobile-app/src/trans/sa.json b/mobile-app/src/trans/sa.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/sa.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/sah.json b/mobile-app/src/trans/sah.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/sah.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/sat.json b/mobile-app/src/trans/sat.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/sat.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/sc.json b/mobile-app/src/trans/sc.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/sc.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/sd.json b/mobile-app/src/trans/sd.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/sd.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/sg.json b/mobile-app/src/trans/sg.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/sg.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/sl.json b/mobile-app/src/trans/sl.json
index 78344189bc..9b0bac0c90 100644
--- a/mobile-app/src/trans/sl.json
+++ b/mobile-app/src/trans/sl.json
@@ -1,130 +1,130 @@
{
- "label_text_app_subtitle": "Let's clean up the world together!",
- "label_button_facebook": "Continue with Facebook",
- "label_button_google": "Continue with Google",
- "label_button_try_app": "Try out the app without account",
- "label_button_acknowledge": "Ok, got it!",
- "label_button_cancel": "Cancel",
- "label_button_continue": "Continue",
- "label_trash_status_threat": "threat",
- "label_trash_status_regular": "regular",
- "label_trash_status_cleaned": "cleaned",
- "label_trash_status_outdated": "outdated",
- "label_trash_status_user": "user",
- "label_trash_status_change_location": "changeLocation",
- "label_trash_status_state_threat": "This point is a threat!",
- "label_trash_status_state_regular": "This is a regular trashpoint.",
- "label_trash_status_state_cleaned": "This point is cleaned!",
- "label_trash_status_state_outdated": "This point is outdated!",
- "label_TP_created_date": "Created",
- "label_TP_updated_date": "Updated",
- "label_TP_by": " by ",
- "label_trash_amount_handful": "handful",
- "label_trash_amount_bagful": "bagful",
- "label_trash_amount_cartloadl": "cartload",
- "label_trash_amount_truckload": "truckload",
- "label_trash_type_plastic": "Plastic",
- "label_trash_type_metal": "Metal",
- "label_trash_type_glass": "Glass",
- "label_trash_type_electro": "Electronics",
- "label_trash_type_paper": "Paper/Wood",
- "label_trash_type_tyres": "Tyres",
- "label_trash_type_dom_waste": "Domestic waste",
- "label_trash_type_furniture": "Furniture",
- "label_trash_type_org_waste": "Organic waste",
- "label_header_tc": "Terms and Conditions",
- "label_button_tc_agree": "I agree with the Terms & Conditions",
- "label_header_map": "Map",
- "label_text_popover_subtitle": "Join other people who are mapping trash!",
- "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
- "label_header_activity": "My activity",
- "label_text_activity_empty_subtitle": "Nothing to see here!",
- "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
- "label_text_activity_empty_hint": "Add a trashpoint!",
- "label_header_notific": "Notifications",
- "label_text_notific_empty_subtitle": "Nothing to see here!",
- "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
- "label_header_profile": "My profile",
- "label_header_settings": "Account settings",
- "label_button_country_empty": "Country",
- "label_text_country": "Country",
- "label_header_select_country": "Select a country",
- "label_text_select_country_hint": "Search",
- "label_button_tc": "Terms and Conditions",
- "label_button_logout": "Log out",
- "label_text_congrats_image": "Trash captured",
- "label_text_congrats_subtitle": "Great job!",
- "label_text_congrats_text": "Now save the point by verifying the data.",
- "label_header_createTP": "Create a trashpoint",
- "label_button_createTP_editloc": "Edit location",
- "label_header_edit_loc": "Edit location",
- "label_button_edit_loc_set": "Set trashpoint location",
- "label_text_createTP_status_subtitle": "Point status",
- "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
- "label_text_createTP_add_photos": "Add trash photos",
- "label_text_createTP_select_amount": "Select trash amount",
- "label_text_createTP_select_type": "Select trash type",
- "label_text_createTP_add_hashtags": "Additional added tags",
- "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
- "label_button_createTP_confirm_create": "Create trashpoint",
- "label_alert_createTP_success": "Trashpoint successfully created",
- "label_text_detailsTP_photos": "Trash photos",
- "label_text_detailsTP_amount": "Trash amount",
- "label_text_detailsTP_type": "Trash type",
- "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
- "label_text_editTP_letsconfirm": "Yes, I confirm",
- "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
- "label_text_editTP_letsedit": "No, let's edit",
- "label_header_editTP": "Edit a trashpoint",
- "label_button_editTP_save": "Save trashpoint changes",
- "label_alert_editTP_edit": "Trashpoint successfully updated",
- "label_alert_editTP_delete": "Trashpoint successfully deleted",
- "label_error_editTP_out_of_rng_subtitle": "Out of range",
- "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
- "label_error_saveTP_subtitle": "Save trashpoint",
- "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
- "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
- "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
- "label_error_change_loc_subtitle": "Out of bounds",
- "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
- "label_error_generic_error_subtitle": "Out of bounds",
- "label_error_generic_error_text": "There was an error on the server.",
- "label_error_network_subtitle": "No network connection",
- "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_error_location_subtitle": "Enable location",
- "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
- "label_trash_details_header": "Trashpoint details",
- "label_privacy_policy_header": "Privacy Policy",
- "label_about_header": "About",
- "label_edit_trashpoint_button": "Edit trashpoint",
- "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
- "label_retry_button": "Retry",
- "label_country_picker_placeholder": "Choose your country",
- "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
- "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
- "label_camera_error_title": "Camera Access Denied",
- "label_error_modal_default_title": "Oh noes!",
- "label_error_modal_default_subtitle": "The fail whale detected a server error!",
- "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
- "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
- "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_location_modal_title": "Enable location",
- "label_network_off_warning_title": "No network connection",
- "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_loading_image_text": "Almost there...",
- "label_loading_image_subtext": "Please wait while we save your actions.",
- "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_button_delete": "Delete",
- "label_delete_photo_title": "Delete photo",
- "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
- "label_text_about_1": "This app is an initiative by Let's Do It World",
- "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
- "label_text_about_3": "This app is a joint cooperation with",
- "label_text_about_4": "Estonian product, sponsored by the country and government",
- "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
- "label_button_editTP_delete": "Delete trashpoint",
- "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+ "label_text_app_subtitle": "Skupaj oÄistimo svet!",
+ "label_button_facebook": "Nadaljuj s Facebook raÄunom",
+ "label_button_google": "Nadaljuj z Google raÄunom",
+ "label_button_try_app": "Preizkusi aplikacijo brez raÄuna",
+ "label_button_acknowledge": "Razumem!",
+ "label_button_cancel": "PrekliÄi",
+ "label_button_continue": "Nadaljuj",
+ "label_trash_status_threat": "nevarno",
+ "label_trash_status_regular": "obiÄajno",
+ "label_trash_status_cleaned": "oÄiĹĄÄeno",
+ "label_trash_status_outdated": "zastarelo",
+ "label_trash_status_user": "uporabnik",
+ "label_trash_status_change_location": "spremeni lokacijo",
+ "label_trash_status_state_threat": "Ta toÄka je nevarna!",
+ "label_trash_status_state_regular": "To je obiÄajno odlagaliĹĄÄe.",
+ "label_trash_status_state_cleaned": "Ta toÄka je oÄiĹĄÄena!",
+ "label_trash_status_state_outdated": "Ta toÄka je zastarela!",
+ "label_TP_created_date": "Najdba",
+ "label_TP_updated_date": "Obisk",
+ "label_TP_by": " : ",
+ "label_trash_amount_handful": "za pest",
+ "label_trash_amount_bagful": "za vreÄo",
+ "label_trash_amount_cartloadl": "za voziÄek",
+ "label_trash_amount_truckload": "za tovornjak",
+ "label_trash_type_plastic": "Plastika",
+ "label_trash_type_metal": "Kovina",
+ "label_trash_type_glass": "Steklo",
+ "label_trash_type_electro": "Elektronika",
+ "label_trash_type_paper": "Papir/Les",
+ "label_trash_type_tyres": "Pnevmatike",
+ "label_trash_type_dom_waste": "Gospodinjski odpadki",
+ "label_trash_type_furniture": "PohiĹĄtvo",
+ "label_trash_type_org_waste": "Organski odpadki",
+ "label_header_tc": "Pogoji uporabe",
+ "label_button_tc_agree": "Strinjam se s pogoji uporabe",
+ "label_header_map": "Zemljevid",
+ "label_text_popover_subtitle": "PridruĹži se drugim, ki oznaÄujejo smeti!",
+ "label_text_popover_text": "Za ÄistejĹĄo in bolj zdravo skupnost priÄni vnaĹĄati odlagaliĹĄÄa.",
+ "label_header_activity": "Moja dejanja",
+ "label_text_activity_empty_subtitle": "Tukaj ni niÄesar!",
+ "label_text_activity_empty_text": "Niste vnesli ĹĄe nobenih odlagaliĹĄÄ. Po vnosu bodo navedena tukaj.",
+ "label_text_activity_empty_hint": "Dodaj odlagaliĹĄÄe!",
+ "label_header_notific": "Obvestila",
+ "label_text_notific_empty_subtitle": "Tukaj ni niÄesar!",
+ "label_text_notific_empty_text": "Zaenkrat ĹĄe nismo zabeleĹžili nobenih prispelih obvestil!",
+ "label_header_profile": "Moj profil",
+ "label_header_settings": "Nastavitve raÄuna",
+ "label_button_country_empty": "DrĹžava",
+ "label_text_country": "DrĹžava",
+ "label_header_select_country": "Izberi drĹžavo",
+ "label_text_select_country_hint": "IĹĄÄi",
+ "label_button_tc": "Pogoji uporabe",
+ "label_button_logout": "Odjavi se",
+ "label_text_congrats_image": "Odpadki posneti",
+ "label_text_congrats_subtitle": "Bravo!",
+ "label_text_congrats_text": "S potrditvijo podatkov shranite toÄko.",
+ "label_header_createTP": "Ustvari odlagaliĹĄÄe",
+ "label_button_createTP_editloc": "Uredi lokacijo",
+ "label_header_edit_loc": "Uredi lokacijo",
+ "label_button_edit_loc_set": "Nastavi lokacijo odlagaliĹĄÄa",
+ "label_text_createTP_status_subtitle": "Stanje toÄke",
+ "label_text_createTP_status_text": "Äe je potreben hiter odziv (strupenost, teĹžke kovine), prosimo nastavite stanje kot nevarno.",
+ "label_text_createTP_add_photos": "Dodaj slike odpadkov",
+ "label_text_createTP_select_amount": "Izberi koliÄino odpadkov",
+ "label_text_createTP_select_type": "Izberi vrste odpadkov",
+ "label_text_createTP_add_hashtags": "Dodatni zaznamki",
+ "label_text_createTP_add_hashtags_hint": "tj. #imeznamke, #ploÄevinke",
+ "label_button_createTP_confirm_create": "Ustvari odlagaliĹĄÄe",
+ "label_alert_createTP_success": "OdlagaliĹĄÄe je bilo uspeĹĄno ustvarjeno",
+ "label_text_detailsTP_photos": "Slike odpadkov",
+ "label_text_detailsTP_amount": "KoliÄina odpadkov",
+ "label_text_detailsTP_type": "Vrste odpadkov",
+ "label_text_editTP_ask": "Ali so podatki odlagaliĹĄÄa ĹĄe vedno pravilni in aĹžurni?",
+ "label_text_editTP_letsconfirm": "Da, potrjujem",
+ "label_alert_editTP_confirm": "OdlagaliĹĄÄe je bilo uspeĹĄno potrjeno",
+ "label_text_editTP_letsedit": "Ne, uredi",
+ "label_header_editTP": "Uredi odlagaliĹĄÄe",
+ "label_button_editTP_save": "Shrani spremembe odlagaliĹĄÄa",
+ "label_alert_editTP_edit": "OdlagaliĹĄÄe je bilo uspeĹĄno posodobljeno",
+ "label_alert_editTP_delete": "OdlagaliĹĄÄe je bilo uspeĹĄno izbrisano",
+ "label_error_editTP_out_of_rng_subtitle": "Izven dosega",
+ "label_error_editTP_out_of_rng_text": "ToÄko je moĹžno urediti le, Äe ste od nje oddaljeni najveÄ 100 m.",
+ "label_error_saveTP_subtitle": "Shrani odlagaliĹĄÄe",
+ "label_error_saveTP_pic_and_type": "Obvezno je posneti vsaj eno sliko odlagaliĹĄÄa in nastaviti tip odpadkov.",
+ "label_error_saveTP_picture": "Obvezno je posneti vsaj eno sliko odlagaliĹĄÄa preden ga shranite.",
+ "label_error_saveTP_trash_type": "Obvezno je nastaviti tip odpadkov preden shranite odlagaliĹĄÄe.",
+ "label_error_change_loc_subtitle": "Izven dosega",
+ "label_error_change_loc_text": "Prosimo postavite toÄko v radiju 100 m od vaĹĄe lokacije.",
+ "label_error_generic_error_subtitle": "Izven dosega",
+ "label_error_generic_error_text": "Na streĹžniku je priĹĄlo do napake.",
+ "label_error_network_subtitle": "Ni internetne povezave",
+ "label_error_network_text": "Mobilni podatki so izkljuÄeni. VkljuÄite prenos mobilnih podatkov ali se poveĹžite na Wi-Fi omreĹžje.",
+ "label_error_location_subtitle": "OmogoÄi lokacijo",
+ "label_error_location_text": "Lokacijske storitve so izklopljene. Za uporabo aplikacije prosimo, da v nastavitvah vklopite vaĹĄ GPS.",
+ "label_error_loc_permission_text": "Dostop do lokacije ni dovoljen. Prosimo, da podate dovoljenje aplikaciji za uporabo lokacijskih storitev.",
+ "label_trash_details_header": "Podrobnosti odlagaliĹĄÄa",
+ "label_privacy_policy_header": "Varstvo zasebnosti",
+ "label_about_header": "O WCD",
+ "label_edit_trashpoint_button": "Uredi odlagaliĹĄÄe",
+ "label_100m_limit_modal": "ToÄko lahko urejate le, Äe ste od nje oddaljeni najveÄ 100 m.",
+ "label_retry_button": "Poskusi znova",
+ "label_country_picker_placeholder": "Izberi svojo drĹžavo",
+ "label_camera_permission_warning_ios": "Spremenite dovoljenje za dostop do fotoaparata. Pojdite v Nastavitve > Zasebnost > Fotoaparat",
+ "label_camera_permission_warning_android": "Spremenite dovoljenje za dostop do fotoaparata. Pojdite na Nastavitve > Aplikacije",
+ "label_camera_error_title": "Dostop do kamere je bil zavrnjen",
+ "label_error_modal_default_title": "Zlomka!",
+ "label_error_modal_default_subtitle": "RazoÄarani kit je zaznal napako na streĹžniku!",
+ "label_location_permission_warning_ios": "Spremenite dovoljenje za dostop do lokacije. Pojdite v Nastavitve> Zasebnost > Lokacijske storitve.",
+ "label_location_permission_warning_android": "Spremenite dovoljenje za dostop do lokacije. Pojdite v Nastavitve > Aplikacije.",
+ "label_location_off_warning": "Lokacijske storitve so izklopljene. Za uporabo aplikacije prosimo, da v nastavitvah vklopite vaĹĄ GPS.",
+ "label_location_modal_title": "OmogoÄi lokacijo",
+ "label_network_off_warning_title": "Ni internetne povezave",
+ "label_network_off_warning": "Mobilni podatki so izkljuÄeni. VkljuÄite prenos mobilnih podatkov ali se poveĹžite na Wi-Fi omreĹžje.",
+ "label_loading_image_text": "Skoraj tam...",
+ "label_loading_image_subtext": "Shranjujemo vaĹĄe podatke, prosimo poÄakajte.",
+ "label_create_marker_missing_photos": "Slike niso bile naloĹžene. Prosimo poskusite jih ponovno dodati.",
+ "label_edit_marker_missing_photos": "Slike niso bile naloĹžene. Prosimo poskusite jih ponovno dodati.",
+ "label_confirm_marker_missing_photos": "Slike niso bile naloĹžene. Prosimo poskusite jih ponovno dodati.",
+ "label_button_delete": "IzbriĹĄi",
+ "label_delete_photo_title": "IzbriĹĄi fotografijo",
+ "label_delete_photo_subtitle": "Ste prepriÄani, da Ĺželite izbrisati sliko? OdloÄitev bo trajna.",
+ "label_text_about_1": "Pobudnik aplikacije je Let's Do It World",
+ "label_text_about_2": "Vsi podatki, ki jih zberejo uporabniki po vsem svetu, bodo prikazani na globalni karti odpadkov za spodbujanje svetovne Äistilne akcije Svetovni dan ÄiĹĄÄenja 15. septembra 2018",
+ "label_text_about_3": "Ta aplikacije je nastala v sodelovanju z",
+ "label_text_about_4": "Estonski izdelek, sponzoriran iz strani drĹžave in vlade",
+ "label_text_about_5": "Financerji: Estonsko ministrstvo za okolje, Ministrstvo za zunanje zadeve Republike Estonije, Program 100 Republike Estonije",
+ "label_button_editTP_delete": "IzbriĹĄi odlagaliĹĄÄe",
+ "label_locked_account_warning": "VaĹĄ raÄun je zaklenjen. Za podrobnosti se obrnite na skrbnika."
}
\ No newline at end of file
diff --git a/mobile-app/src/trans/sn.json b/mobile-app/src/trans/sn.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/sn.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/son.json b/mobile-app/src/trans/son.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/son.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/sq.json b/mobile-app/src/trans/sq.json
index 83509d460e..c5c14d258d 100644
--- a/mobile-app/src/trans/sq.json
+++ b/mobile-app/src/trans/sq.json
@@ -108,7 +108,7 @@
"label_error_modal_default_subtitle": "U identifikua njĂŤ problem nĂŤ server!",
"label_location_permission_warning_ios": "Duhet tĂŤ lejoni pĂŤrcaktimin e vendndodhjes tuaj. PĂŤr ta bĂŤrĂŤ kĂŤtĂŤ, shkoni tek Settings > Privacy > Location services.",
"label_location_permission_warning_android": "Duhet tĂŤ lejoni pĂŤrcaktimin e vendndodhjes tuaj. PĂŤr ta bĂŤrĂŤ kĂŤtĂŤ, shkoni tek Settings > Apps.",
- "label_location_off_warning": "Location Services ÍshtÍ e çaktivizuar. Ju lutem aktivizoni GPS-in tek Settings pÍr tÍ pÍrdorur aplikacionin.",
+ "label_location_off_warning": "Location Services janÍ tÍ çaktivizuara. Ju lutem, aktivizoni GPS-in tek Settings pÍr tÍ pÍrdorur aplikacionin.",
"label_location_modal_title": "Aktivizo vendndodhjen",
"label_network_off_warning_title": "Nuk ka lidhje interneti",
"label_network_off_warning": "Lidhja e internetit nÍ celularin tuaj ÍshtÍ e çaktivizuar. Ju lutem, aktivizoni internetin nÍ celularit tuaj ose lidhuni me Wi-Fi pÍr tÍ pÍrdorur aplikacionin.",
diff --git a/mobile-app/src/trans/sr.json b/mobile-app/src/trans/sr.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/sr.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ss.json b/mobile-app/src/trans/ss.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ss.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/su.json b/mobile-app/src/trans/su.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/su.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/sw.json b/mobile-app/src/trans/sw.json
index 78344189bc..68f388279d 100644
--- a/mobile-app/src/trans/sw.json
+++ b/mobile-app/src/trans/sw.json
@@ -1,130 +1,130 @@
{
- "label_text_app_subtitle": "Let's clean up the world together!",
- "label_button_facebook": "Continue with Facebook",
- "label_button_google": "Continue with Google",
- "label_button_try_app": "Try out the app without account",
- "label_button_acknowledge": "Ok, got it!",
- "label_button_cancel": "Cancel",
- "label_button_continue": "Continue",
- "label_trash_status_threat": "threat",
- "label_trash_status_regular": "regular",
- "label_trash_status_cleaned": "cleaned",
- "label_trash_status_outdated": "outdated",
- "label_trash_status_user": "user",
- "label_trash_status_change_location": "changeLocation",
- "label_trash_status_state_threat": "This point is a threat!",
- "label_trash_status_state_regular": "This is a regular trashpoint.",
- "label_trash_status_state_cleaned": "This point is cleaned!",
- "label_trash_status_state_outdated": "This point is outdated!",
- "label_TP_created_date": "Created",
- "label_TP_updated_date": "Updated",
- "label_TP_by": " by ",
- "label_trash_amount_handful": "handful",
- "label_trash_amount_bagful": "bagful",
- "label_trash_amount_cartloadl": "cartload",
- "label_trash_amount_truckload": "truckload",
- "label_trash_type_plastic": "Plastic",
- "label_trash_type_metal": "Metal",
- "label_trash_type_glass": "Glass",
- "label_trash_type_electro": "Electronics",
- "label_trash_type_paper": "Paper/Wood",
- "label_trash_type_tyres": "Tyres",
- "label_trash_type_dom_waste": "Domestic waste",
- "label_trash_type_furniture": "Furniture",
- "label_trash_type_org_waste": "Organic waste",
- "label_header_tc": "Terms and Conditions",
- "label_button_tc_agree": "I agree with the Terms & Conditions",
- "label_header_map": "Map",
- "label_text_popover_subtitle": "Join other people who are mapping trash!",
- "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
- "label_header_activity": "My activity",
- "label_text_activity_empty_subtitle": "Nothing to see here!",
- "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
- "label_text_activity_empty_hint": "Add a trashpoint!",
- "label_header_notific": "Notifications",
- "label_text_notific_empty_subtitle": "Nothing to see here!",
- "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
- "label_header_profile": "My profile",
- "label_header_settings": "Account settings",
- "label_button_country_empty": "Country",
- "label_text_country": "Country",
- "label_header_select_country": "Select a country",
- "label_text_select_country_hint": "Search",
- "label_button_tc": "Terms and Conditions",
- "label_button_logout": "Log out",
- "label_text_congrats_image": "Trash captured",
- "label_text_congrats_subtitle": "Great job!",
- "label_text_congrats_text": "Now save the point by verifying the data.",
- "label_header_createTP": "Create a trashpoint",
- "label_button_createTP_editloc": "Edit location",
- "label_header_edit_loc": "Edit location",
- "label_button_edit_loc_set": "Set trashpoint location",
- "label_text_createTP_status_subtitle": "Point status",
- "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
- "label_text_createTP_add_photos": "Add trash photos",
- "label_text_createTP_select_amount": "Select trash amount",
- "label_text_createTP_select_type": "Select trash type",
- "label_text_createTP_add_hashtags": "Additional added tags",
- "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
- "label_button_createTP_confirm_create": "Create trashpoint",
- "label_alert_createTP_success": "Trashpoint successfully created",
- "label_text_detailsTP_photos": "Trash photos",
- "label_text_detailsTP_amount": "Trash amount",
- "label_text_detailsTP_type": "Trash type",
- "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
- "label_text_editTP_letsconfirm": "Yes, I confirm",
- "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
- "label_text_editTP_letsedit": "No, let's edit",
- "label_header_editTP": "Edit a trashpoint",
- "label_button_editTP_save": "Save trashpoint changes",
- "label_alert_editTP_edit": "Trashpoint successfully updated",
- "label_alert_editTP_delete": "Trashpoint successfully deleted",
- "label_error_editTP_out_of_rng_subtitle": "Out of range",
- "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
- "label_error_saveTP_subtitle": "Save trashpoint",
- "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
- "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
- "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
- "label_error_change_loc_subtitle": "Out of bounds",
- "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
- "label_error_generic_error_subtitle": "Out of bounds",
- "label_error_generic_error_text": "There was an error on the server.",
- "label_error_network_subtitle": "No network connection",
- "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_error_location_subtitle": "Enable location",
- "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
- "label_trash_details_header": "Trashpoint details",
- "label_privacy_policy_header": "Privacy Policy",
- "label_about_header": "About",
- "label_edit_trashpoint_button": "Edit trashpoint",
- "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
- "label_retry_button": "Retry",
- "label_country_picker_placeholder": "Choose your country",
- "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
- "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
- "label_camera_error_title": "Camera Access Denied",
- "label_error_modal_default_title": "Oh noes!",
- "label_error_modal_default_subtitle": "The fail whale detected a server error!",
- "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
- "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
- "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
- "label_location_modal_title": "Enable location",
- "label_network_off_warning_title": "No network connection",
- "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
- "label_loading_image_text": "Almost there...",
- "label_loading_image_subtext": "Please wait while we save your actions.",
- "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
- "label_button_delete": "Delete",
- "label_delete_photo_title": "Delete photo",
- "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
- "label_text_about_1": "This app is an initiative by Let's Do It World",
- "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
- "label_text_about_3": "This app is a joint cooperation with",
- "label_text_about_4": "Estonian product, sponsored by the country and government",
- "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
- "label_button_editTP_delete": "Delete trashpoint",
- "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+ "label_text_app_subtitle": "Tuungane pamoja tusafishe Dunia!",
+ "label_button_facebook": "Endelea na usajili wa Facebook",
+ "label_button_google": "Endelea na usajili wa Google",
+ "label_button_try_app": "Jaribu kufungua programu bila kujisajili",
+ "label_button_acknowledge": "Sawa!",
+ "label_button_cancel": "Futa",
+ "label_button_continue": "Endelea",
+ "label_trash_status_threat": "hatari",
+ "label_trash_status_regular": "kawaida",
+ "label_trash_status_cleaned": "imesafishwa",
+ "label_trash_status_outdated": "muda wa matumizi umeisha",
+ "label_trash_status_user": "mtumiaji",
+ "label_trash_status_change_location": "badili eneo",
+ "label_trash_status_state_threat": "Eneo hili ni hatari!",
+ "label_trash_status_state_regular": "Hili ni eneo lenye taka za kawaida.",
+ "label_trash_status_state_cleaned": "Eneo hili limesafishwa!",
+ "label_trash_status_state_outdated": "Eneo hili muda wake umepita!",
+ "label_TP_created_date": "Imetengenezwa",
+ "label_TP_updated_date": "Imesahihishwa",
+ "label_TP_by": " kwa ",
+ "label_trash_amount_handful": "kiganja",
+ "label_trash_amount_bagful": "mfuko",
+ "label_trash_amount_cartloadl": "mkokoteni",
+ "label_trash_amount_truckload": "lori",
+ "label_trash_type_plastic": "Plastiki",
+ "label_trash_type_metal": "Chuma",
+ "label_trash_type_glass": "Kioo",
+ "label_trash_type_electro": "Vifaa vya elektroniki",
+ "label_trash_type_paper": "Karatasi/Mbao",
+ "label_trash_type_tyres": "Tairi",
+ "label_trash_type_dom_waste": "Taka za majumbani",
+ "label_trash_type_furniture": "Samani",
+ "label_trash_type_org_waste": "Taka ozo",
+ "label_header_tc": "Vigezo na masharti",
+ "label_button_tc_agree": "Nakubaliana na vigezo na masharti",
+ "label_header_map": "Ramani",
+ "label_text_popover_subtitle": "Ungana na watu wanaochora ramani sehemu zenye taka!",
+ "label_text_popover_text": "Anza kuunda maeneo yenye taka, kufanya jamii yako safi na salama.",
+ "label_header_activity": "Historia yangu",
+ "label_text_activity_empty_subtitle": "Hamna kitu!",
+ "label_text_activity_empty_text": "Taarifa zako hazipo. Zikiwekwa, zitaorodheshwa hapa.",
+ "label_text_activity_empty_hint": "Weka eneo lenye taka!",
+ "label_header_notific": "Taarifa",
+ "label_text_notific_empty_subtitle": "Hamna kitu!",
+ "label_text_notific_empty_text": "Bado hatujaona taarifa yeyote. Ikiingia, tutakujulisha!",
+ "label_header_profile": "Taarifa zangu",
+ "label_header_settings": "Mpangilio wa akaunti",
+ "label_button_country_empty": "Nchi",
+ "label_text_country": "Nchi",
+ "label_header_select_country": "Chagua nchi",
+ "label_text_select_country_hint": "Tafuta",
+ "label_button_tc": "Vigezo na masharti",
+ "label_button_logout": "Aga",
+ "label_text_congrats_image": "Taka zimepigwa picha",
+ "label_text_congrats_subtitle": "Kazi nzuri!",
+ "label_text_congrats_text": "Sasa hifadhi eneo lenye taka kwa kuhakikisha taarifa.",
+ "label_header_createTP": "Unda eneo lenye taka",
+ "label_button_createTP_editloc": "Hariri eneo",
+ "label_header_edit_loc": "Hariri eneo",
+ "label_button_edit_loc_set": "Weka eneo lenye taka",
+ "label_text_createTP_status_subtitle": "Hali ya eneo",
+ "label_text_createTP_status_text": "Kama hatua za haraka zinahitajika (sumu, metali nzito), Tafadhali weka alama ya hatari.",
+ "label_text_createTP_add_photos": "Ongeza picha ya takataka",
+ "label_text_createTP_select_amount": "Chagua kiwango cha taka",
+ "label_text_createTP_select_type": "Chagua aina ya taka",
+ "label_text_createTP_add_hashtags": "Ongeza nembo ya ziada",
+ "label_text_createTP_add_hashtags_hint": "mfano. #jinalakampuni, #kopo",
+ "label_button_createTP_confirm_create": "Unda eneo lenye taka",
+ "label_alert_createTP_success": "Eneo lenye taka limefanikiwa kuundwa",
+ "label_text_detailsTP_photos": "Picha ya takataka",
+ "label_text_detailsTP_amount": "Kiasi cha taka",
+ "label_text_detailsTP_type": "Aina ya taka",
+ "label_text_editTP_ask": "Je, taarifa ya eneo lenye taka bado ni sahihi na imesahihishwa?",
+ "label_text_editTP_letsconfirm": "Ndio, Nathibitisha",
+ "label_alert_editTP_confirm": "Eneo lenye taka limefanikiwa kuthibitishwa",
+ "label_text_editTP_letsedit": "Hapana, hebu turekebishe",
+ "label_header_editTP": "Hariri eneo lenye taka",
+ "label_button_editTP_save": "Hifadhi mabadiliko ya eneo lenye taka",
+ "label_alert_editTP_edit": "Eneo lenye taka limefanikiwa kusahihishwa",
+ "label_alert_editTP_delete": "Eneo lenye taka limefanikiwa kufutwa",
+ "label_error_editTP_out_of_rng_subtitle": "Haipatikani",
+ "label_error_editTP_out_of_rng_text": "Unaweza kuhariri eneo lenye taka ukiwa mita 100 toka kwenye eneo hilo.",
+ "label_error_saveTP_subtitle": "Hifadhi eneo lenye taka",
+ "label_error_saveTP_pic_and_type": "Ni muhimu kuweka picha angalau moja ya eneo lenye taka na kuchagua aina ya taka.",
+ "label_error_saveTP_picture": "Ni muhimu kuweka picha angalau moja ya eneo lenye taka na kuchagua aina ya taka.",
+ "label_error_saveTP_trash_type": "Ni muhimu kuweka picha angalau moja ya eneo lenye taka na kuchagua aina ya taka.",
+ "label_error_change_loc_subtitle": "Uko mbali na eneo lenye taka",
+ "label_error_change_loc_text": "Tafadhali weka eneo lenye taka ukiwa ndani ya mita 100 kutoka kwenye eneo hilo.",
+ "label_error_generic_error_subtitle": "Uko mbali na eneo lenye taka",
+ "label_error_generic_error_text": "Kulikuwa na kosa katika mtandao.",
+ "label_error_network_subtitle": "Hakuna mtandao uliounganishwa",
+ "label_error_network_text": "Simu yako haijaunganishwa na intaneti, washa intaneti au unganisha simu yako na Wi-Fi ili utumie programu.",
+ "label_error_location_subtitle": "Ruhusu GPS kwenye simu yako",
+ "label_error_location_text": "Huduma ya GPS imefungwa, Tafadhari washa GPS yako kwenye mipangilio kwa kutumia programu.",
+ "label_error_loc_permission_text": "Huduma za GPS haziruhusiwi. Tafadhali waruhusu ili waweze kutumia programu.",
+ "label_trash_details_header": "Maelezo ya eneo lenye taka",
+ "label_privacy_policy_header": "Masharti binafsi",
+ "label_about_header": "Kuhusu",
+ "label_edit_trashpoint_button": "Hariri eneo lenye taka",
+ "label_100m_limit_modal": "Unaweza kuhariri eneo lenye taka ukiwa mita 100 toka kwenye eneo hilo.",
+ "label_retry_button": "Jaribu tena",
+ "label_country_picker_placeholder": "Chagua nchi yako",
+ "label_camera_permission_warning_ios": "Badili mpangilio wa kamera. Kufanya hivyo, nenda sehemu ya setting >Privacy >camera",
+ "label_camera_permission_warning_android": "Badili mpangilio wa kamera. Kufanya hivyo, nenda sehemu ya setting >Privacy >camera",
+ "label_camera_error_title": "Kamera haipatikani",
+ "label_error_modal_default_title": "Hapana!",
+ "label_error_modal_default_subtitle": "Huduma haipatikani kwa sasa!",
+ "label_location_permission_warning_ios": "Badili mpangilio wa GPS. Kufanya hivyo, nenda sehemu ya setting >Privacy >Location service.",
+ "label_location_permission_warning_android": "Badili mpangilio wa GPS. Kufanya hivyo, nenda sehemu ya setting >Privacy >Location service.",
+ "label_location_off_warning": "Huduma ya GPS imefungwa, Tafadhari washa GPS yako kwenye mipangilio kwa kutumia programu.",
+ "label_location_modal_title": "Ruhusu GPS kwenye simu yako",
+ "label_network_off_warning_title": "Hakuna mtandao uliounganishwa",
+ "label_network_off_warning": "Simu yako haijaunganishwa na intaneti, washa intaneti au unganisha simu yako na Wi-Fi ili utumie programu.",
+ "label_loading_image_text": "Subiri kidogo...",
+ "label_loading_image_subtext": "Tafadhari subiri. Tunathibitisha taarifa zako.",
+ "label_create_marker_missing_photos": "Picha hazijafanikiwa kuwekwa kwenye mtandao, Tafadhari jaribu tena.",
+ "label_edit_marker_missing_photos": "Picha hazijafanikiwa kuwekwa kwenye mtandao, Tafadhari jaribu tena.",
+ "label_confirm_marker_missing_photos": "Picha hazijafanikiwa kuwekwa kwenye mtandao, Tafadhari jaribu tena.",
+ "label_button_delete": "Futa",
+ "label_delete_photo_title": "Futa picha",
+ "label_delete_photo_subtitle": "Una uhakika kwamba unahitaji kufuta hii picha? ikifutika huwezi kuirudisha tena.",
+ "label_text_about_1": "Programu hii ni mpango wa Let's Do It World",
+ "label_text_about_2": "Taarifa zote zitakazo kusanywa na watumiaji duniani kote zitaoneshwa kwenye ramani kubwa ya taka ya dunia, ili kuanzisha harakati za kusafisha dunia kwenye tukio kubwa la kusafisha dunia, tarehe 15 Septemba 2018",
+ "label_text_about_3": "Programu hii ni ushirikiano wa",
+ "label_text_about_4": "Estonia product, umedhaminiwa na nchi na serikali",
+ "label_text_about_5": "Wadhamini: Wizara ya mazingira ya Estonia, Wizara ya mambo ya kigeni ya Jamhuri ya Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Futa eneo lenye taka",
+ "label_locked_account_warning": "Akaunti yako imefungwa. Kwa taarifa zaidi wasiliana na uongozi."
}
\ No newline at end of file
diff --git a/mobile-app/src/trans/syc.json b/mobile-app/src/trans/syc.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/syc.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ta.json b/mobile-app/src/trans/ta.json
index 78a9468906..68f388279d 100644
--- a/mobile-app/src/trans/ta.json
+++ b/mobile-app/src/trans/ta.json
@@ -108,8 +108,8 @@
"label_error_modal_default_subtitle": "Huduma haipatikani kwa sasa!",
"label_location_permission_warning_ios": "Badili mpangilio wa GPS. Kufanya hivyo, nenda sehemu ya setting >Privacy >Location service.",
"label_location_permission_warning_android": "Badili mpangilio wa GPS. Kufanya hivyo, nenda sehemu ya setting >Privacy >Location service.",
- "label_location_off_warning": "Huduma ya GPS imefungwa, Tafadhari washa GPS yako kwenye kibadilishio kwa kutumia programu.",
- "label_location_modal_title": "Washa GPS.",
+ "label_location_off_warning": "Huduma ya GPS imefungwa, Tafadhari washa GPS yako kwenye mipangilio kwa kutumia programu.",
+ "label_location_modal_title": "Ruhusu GPS kwenye simu yako",
"label_network_off_warning_title": "Hakuna mtandao uliounganishwa",
"label_network_off_warning": "Simu yako haijaunganishwa na intaneti, washa intaneti au unganisha simu yako na Wi-Fi ili utumie programu.",
"label_loading_image_text": "Subiri kidogo...",
diff --git a/mobile-app/src/trans/tay.json b/mobile-app/src/trans/tay.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/tay.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ti.json b/mobile-app/src/trans/ti.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ti.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/tl.json b/mobile-app/src/trans/tl.json
index b815b23dc6..6bd9412f7a 100644
--- a/mobile-app/src/trans/tl.json
+++ b/mobile-app/src/trans/tl.json
@@ -108,15 +108,15 @@
"label_error_modal_default_subtitle": "Nakapansin ng serber error ang fail whale!",
"label_location_permission_warning_ios": "Kailangan mong baguhin ang mga pahintulot sa lakasyon. Upang magawa ito, pumunta sa Settings >Privacy > Location services.",
"label_location_permission_warning_android": "Kailangan mong baguhin ang mga pahintulot sa lokasyon. Upang magawa ito, pumunta sa Settings > Apps.",
- "label_location_off_warning": "Nakapatay ang Location Services. Mangyari lamang na paganahin ang iyong GPS sa iyong Settings upang magamit ang application.",
- "label_location_modal_title": "Paganahin ang lokasyon",
+ "label_location_off_warning": "Nakapatay ang iyong Location Services. Paganagin ang iyong GPS sa iyong Settings upang magamit ang application.",
+ "label_location_modal_title": "Paganahin ang Location",
"label_network_off_warning_title": "Walang koneksyon sa network",
- "label_network_off_warning": "Nakapatay ang mobile data. Paganahin ang mobile data o di kaya'y ikonekta sa Wi-Fi ang iyong telepono upang magamit ang application.",
+ "label_network_off_warning": "Hindi naka-on ang mobile data. I-on ang mobile data o di kaya'y ikonekta sa Wi-Fi ang iyong telepono upang magamit ang application.",
"label_loading_image_text": "Halos tapos na...",
"label_loading_image_subtext": "Mangyari lamang maghintay habang sini-save namin ang iyong mga nagawa.",
"label_create_marker_missing_photos": "Hindi ma-upload ang mga marker photos. Mangyari lamang na subukan itong idadagdag muli.",
- "label_edit_marker_missing_photos": "Hindi ma-upload ang mga marker photos. Mangyari lamang na subukan itong idagdag muli.",
- "label_confirm_marker_missing_photos": "Hindi ma-upload ang mga marker photos. Mangyari lamang na subukan itong idagdag muli.",
+ "label_edit_marker_missing_photos": "Hindi ma-upload ang mga marker photos. Mangyari lamang na subukan itong idadagdag muli.",
+ "label_confirm_marker_missing_photos": "Hindi ma-upload ang mga marker photos. Mangyari lamang na subukan itong idadagdag muli.",
"label_button_delete": "Burahin",
"label_delete_photo_title": "Burahin ang litrato",
"label_delete_photo_subtitle": "Sigurado ka bang gusto mong burahin ang litrato. Hindi mo na ito maibabalik.",
diff --git a/mobile-app/src/trans/tlh.json b/mobile-app/src/trans/tlh.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/tlh.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/tr.json b/mobile-app/src/trans/tr.json
index 69524ebc65..2e811db4ed 100644
--- a/mobile-app/src/trans/tr.json
+++ b/mobile-app/src/trans/tr.json
@@ -1,6 +1,6 @@
{
"label_text_app_subtitle": "Hadi hep beraber dĂźnyayÄą temizleyelim!",
- "label_button_facebook": "Facebookâla",
+ "label_button_facebook": "Facebookâla devam et ",
"label_button_google": "Googleâla devam et",
"label_button_try_app": "UygulamayÄą hesapla giriĹ yapmadan dene",
"label_button_acknowledge": "Tamam, anladÄąm!",
@@ -8,15 +8,15 @@
"label_button_continue": "Devam et",
"label_trash_status_threat": "tehdit",
"label_trash_status_regular": "dĂźzenli",
- "label_trash_status_cleaned": "temiz",
- "label_trash_status_outdated": "eski",
+ "label_trash_status_cleaned": "temizlenmis",
+ "label_trash_status_outdated": "eskimis",
"label_trash_status_user": "kullanÄącÄą",
- "label_trash_status_change_location": "konum deÄiĹtir",
+ "label_trash_status_change_location": "konumu deÄiĹtir",
"label_trash_status_state_threat": "Bu nokta bir tehdittir!",
- "label_trash_status_state_regular": "BirasĹ devamlĹ bir çÜp alanĹ.",
+ "label_trash_status_state_regular": "BirasĹ devamlĹ bir çÜp alanĹdĹr.",
"label_trash_status_state_cleaned": "Bu alan temizlendi!",
"label_trash_status_state_outdated": "Bu nokta gĂźncel deÄil!",
- "label_TP_created_date": "OluĹturulan",
+ "label_TP_created_date": "OluĹturulmuĹ",
"label_TP_updated_date": "GĂźncellendi",
"label_TP_by": " tarafÄąndan ",
"label_trash_amount_handful": "bir avuç",
@@ -36,11 +36,11 @@
"label_button_tc_agree": "ĹartlarÄą ve koĹullarÄą kabul ediyorum",
"label_header_map": "Harita",
"label_text_popover_subtitle": "ĂĂśp haritalayan diÄer kiĹilere katÄąlÄąn!",
- "label_text_popover_text": "TopluluÄunuzu daha temiz ve saÄlÄąklÄą hale getirmek için çÜp puanÄą oluĹturmaya baĹlayÄąn.",
+ "label_text_popover_text": "TopluluÄunuzu daha temiz ve saÄlÄąklÄą hale getirmek için çÜp alanÄą oluĹturmaya baĹlayÄąn.",
"label_header_activity": "Benim etkinliÄim",
"label_text_activity_empty_subtitle": "Burada gĂśrecek bir Ĺey yok!",
- "label_text_activity_empty_text": "Henßz herhangi bir çÜp puanĹ eklemediniz. Ne zaman yaparsan, burada listelenecekler.",
- "label_text_activity_empty_hint": "ĂĂśp kutusu ekleyin!",
+ "label_text_activity_empty_text": "Henßz herhangi bir çÜp alanĹ eklemediniz. Ne zaman yaparsan, burada listelenecekler.",
+ "label_text_activity_empty_hint": "ĂĂśp alanÄą ekleyin!",
"label_header_notific": "Bildirimler",
"label_text_notific_empty_subtitle": "Burada gĂśrecek bir Ĺey yok!",
"label_text_notific_empty_text": "HenĂźz bir bildirim gelmediÄini gĂśrĂźyoruz, ancak ne zaman yaptÄąÄÄąmÄąz konusunda sizi bilgilendiririz!",
@@ -50,12 +50,12 @@
"label_text_country": "Ălke",
"label_header_select_country": "Bir ßlke seçin",
"label_text_select_country_hint": "Arama",
- "label_button_tc": "Ĺartlar ve koĹullar",
+ "label_button_tc": "Ĺartlar be koĹullar",
"label_button_logout": "ĂÄąkÄąĹ",
"label_text_congrats_image": "Yakalanan çÜp",
"label_text_congrats_subtitle": "Harika iĹ!",
"label_text_congrats_text": "Ĺimdi verileri doÄrulayarak noktayÄą kaydedin.",
- "label_header_createTP": "ĂĂśp kutusu yarat",
+ "label_header_createTP": "ĂĂśp noktasÄą yarat",
"label_button_createTP_editloc": "Konumu DĂźzenle",
"label_header_edit_loc": "Konumu DĂźzenle",
"label_button_edit_loc_set": "ĂĂśp yeri konumunu ayarla",
diff --git a/mobile-app/src/trans/ts.json b/mobile-app/src/trans/ts.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ts.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/tt.json b/mobile-app/src/trans/tt.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/tt.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/tw.json b/mobile-app/src/trans/tw.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/tw.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/tzl.json b/mobile-app/src/trans/tzl.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/tzl.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/uk.json b/mobile-app/src/trans/uk.json
index 91b9214117..7b37a6f3f2 100644
--- a/mobile-app/src/trans/uk.json
+++ b/mobile-app/src/trans/uk.json
@@ -1,5 +1,5 @@
{
- "label_text_app_subtitle": "ĐŃОйŃПО ŃвŃŃ ŃиŃŃŃŃĐľ ŃаСОП!",
+ "label_text_app_subtitle": "ĐŃОйиПО ŃвŃŃ ŃиŃŃиП ŃаСОП!",
"label_button_facebook": "УвŃĐšŃи ŃĐľŃоС Facebook",
"label_button_google": "УвŃĐšŃи ŃĐľŃоС Google",
"label_button_try_app": "ĐŃОдОвМиŃи йоС аккаŃĐ˝ŃŃ",
diff --git a/mobile-app/src/trans/uz.json b/mobile-app/src/trans/uz.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/uz.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/val.json b/mobile-app/src/trans/val.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/val.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/ve.json b/mobile-app/src/trans/ve.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/ve.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/vi.json b/mobile-app/src/trans/vi.json
index 37555fd894..b226029662 100644
--- a/mobile-app/src/trans/vi.json
+++ b/mobile-app/src/trans/vi.json
@@ -50,7 +50,7 @@
"label_text_country": "Quáťc gia",
"label_header_select_country": "Cháťn máťt quáťc gia",
"label_text_select_country_hint": "TĂŹm kiáşżm",
- "label_button_tc": "Äiáťu khoản vĂ Äiáťu kiáťn",
+ "label_button_tc": "Äiáťu khoản & Äiáťu kiáťn",
"label_button_logout": "ÄÄng xuẼt",
"label_text_congrats_image": "ÄĂŁ thu gom rĂĄc",
"label_text_congrats_subtitle": "Tuyáťt váťi!",
@@ -115,8 +115,8 @@
"label_loading_image_text": "Gần như sẾn sà ng...",
"label_loading_image_subtext": "Xin vui lòng cháť trong khi chĂşng tĂ´i lĆ°u hĂ nh Äáťng cᝧa bấn.",
"label_create_marker_missing_photos": "KhĂ´ng Äưᝣc tải lĂŞn hĂŹnh ảnh cĂł ÄĂĄnh dẼu. HĂŁy tháť thĂŞm máťt lần nᝯa.",
- "label_edit_marker_missing_photos": "HĂŹnh ảnh cĂł ÄĂĄnh dẼu sáş˝ khĂ´ng tháť tải lĂŞn Äưᝣc. HĂŁy tháť thĂŞm máťt lần nᝯa.",
- "label_confirm_marker_missing_photos": "HĂŹnh ảnh cĂł ÄĂĄnh dẼu sáş˝ khĂ´ng tháť tải lĂŞn Äưᝣc. HĂŁy tháť thĂŞm máťt lần nᝯa.",
+ "label_edit_marker_missing_photos": "KhĂ´ng Äưᝣc tải lĂŞn hĂŹnh ảnh cĂł ÄĂĄnh dẼu. HĂŁy tháť thĂŞm máťt lần nᝯa.",
+ "label_confirm_marker_missing_photos": "KhĂ´ng Äưᝣc tải lĂŞn hĂŹnh ảnh cĂł ÄĂĄnh dẼu. HĂŁy tháť thĂŞm máťt lần nᝯa.",
"label_button_delete": "XĂła báť",
"label_delete_photo_title": "Xóa ảnh",
"label_delete_photo_subtitle": "Bấn cĂł chắc chắn muáťn xĂła hĂŹnh ảnh khĂ´ng? Bấn khĂ´ng tháť hoĂ n tĂĄc viáťc nĂ y.",
diff --git a/mobile-app/src/trans/wa.json b/mobile-app/src/trans/wa.json
new file mode 100644
index 0000000000..78344189bc
--- /dev/null
+++ b/mobile-app/src/trans/wa.json
@@ -0,0 +1,130 @@
+{
+ "label_text_app_subtitle": "Let's clean up the world together!",
+ "label_button_facebook": "Continue with Facebook",
+ "label_button_google": "Continue with Google",
+ "label_button_try_app": "Try out the app without account",
+ "label_button_acknowledge": "Ok, got it!",
+ "label_button_cancel": "Cancel",
+ "label_button_continue": "Continue",
+ "label_trash_status_threat": "threat",
+ "label_trash_status_regular": "regular",
+ "label_trash_status_cleaned": "cleaned",
+ "label_trash_status_outdated": "outdated",
+ "label_trash_status_user": "user",
+ "label_trash_status_change_location": "changeLocation",
+ "label_trash_status_state_threat": "This point is a threat!",
+ "label_trash_status_state_regular": "This is a regular trashpoint.",
+ "label_trash_status_state_cleaned": "This point is cleaned!",
+ "label_trash_status_state_outdated": "This point is outdated!",
+ "label_TP_created_date": "Created",
+ "label_TP_updated_date": "Updated",
+ "label_TP_by": " by ",
+ "label_trash_amount_handful": "handful",
+ "label_trash_amount_bagful": "bagful",
+ "label_trash_amount_cartloadl": "cartload",
+ "label_trash_amount_truckload": "truckload",
+ "label_trash_type_plastic": "Plastic",
+ "label_trash_type_metal": "Metal",
+ "label_trash_type_glass": "Glass",
+ "label_trash_type_electro": "Electronics",
+ "label_trash_type_paper": "Paper/Wood",
+ "label_trash_type_tyres": "Tyres",
+ "label_trash_type_dom_waste": "Domestic waste",
+ "label_trash_type_furniture": "Furniture",
+ "label_trash_type_org_waste": "Organic waste",
+ "label_header_tc": "Terms and Conditions",
+ "label_button_tc_agree": "I agree with the Terms & Conditions",
+ "label_header_map": "Map",
+ "label_text_popover_subtitle": "Join other people who are mapping trash!",
+ "label_text_popover_text": "Start creating trashpoints to make your community cleaner and healthier.",
+ "label_header_activity": "My activity",
+ "label_text_activity_empty_subtitle": "Nothing to see here!",
+ "label_text_activity_empty_text": "You haven't added any trashpoints yet. When you do, they will be listed here.",
+ "label_text_activity_empty_hint": "Add a trashpoint!",
+ "label_header_notific": "Notifications",
+ "label_text_notific_empty_subtitle": "Nothing to see here!",
+ "label_text_notific_empty_text": "We haven't seen any notifications come in yet, but we'll let you know when we do!",
+ "label_header_profile": "My profile",
+ "label_header_settings": "Account settings",
+ "label_button_country_empty": "Country",
+ "label_text_country": "Country",
+ "label_header_select_country": "Select a country",
+ "label_text_select_country_hint": "Search",
+ "label_button_tc": "Terms and Conditions",
+ "label_button_logout": "Log out",
+ "label_text_congrats_image": "Trash captured",
+ "label_text_congrats_subtitle": "Great job!",
+ "label_text_congrats_text": "Now save the point by verifying the data.",
+ "label_header_createTP": "Create a trashpoint",
+ "label_button_createTP_editloc": "Edit location",
+ "label_header_edit_loc": "Edit location",
+ "label_button_edit_loc_set": "Set trashpoint location",
+ "label_text_createTP_status_subtitle": "Point status",
+ "label_text_createTP_status_text": "If a quick action is needed (toxic, heavy metals), please set as threat.",
+ "label_text_createTP_add_photos": "Add trash photos",
+ "label_text_createTP_select_amount": "Select trash amount",
+ "label_text_createTP_select_type": "Select trash type",
+ "label_text_createTP_add_hashtags": "Additional added tags",
+ "label_text_createTP_add_hashtags_hint": "ie. #brandname, #cans",
+ "label_button_createTP_confirm_create": "Create trashpoint",
+ "label_alert_createTP_success": "Trashpoint successfully created",
+ "label_text_detailsTP_photos": "Trash photos",
+ "label_text_detailsTP_amount": "Trash amount",
+ "label_text_detailsTP_type": "Trash type",
+ "label_text_editTP_ask": "Is this trashpoint information still correct and up to date?",
+ "label_text_editTP_letsconfirm": "Yes, I confirm",
+ "label_alert_editTP_confirm": "Trashpoint successfully confirmed",
+ "label_text_editTP_letsedit": "No, let's edit",
+ "label_header_editTP": "Edit a trashpoint",
+ "label_button_editTP_save": "Save trashpoint changes",
+ "label_alert_editTP_edit": "Trashpoint successfully updated",
+ "label_alert_editTP_delete": "Trashpoint successfully deleted",
+ "label_error_editTP_out_of_rng_subtitle": "Out of range",
+ "label_error_editTP_out_of_rng_text": "A point can only be edx`ited if you are within 100 meters of it.",
+ "label_error_saveTP_subtitle": "Save trashpoint",
+ "label_error_saveTP_pic_and_type": "It's more useful for us if you to take at least one picture of the trashpoint and set its trash type.",
+ "label_error_saveTP_picture": "It's more useful for us if you to take at least one picture of the trashpoint before saving.",
+ "label_error_saveTP_trash_type": "It's more useful for us if you set the trashpoint's type before saving.",
+ "label_error_change_loc_subtitle": "Out of bounds",
+ "label_error_change_loc_text": "Please place a point within 100 meters of your location.",
+ "label_error_generic_error_subtitle": "Out of bounds",
+ "label_error_generic_error_text": "There was an error on the server.",
+ "label_error_network_subtitle": "No network connection",
+ "label_error_network_text": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_error_location_subtitle": "Enable location",
+ "label_error_location_text": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_error_loc_permission_text": "Location Services are not permitted. Please allow them in order to use the application.",
+ "label_trash_details_header": "Trashpoint details",
+ "label_privacy_policy_header": "Privacy Policy",
+ "label_about_header": "About",
+ "label_edit_trashpoint_button": "Edit trashpoint",
+ "label_100m_limit_modal": "A point can only be edited if you are within 100 meters of it.",
+ "label_retry_button": "Retry",
+ "label_country_picker_placeholder": "Choose your country",
+ "label_camera_permission_warning_ios": "You must change camera access permissions. To do this, go to Settings > Privacy > Camera",
+ "label_camera_permission_warning_android": "You must change camera access permissions. To do this, go to Settings > Apps",
+ "label_camera_error_title": "Camera Access Denied",
+ "label_error_modal_default_title": "Oh noes!",
+ "label_error_modal_default_subtitle": "The fail whale detected a server error!",
+ "label_location_permission_warning_ios": "You must change location permissions. To do this, go to Settings > Privacy > Location services.",
+ "label_location_permission_warning_android": "You must change location permissions. To do this, go to Settings > Apps.",
+ "label_location_off_warning": "Location Services are turned off. Please enable your GPS in your Settings to use the application.",
+ "label_location_modal_title": "Enable location",
+ "label_network_off_warning_title": "No network connection",
+ "label_network_off_warning": "Mobile data is disabled. Enable mobile data or connect your phone to Wi-Fi to use the application.",
+ "label_loading_image_text": "Almost there...",
+ "label_loading_image_subtext": "Please wait while we save your actions.",
+ "label_create_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_edit_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_confirm_marker_missing_photos": "The marker photos could not be uploaded. Please try adding them again.",
+ "label_button_delete": "Delete",
+ "label_delete_photo_title": "Delete photo",
+ "label_delete_photo_subtitle": "Are you sure you want to delete the photo? You cannot undo this.",
+ "label_text_about_1": "This app is an initiative by Let's Do It World",
+ "label_text_about_2": "All the data collected by users worldwide will be visualised in the global trash map for initiating worldwide clean-up events on World Cleanup Day, 15 September 2018",
+ "label_text_about_3": "This app is a joint cooperation with",
+ "label_text_about_4": "Estonian product, sponsored by the country and government",
+ "label_text_about_5": "Funders: Estonian Ministry of Environment, The Ministry of Foreign Affairs of the Republic of Estonia, Estonian Republic 100 program",
+ "label_button_editTP_delete": "Delete trashpoint",
+ "label_locked_account_warning": "Your account is locked. For details contact an administrator."
+}
\ No newline at end of file
diff --git a/mobile-app/src/trans/zh.json b/mobile-app/src/trans/zh.json
index b6cdde2e8e..e9c110b84d 100644
--- a/mobile-app/src/trans/zh.json
+++ b/mobile-app/src/trans/zh.json
@@ -111,7 +111,7 @@
"label_location_off_warning": "ä˝ç˝Žćĺ塲ééăčŤĺ¨ć¨çč¨ç˝Žä¸ĺç¨ GPS 䝼使ç¨čŠ˛ćç¨ç¨ĺźă",
"label_location_modal_title": "ĺç¨ä˝ç˝Ž",
"label_network_off_warning_title": "çĄçś˛čˇŻéŁćĽ",
- "label_network_off_warning": "秝ĺčłć袍çŚç¨ăčŤĺç¨ç§ťĺčłććĺ°ććŠéŁćĽĺ° wi-fi 䝼使ç¨čŠ˛ćç¨ç¨ĺźă",
+ "label_network_off_warning": "秝ĺčłć袍çŚç¨ăĺç¨ç§ťĺčłććĺ°ććŠéŁćĽĺ° wi-fi 䝼使ç¨čŠ˛ćç¨ç¨ĺźă",
"label_loading_image_text": "ĺžĺżŤĺŽć...",
"label_loading_image_subtext": "čŤç¨ĺ, ćĺäżĺć¨çćä˝ă",
"label_create_marker_missing_photos": "çĄćłä¸čźć¨č¨çç §çăčŤé芌",
diff --git a/module-lucius/yarn.lock b/module-lucius/yarn.lock
index 4dbafa33d0..fb57ccd13a 100644
--- a/module-lucius/yarn.lock
+++ b/module-lucius/yarn.lock
@@ -2,45 +2,3 @@
# yarn lockfile v1
-async@~1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9"
-
-colors@1.0.x:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b"
-
-cycle@1.0.x:
- version "1.0.3"
- resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2"
-
-eyes@0.1.x:
- version "0.1.8"
- resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0"
-
-isstream@0.1.x:
- version "0.1.2"
- resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
-
-moment@^2.18.1:
- version "2.18.1"
- resolved "https://registry.yarnpkg.com/moment/-/moment-2.18.1.tgz#c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f"
-
-stack-trace@0.0.x:
- version "0.0.10"
- resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0"
-
-uuid@^3.1.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04"
-
-winston@^2.3.1:
- version "2.3.1"
- resolved "https://registry.yarnpkg.com/winston/-/winston-2.3.1.tgz#0b48420d978c01804cf0230b648861598225a119"
- dependencies:
- async "~1.0.0"
- colors "1.0.x"
- cycle "1.0.x"
- eyes "0.1.x"
- isstream "0.1.x"
- stack-trace "0.0.x"
diff --git a/web-app/.env.development b/web-app/.env.development
index dc0aabfd0b..78a89b2e61 100644
--- a/web-app/.env.development
+++ b/web-app/.env.development
@@ -1 +1,2 @@
-API_URL=http://localhost:50000/api/v1
\ No newline at end of file
+API_URL=http://localhost:50000/api/v1
+#REACT_APP_LOCAL_API=http://localhost:50000/api/v1
diff --git a/web-app/README.md b/web-app/README.md
index a04686c9ce..9e9cf9553e 100644
--- a/web-app/README.md
+++ b/web-app/README.md
@@ -1,1901 +1,34 @@
-This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).
+# Basics
-Below you will find some information on how to perform common tasks.
-You can find the most recent version of this guide [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md).
-
-## Table of Contents
-
-- [Updating to New Releases](#updating-to-new-releases)
-- [Sending Feedback](#sending-feedback)
-- [Folder Structure](#folder-structure)
-- [Available Scripts](#available-scripts)
- - [npm start](#npm-start)
- - [npm test](#npm-test)
- - [npm run build](#npm-run-build)
- - [npm run eject](#npm-run-eject)
-- [Supported Language Features and Polyfills](#supported-language-features-and-polyfills)
-- [Syntax Highlighting in the Editor](#syntax-highlighting-in-the-editor)
-- [Displaying Lint Output in the Editor](#displaying-lint-output-in-the-editor)
-- [Debugging in the Editor](#debugging-in-the-editor)
-- [Changing the Page ``](#changing-the-page-title)
-- [Installing a Dependency](#installing-a-dependency)
-- [Importing a Component](#importing-a-component)
-- [Code Splitting](#code-splitting)
-- [Adding a Stylesheet](#adding-a-stylesheet)
-- [Post-Processing CSS](#post-processing-css)
-- [Adding a CSS Preprocessor (Sass, Less etc.)](#adding-a-css-preprocessor-sass-less-etc)
-- [Adding Images, Fonts, and Files](#adding-images-fonts-and-files)
-- [Using the `public` Folder](#using-the-public-folder)
- - [Changing the HTML](#changing-the-html)
- - [Adding Assets Outside of the Module System](#adding-assets-outside-of-the-module-system)
- - [When to Use the `public` Folder](#when-to-use-the-public-folder)
-- [Using Global Variables](#using-global-variables)
-- [Adding Bootstrap](#adding-bootstrap)
- - [Using a Custom Theme](#using-a-custom-theme)
-- [Adding Flow](#adding-flow)
-- [Adding Custom Environment Variables](#adding-custom-environment-variables)
- - [Referencing Environment Variables in the HTML](#referencing-environment-variables-in-the-html)
- - [Adding Temporary Environment Variables In Your Shell](#adding-temporary-environment-variables-in-your-shell)
- - [Adding Development Environment Variables In `.env`](#adding-development-environment-variables-in-env)
-- [Can I Use Decorators?](#can-i-use-decorators)
-- [Integrating with an API Backend](#integrating-with-an-api-backend)
- - [Node](#node)
- - [Ruby on Rails](#ruby-on-rails)
-- [Proxying API Requests in Development](#proxying-api-requests-in-development)
- - ["Invalid Host Header" Errors After Configuring Proxy](#invalid-host-header-errors-after-configuring-proxy)
- - [Configuring the Proxy Manually](#configuring-the-proxy-manually)
-- [Using HTTPS in Development](#using-https-in-development)
-- [Generating Dynamic `` Tags on the Server](#generating-dynamic-meta-tags-on-the-server)
-- [Pre-Rendering into Static HTML Files](#pre-rendering-into-static-html-files)
-- [Injecting Data from the Server into the Page](#injecting-data-from-the-server-into-the-page)
-- [Running Tests](#running-tests)
- - [Filename Conventions](#filename-conventions)
- - [Command Line Interface](#command-line-interface)
- - [Version Control Integration](#version-control-integration)
- - [Writing Tests](#writing-tests)
- - [Testing Components](#testing-components)
- - [Using Third Party Assertion Libraries](#using-third-party-assertion-libraries)
- - [Initializing Test Environment](#initializing-test-environment)
- - [Focusing and Excluding Tests](#focusing-and-excluding-tests)
- - [Coverage Reporting](#coverage-reporting)
- - [Continuous Integration](#continuous-integration)
- - [Disabling jsdom](#disabling-jsdom)
- - [Snapshot Testing](#snapshot-testing)
- - [Editor Integration](#editor-integration)
-- [Making a Progressive Web App](#making-a-progressive-web-app)
- - [Offline-First Considerations](#offline-first-considerations)
- - [Progressive Web App Metadata](#progressive-web-app-metadata)
-- [Deployment](#deployment)
- - [Static Server](#static-server)
- - [Other Solutions](#other-solutions)
- - [Serving Apps with Client-Side Routing](#serving-apps-with-client-side-routing)
- - [Building for Relative Paths](#building-for-relative-paths)
- - [Azure](#azure)
- - [Firebase](#firebase)
- - [GitHub Pages](#github-pages)
- - [Heroku](#heroku)
- - [Modulus](#modulus)
- - [Netlify](#netlify)
- - [Now](#now)
- - [S3 and CloudFront](#s3-and-cloudfront)
- - [Surge](#surge)
-- [Advanced Configuration](#advanced-configuration)
-- [Troubleshooting](#troubleshooting)
- - [`npm start` doesnât detect changes](#npm-start-doesnt-detect-changes)
- - [`npm test` hangs on macOS Sierra](#npm-test-hangs-on-macos-sierra)
- - [`npm run build` silently fails](#npm-run-build-silently-fails)
- - [`npm run build` fails on Heroku](#npm-run-build-fails-on-heroku)
- - [Moment.js locales are missing](#momentjs-locales-are-missing)
-- [Something Missing?](#something-missing)
-
-## Updating to New Releases
-
-Create React App is divided into two packages:
-
-* `create-react-app` is a global command-line utility that you use to create new projects.
-* `react-scripts` is a development dependency in the generated projects (including this one).
-
-You almost never need to update `create-react-app` itself: it delegates all the setup to `react-scripts`.
-
-When you run `create-react-app`, it always creates the project with the latest version of `react-scripts` so youâll get all the new features and improvements in newly created apps automatically.
-
-To update an existing project to a new version of `react-scripts`, [open the changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md), find the version youâre currently on (check `package.json` in this folder if youâre not sure), and apply the migration instructions for the newer versions.
-
-In most cases bumping the `react-scripts` version in `package.json` and running `npm install` in this folder should be enough, but itâs good to consult the [changelog](https://github.com/facebookincubator/create-react-app/blob/master/CHANGELOG.md) for potential breaking changes.
-
-We commit to keeping the breaking changes minimal so you can upgrade `react-scripts` painlessly.
-
-## Sending Feedback
-
-We are always open to [your feedback](https://github.com/facebookincubator/create-react-app/issues).
-
-## Folder Structure
-
-After creation, your project should look like this:
-
-```
-my-app/
- README.md
- node_modules/
- package.json
- public/
- index.html
- favicon.ico
- src/
- App.css
- App.js
- App.test.js
- index.css
- index.js
- logo.svg
-```
-
-For the project to build, **these files must exist with exact filenames**:
-
-* `public/index.html` is the page template;
-* `src/index.js` is the JavaScript entry point.
-
-You can delete or rename the other files.
-
-You may create subdirectories inside `src`. For faster rebuilds, only files inside `src` are processed by Webpack.
-You need to **put any JS and CSS files inside `src`**, or Webpack wonât see them.
-
-Only files inside `public` can be used from `public/index.html`.
-Read instructions below for using assets from JavaScript and HTML.
-
-You can, however, create more top-level directories.
-They will not be included in the production build so you can use them for things like documentation.
-
-## Available Scripts
-
-In the project directory, you can run:
-
-### `npm start`
-
-Runs the app in the development mode.
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
-
-The page will reload if you make edits.
-You will also see any lint errors in the console.
-
-### `npm test`
-
-Launches the test runner in the interactive watch mode.
-See the section about [running tests](#running-tests) for more information.
-
-### `npm run build`
-
-Builds the app for production to the `build` folder.
-It correctly bundles React in production mode and optimizes the build for the best performance.
-
-The build is minified and the filenames include the hashes.
-Your app is ready to be deployed!
-
-See the section about [deployment](#deployment) for more information.
-
-### `npm run eject`
-
-**Note: this is a one-way operation. Once you `eject`, you canât go back!**
-
-If you arenât satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
-
-Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point youâre on your own.
-
-You donât have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldnât feel obligated to use this feature. However we understand that this tool wouldnât be useful if you couldnât customize it when you are ready for it.
-
-## Supported Language Features and Polyfills
-
-This project supports a superset of the latest JavaScript standard.
-In addition to [ES6](https://github.com/lukehoban/es6features) syntax features, it also supports:
-
-* [Exponentiation Operator](https://github.com/rwaldron/exponentiation-operator) (ES2016).
-* [Async/await](https://github.com/tc39/ecmascript-asyncawait) (ES2017).
-* [Object Rest/Spread Properties](https://github.com/sebmarkbage/ecmascript-rest-spread) (stage 3 proposal).
-* [Dynamic import()](https://github.com/tc39/proposal-dynamic-import) (stage 3 proposal)
-* [Class Fields and Static Properties](https://github.com/tc39/proposal-class-public-fields) (stage 2 proposal).
-* [JSX](https://facebook.github.io/react/docs/introducing-jsx.html) and [Flow](https://flowtype.org/) syntax.
-
-Learn more about [different proposal stages](https://babeljs.io/docs/plugins/#presets-stage-x-experimental-presets-).
-
-While we recommend to use experimental proposals with some caution, Facebook heavily uses these features in the product code, so we intend to provide [codemods](https://medium.com/@cpojer/effective-javascript-codemods-5a6686bb46fb) if any of these proposals change in the future.
-
-Note that **the project only includes a few ES6 [polyfills](https://en.wikipedia.org/wiki/Polyfill)**:
-
-* [`Object.assign()`](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) via [`object-assign`](https://github.com/sindresorhus/object-assign).
-* [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) via [`promise`](https://github.com/then/promise).
-* [`fetch()`](https://developer.mozilla.org/en/docs/Web/API/Fetch_API) via [`whatwg-fetch`](https://github.com/github/fetch).
-
-If you use any other ES6+ features that need **runtime support** (such as `Array.from()` or `Symbol`), make sure you are including the appropriate polyfills manually, or that the browsers you are targeting already support them.
-
-## Syntax Highlighting in the Editor
-
-To configure the syntax highlighting in your favorite text editor, head to the [relevant Babel documentation page](https://babeljs.io/docs/editors) and follow the instructions. Some of the most popular editors are covered.
-
-## Displaying Lint Output in the Editor
-
->Note: this feature is available with `react-scripts@0.2.0` and higher.
->It also only works with npm 3 or higher.
-
-Some editors, including Sublime Text, Atom, and Visual Studio Code, provide plugins for ESLint.
-
-They are not required for linting. You should see the linter output right in your terminal as well as the browser console. However, if you prefer the lint results to appear right in your editor, there are some extra steps you can do.
-
-You would need to install an ESLint plugin for your editor first. Then, add a file called `.eslintrc` to the project root:
-
-```js
-{
- "extends": "react-app"
-}
-```
-
-Now your editor should report the linting warnings.
-
-Note that even if you edit your `.eslintrc` file further, these changes will **only affect the editor integration**. They wonât affect the terminal and in-browser lint output. This is because Create React App intentionally provides a minimal set of rules that find common mistakes.
-
-If you want to enforce a coding style for your project, consider using [Prettier](https://github.com/jlongster/prettier) instead of ESLint style rules.
-
-## Debugging in the Editor
-
-**This feature is currently only supported by [Visual Studio Code](https://code.visualstudio.com) editor.**
-
-Visual Studio Code supports debugging out of the box with Create React App. This enables you as a developer to write and debug your React code without leaving the editor, and most importantly it enables you to have a continuous development workflow, where context switching is minimal, as you donât have to switch between tools.
-
-You would need to have the latest version of [VS Code](https://code.visualstudio.com) and VS Code [Chrome Debugger Extension](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) installed.
-
-Then add the block below to your `launch.json` file and put it inside the `.vscode` folder in your appâs root directory.
-
-```json
-{
- "version": "0.2.0",
- "configurations": [{
- "name": "Chrome",
- "type": "chrome",
- "request": "launch",
- "url": "http://localhost:3000",
- "webRoot": "${workspaceRoot}/src",
- "userDataDir": "${workspaceRoot}/.vscode/chrome",
- "sourceMapPathOverrides": {
- "webpack:///src/*": "${webRoot}/*"
- }
- }]
-}
-```
-
-Start your app by running `npm start`, and start debugging in VS Code by pressing `F5` or by clicking the green debug icon. You can now write code, set breakpoints, make changes to the code, and debug your newly modified codeâall from your editor.
-
-## Changing the Page ``
-
-You can find the source HTML file in the `public` folder of the generated project. You may edit the `` tag in it to change the title from âReact Appâ to anything else.
-
-Note that normally you wouldnât edit files in the `public` folder very often. For example, [adding a stylesheet](#adding-a-stylesheet) is done without touching the HTML.
-
-If you need to dynamically update the page title based on the content, you can use the browser [`document.title`](https://developer.mozilla.org/en-US/docs/Web/API/Document/title) API. For more complex scenarios when you want to change the title from React components, you can use [React Helmet](https://github.com/nfl/react-helmet), a third party library.
-
-If you use a custom server for your app in production and want to modify the title before it gets sent to the browser, you can follow advice in [this section](#generating-dynamic-meta-tags-on-the-server). Alternatively, you can pre-build each page as a static HTML file which then loads the JavaScript bundle, which is covered [here](#pre-rendering-into-static-html-files).
-
-## Installing a Dependency
-
-The generated project includes React and ReactDOM as dependencies. It also includes a set of scripts used by Create React App as a development dependency. You may install other dependencies (for example, React Router) with `npm`:
-
-```
-npm install --save
-```
-
-## Importing a Component
-
-This project setup supports ES6 modules thanks to Babel.
-While you can still use `require()` and `module.exports`, we encourage you to use [`import` and `export`](http://exploringjs.com/es6/ch_modules.html) instead.
-
-For example:
-
-### `Button.js`
-
-```js
-import React, { Component } from 'react';
-
-class Button extends Component {
- render() {
- // ...
- }
-}
-
-export default Button; // Donât forget to use export default!
-```
-
-### `DangerButton.js`
-
-
-```js
-import React, { Component } from 'react';
-import Button from './Button'; // Import a component from another file
-
-class DangerButton extends Component {
- render() {
- return ;
- }
-}
-
-export default DangerButton;
-```
-
-Be aware of the [difference between default and named exports](http://stackoverflow.com/questions/36795819/react-native-es-6-when-should-i-use-curly-braces-for-import/36796281#36796281). It is a common source of mistakes.
-
-We suggest that you stick to using default imports and exports when a module only exports a single thing (for example, a component). Thatâs what you get when you use `export default Button` and `import Button from './Button'`.
-
-Named exports are useful for utility modules that export several functions. A module may have at most one default export and as many named exports as you like.
-
-Learn more about ES6 modules:
-
-* [When to use the curly braces?](http://stackoverflow.com/questions/36795819/react-native-es-6-when-should-i-use-curly-braces-for-import/36796281#36796281)
-* [Exploring ES6: Modules](http://exploringjs.com/es6/ch_modules.html)
-* [Understanding ES6: Modules](https://leanpub.com/understandinges6/read#leanpub-auto-encapsulating-code-with-modules)
-
-## Code Splitting
-
-Instead of downloading the entire app before users can use it, code splitting allows you to split your code into small chunks which you can then load on demand.
-
-This project setup supports code splitting via [dynamic `import()`](http://2ality.com/2017/01/import-operator.html#loading-code-on-demand). Its [proposal](https://github.com/tc39/proposal-dynamic-import) is in stage 3. The `import()` function-like form takes the module name as an argument and returns a [`Promise`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) which always resolves to the namespace object of the module.
-
-Here is an example:
-
-### `moduleA.js`
-
-```js
-const moduleA = 'Hello';
-
-export { moduleA };
-```
-### `App.js`
-
-```js
-import React, { Component } from 'react';
-
-class App extends Component {
- handleClick = () => {
- import('./moduleA')
- .then(({ moduleA }) => {
- // Use moduleA
- })
- .catch(err => {
- // Handle failure
- });
- };
-
- render() {
- return (
-
-
-
- );
- }
-}
-
-export default App;
-```
-
-This will make `moduleA.js` and all its unique dependencies as a separate chunk that only loads after the user clicks the 'Load' button.
-
-You can also use it with `async` / `await` syntax if you prefer it.
-
-## Adding a Stylesheet
-
-This project setup uses [Webpack](https://webpack.js.org/) for handling all assets. Webpack offers a custom way of âextendingâ the concept of `import` beyond JavaScript. To express that a JavaScript file depends on a CSS file, you need to **import the CSS from the JavaScript file**:
-
-### `Button.css`
-
-```css
-.Button {
- padding: 20px;
-}
-```
-
-### `Button.js`
-
-```js
-import React, { Component } from 'react';
-import './Button.css'; // Tell Webpack that Button.js uses these styles
-
-class Button extends Component {
- render() {
- // You can use them as regular CSS styles
- return ;
- }
-}
-```
-
-**This is not required for React** but many people find this feature convenient. You can read about the benefits of this approach [here](https://medium.com/seek-ui-engineering/block-element-modifying-your-javascript-components-d7f99fcab52b). However you should be aware that this makes your code less portable to other build tools and environments than Webpack.
-
-In development, expressing dependencies this way allows your styles to be reloaded on the fly as you edit them. In production, all CSS files will be concatenated into a single minified `.css` file in the build output.
-
-If you are concerned about using Webpack-specific semantics, you can put all your CSS right into `src/index.css`. It would still be imported from `src/index.js`, but you could always remove that import if you later migrate to a different build tool.
-
-## Post-Processing CSS
-
-This project setup minifies your CSS and adds vendor prefixes to it automatically through [Autoprefixer](https://github.com/postcss/autoprefixer) so you donât need to worry about it.
-
-For example, this:
-
-```css
-.App {
- display: flex;
- flex-direction: row;
- align-items: center;
-}
-```
-
-becomes this:
-
-```css
-.App {
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -ms-flex-direction: row;
- flex-direction: row;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
-}
-```
-
-If you need to disable autoprefixing for some reason, [follow this section](https://github.com/postcss/autoprefixer#disabling).
-
-## Adding a CSS Preprocessor (Sass, Less etc.)
-
-Generally, we recommend that you donât reuse the same CSS classes across different components. For example, instead of using a `.Button` CSS class in `` and `` components, we recommend creating a `