├── app ├── MyWatch │ └── res │ │ ├── values │ │ ├── .gitkeep │ │ └── arrays.xml │ │ ├── values-en-rAR │ │ └── arrays.xml │ │ ├── values-en-rBR │ │ └── arrays.xml │ │ ├── values-en-rCA │ │ └── arrays.xml │ │ ├── values-en-rCS │ │ └── arrays.xml │ │ ├── values-en-rDE │ │ └── arrays.xml │ │ ├── values-en-rES │ │ └── arrays.xml │ │ ├── values-en-rEU │ │ └── arrays.xml │ │ ├── values-en-rFR │ │ └── arrays.xml │ │ ├── values-en-rGR │ │ └── arrays.xml │ │ ├── values-en-rHE │ │ └── arrays.xml │ │ ├── values-en-rHR │ │ └── arrays.xml │ │ ├── values-en-rHU │ │ └── arrays.xml │ │ ├── values-en-rIT │ │ └── arrays.xml │ │ ├── values-en-rNL │ │ └── arrays.xml │ │ ├── values-en-rPL │ │ └── arrays.xml │ │ ├── values-en-rPT │ │ └── arrays.xml │ │ ├── values-en-rRU │ │ └── arrays.xml │ │ ├── values-en-rSI │ │ └── arrays.xml │ │ ├── values-en-rSK │ │ └── arrays.xml │ │ ├── values-en-rTR │ │ └── arrays.xml │ │ ├── values-en-rUS │ │ └── arrays.xml │ │ └── values-en-rVI │ │ └── arrays.xml ├── WearBLE │ └── res │ │ ├── values │ │ ├── .gitkeep │ │ └── strings.xml │ │ ├── values-en-rAR │ │ └── strings.xml │ │ ├── values-en-rBR │ │ └── strings.xml │ │ ├── values-en-rCA │ │ └── strings.xml │ │ ├── values-en-rCS │ │ └── strings.xml │ │ ├── values-en-rDE │ │ └── strings.xml │ │ ├── values-en-rES │ │ └── strings.xml │ │ ├── values-en-rEU │ │ └── strings.xml │ │ ├── values-en-rFR │ │ └── strings.xml │ │ ├── values-en-rGR │ │ └── strings.xml │ │ ├── values-en-rHE │ │ └── strings.xml │ │ ├── values-en-rHR │ │ └── strings.xml │ │ ├── values-en-rHU │ │ └── strings.xml │ │ ├── values-en-rIT │ │ └── strings.xml │ │ ├── values-en-rNL │ │ └── strings.xml │ │ ├── values-en-rPL │ │ └── strings.xml │ │ ├── values-en-rPT │ │ └── strings.xml │ │ ├── values-en-rRU │ │ └── strings.xml │ │ ├── values-en-rSI │ │ └── strings.xml │ │ ├── values-en-rSK │ │ └── strings.xml │ │ ├── values-en-rTR │ │ └── strings.xml │ │ ├── values-en-rUS │ │ └── strings.xml │ │ └── values-en-rVI │ │ └── strings.xml ├── HmMediaPlayer │ └── res │ │ ├── values │ │ └── .gitkeep │ │ ├── values-en-rBR │ │ └── arrays.xml │ │ ├── values-en-rCS │ │ └── arrays.xml │ │ ├── values-en-rDE │ │ └── arrays.xml │ │ ├── values-en-rES │ │ └── arrays.xml │ │ ├── values-en-rEU │ │ └── arrays.xml │ │ ├── values-en-rFR │ │ └── arrays.xml │ │ ├── values-en-rHR │ │ └── arrays.xml │ │ ├── values-en-rHU │ │ └── arrays.xml │ │ ├── values-en-rIT │ │ └── arrays.xml │ │ ├── values-en-rPL │ │ └── arrays.xml │ │ ├── values-en-rPT │ │ └── arrays.xml │ │ └── values-en-rSK │ │ └── arrays.xml ├── HmTvHelper │ └── res │ │ └── values │ │ └── .gitkeep ├── NewWearSport │ └── res │ │ └── values │ │ └── .gitkeep ├── SetupWizard │ └── res │ │ └── values │ │ └── .gitkeep ├── TrainingPlan │ └── res │ │ ├── values │ │ ├── .gitkeep │ │ └── arrays.xml │ │ ├── values-en-rAR │ │ └── arrays.xml │ │ ├── values-en-rBR │ │ └── arrays.xml │ │ ├── values-en-rCA │ │ └── arrays.xml │ │ ├── values-en-rCS │ │ └── arrays.xml │ │ ├── values-en-rDE │ │ └── arrays.xml │ │ ├── values-en-rES │ │ └── arrays.xml │ │ ├── values-en-rEU │ │ └── arrays.xml │ │ ├── values-en-rFR │ │ └── arrays.xml │ │ ├── values-en-rGR │ │ └── arrays.xml │ │ ├── values-en-rHE │ │ └── arrays.xml │ │ ├── values-en-rHR │ │ └── arrays.xml │ │ ├── values-en-rHU │ │ └── arrays.xml │ │ ├── values-en-rIT │ │ └── arrays.xml │ │ ├── values-en-rNL │ │ └── arrays.xml │ │ ├── values-en-rPL │ │ └── arrays.xml │ │ ├── values-en-rPT │ │ └── arrays.xml │ │ ├── values-en-rRU │ │ └── arrays.xml │ │ ├── values-en-rSI │ │ └── arrays.xml │ │ ├── values-en-rSK │ │ └── arrays.xml │ │ ├── values-en-rTR │ │ └── arrays.xml │ │ ├── values-en-rUS │ │ └── arrays.xml │ │ └── values-en-rVI │ │ └── arrays.xml ├── WearCompass │ └── res │ │ ├── values │ │ └── .gitkeep │ │ ├── values-en-rBR │ │ └── arrays.xml │ │ ├── values-en-rCS │ │ └── arrays.xml │ │ ├── values-en-rDE │ │ └── arrays.xml │ │ ├── values-en-rES │ │ └── arrays.xml │ │ ├── values-en-rEU │ │ └── arrays.xml │ │ ├── values-en-rFR │ │ └── arrays.xml │ │ ├── values-en-rHR │ │ └── arrays.xml │ │ ├── values-en-rHU │ │ └── arrays.xml │ │ ├── values-en-rIT │ │ └── arrays.xml │ │ ├── values-en-rPL │ │ └── arrays.xml │ │ └── values-en-rPT │ │ └── arrays.xml ├── HuamiWatchFaces2 │ └── res │ │ └── values │ │ └── .gitkeep ├── PackageInstaller │ └── res │ │ └── values │ │ └── .gitkeep ├── HmLab │ └── res │ │ ├── values │ │ └── arrays.xml │ │ ├── values-en-rAR │ │ └── arrays.xml │ │ ├── values-en-rBR │ │ └── arrays.xml │ │ ├── values-en-rCA │ │ └── arrays.xml │ │ ├── values-en-rCS │ │ └── arrays.xml │ │ ├── values-en-rDE │ │ └── arrays.xml │ │ ├── values-en-rES │ │ └── arrays.xml │ │ ├── values-en-rEU │ │ └── arrays.xml │ │ ├── values-en-rFR │ │ └── arrays.xml │ │ ├── values-en-rGR │ │ └── arrays.xml │ │ ├── values-en-rHE │ │ └── arrays.xml │ │ ├── values-en-rHR │ │ └── arrays.xml │ │ ├── values-en-rHU │ │ └── arrays.xml │ │ ├── values-en-rIT │ │ └── arrays.xml │ │ ├── values-en-rNL │ │ └── arrays.xml │ │ ├── values-en-rPL │ │ └── arrays.xml │ │ ├── values-en-rPT │ │ └── arrays.xml │ │ ├── values-en-rRU │ │ └── arrays.xml │ │ ├── values-en-rSI │ │ └── arrays.xml │ │ ├── values-en-rSK │ │ └── arrays.xml │ │ ├── values-en-rTR │ │ └── arrays.xml │ │ ├── values-en-rUS │ │ └── arrays.xml │ │ └── values-en-rVI │ │ └── arrays.xml └── WearHealth │ └── res │ ├── values-en-rVI │ └── plurals.xml │ ├── values-en-rFR │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rPT │ ├── plurals.xml │ └── arrays.xml │ ├── values │ └── plurals.xml │ ├── values-en-rCA │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rES │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rEU │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rGR │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rHU │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rIT │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rNL │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rTR │ └── plurals.xml │ ├── values-en-rUS │ └── plurals.xml │ ├── values-en-rBR │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rDE │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rHR │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rSI │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rHE │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rPL │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rRU │ ├── plurals.xml │ └── arrays.xml │ ├── values-en-rSK │ └── plurals.xml │ ├── values-en-rCS │ ├── plurals.xml │ └── arrays.xml │ └── values-en-rAR │ ├── plurals.xml │ └── arrays.xml ├── priv-app ├── SystemUI │ └── res │ │ ├── values-en-rSI │ │ └── arrays.xml │ │ ├── values-en-rSK │ │ └── arrays.xml │ │ ├── values-en-rTR │ │ └── arrays.xml │ │ ├── values-en-rBR │ │ └── arrays.xml │ │ ├── values-en-rCS │ │ └── arrays.xml │ │ ├── values-en-rDE │ │ └── arrays.xml │ │ ├── values-en-rFR │ │ └── arrays.xml │ │ ├── values-en-rHR │ │ └── arrays.xml │ │ ├── values-en-rHU │ │ └── arrays.xml │ │ ├── values-en-rIT │ │ └── arrays.xml │ │ ├── values-en-rPL │ │ └── arrays.xml │ │ ├── values-en-rPT │ │ └── arrays.xml │ │ ├── values-en-rES │ │ └── arrays.xml │ │ └── values-en-rEU │ │ └── arrays.xml ├── WearLauncher │ └── res │ │ ├── values-en-rVI │ │ └── plurals.xml │ │ ├── values │ │ └── plurals.xml │ │ ├── values-en-rBR │ │ └── plurals.xml │ │ ├── values-en-rCA │ │ └── plurals.xml │ │ ├── values-en-rDE │ │ └── plurals.xml │ │ ├── values-en-rES │ │ └── plurals.xml │ │ ├── values-en-rEU │ │ └── plurals.xml │ │ ├── values-en-rFR │ │ └── plurals.xml │ │ ├── values-en-rGR │ │ └── plurals.xml │ │ ├── values-en-rHU │ │ └── plurals.xml │ │ ├── values-en-rIT │ │ └── plurals.xml │ │ ├── values-en-rNL │ │ └── plurals.xml │ │ ├── values-en-rPT │ │ └── plurals.xml │ │ ├── values-en-rTR │ │ └── plurals.xml │ │ ├── values-en-rUS │ │ └── plurals.xml │ │ ├── values-en-rHR │ │ └── plurals.xml │ │ ├── values-en-rCS │ │ └── plurals.xml │ │ ├── values-en-rHE │ │ └── plurals.xml │ │ ├── values-en-rPL │ │ └── plurals.xml │ │ ├── values-en-rRU │ │ └── plurals.xml │ │ ├── values-en-rSI │ │ └── plurals.xml │ │ ├── values-en-rSK │ │ └── plurals.xml │ │ └── values-en-rAR │ │ └── plurals.xml └── HmAlarmClock │ └── res │ ├── values-en-rVI │ └── plurals.xml │ ├── values-en-rBR │ └── plurals.xml │ ├── values-en-rCA │ └── plurals.xml │ ├── values-en-rDE │ └── plurals.xml │ ├── values-en-rES │ └── plurals.xml │ ├── values-en-rEU │ └── plurals.xml │ ├── values-en-rFR │ └── plurals.xml │ ├── values-en-rGR │ └── plurals.xml │ ├── values-en-rHU │ └── plurals.xml │ ├── values-en-rIT │ └── plurals.xml │ ├── values-en-rNL │ └── plurals.xml │ ├── values-en-rPT │ └── plurals.xml │ ├── values-en-rTR │ └── plurals.xml │ ├── values-en-rUS │ └── plurals.xml │ ├── values │ └── plurals.xml │ ├── values-en-rHR │ └── plurals.xml │ ├── values-en-rSI │ └── plurals.xml │ ├── values-en-rCS │ └── plurals.xml │ ├── values-en-rHE │ └── plurals.xml │ ├── values-en-rPL │ └── plurals.xml │ ├── values-en-rRU │ └── plurals.xml │ ├── values-en-rSK │ └── plurals.xml │ └── values-en-rAR │ └── plurals.xml ├── README.md ├── crowdin.yml └── framework └── framework-res └── res ├── values └── strings.xml ├── values-en-rAR └── strings.xml ├── values-en-rBR └── strings.xml ├── values-en-rCA └── strings.xml ├── values-en-rCS └── strings.xml ├── values-en-rDE └── strings.xml ├── values-en-rES ├── strings.xml └── arrays.xml ├── values-en-rFR └── strings.xml ├── values-en-rGR └── strings.xml ├── values-en-rHE └── strings.xml ├── values-en-rHR └── strings.xml ├── values-en-rHU └── strings.xml ├── values-en-rIT └── strings.xml ├── values-en-rNL └── strings.xml ├── values-en-rPL └── strings.xml ├── values-en-rPT └── strings.xml ├── values-en-rRU └── strings.xml ├── values-en-rSI └── strings.xml ├── values-en-rSK └── strings.xml ├── values-en-rTR └── strings.xml ├── values-en-rUS └── strings.xml ├── values-en-rVI └── strings.xml └── values-en-rEU └── strings.xml /app/MyWatch/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/WearBLE/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/HmTvHelper/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/NewWearSport/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/SetupWizard/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/WearCompass/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/HuamiWatchFaces2/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/PackageInstaller/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/HmLab/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Sensor capturing 5 | 6 | 7 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rSI/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ABC 5 | 6 | 7 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rSK/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ABC 5 | 6 | 7 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rTR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ABC 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rAR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rBR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rCA/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rCS/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rDE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rES/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rEU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rFR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rGR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rHE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rHR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rHU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rIT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rNL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rPL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rPT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rRU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rSI/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rSK/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rTR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rUS/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/HmLab/res/values-en-rVI/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sensor capturing 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/MyWatch/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | StepTargetSet 5 | Alarm 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rAR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rBR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rCA/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rCS/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rDE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rES/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rEU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rFR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rGR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rHE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rHR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rHU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rIT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rNL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rPL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rPT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rRU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rSI/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rSK/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rTR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rUS/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/MyWatch/res/values-en-rVI/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | StepTargetSet 6 | Alarm 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rBR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rCS/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rDE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rES/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rEU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rFR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rHR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rHU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rIT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rPL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearCompass/res/values-en-rPT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | com.huami.watch.compass/com.huami.watch.compass.CompassWidgetView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rBR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rCS/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rDE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rES/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rEU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rFR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rHR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rHU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rIT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rPL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rPT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/HmMediaPlayer/res/values-en-rSK/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | watch.huami.com.mediaplayer/watch.huami.com.mediaplayer.widget.MusicLauncerView 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rVI/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | 7 | 8 | Steps 9 | 10 | 11 | Floors 12 | 13 | 14 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rBR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | 14 | 15 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rCS/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | 14 | 15 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rDE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | 14 | 15 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rFR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | 14 | 15 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rHR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | 14 | 15 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rHU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | 14 | 15 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rIT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | 14 | 15 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rPL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | 14 | 15 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rPT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | 14 | 15 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rES/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | WXYZ 14 | 15 | 16 | -------------------------------------------------------------------------------- /priv-app/SystemUI/res/values-en-rEU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | + 5 | ABC 6 | DEF 7 | GHI 8 | JKL 9 | MNO 10 | PQRS 11 | TUV 12 | WXYZ 13 | WXYZ 14 | 15 | 16 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rVI/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s days ago 6 | 7 | 8 | %s hours ago 9 | 10 | 11 | %s mins ago 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rFR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Fois 6 | Fois 7 | 8 | 9 | Pas 10 | Pas 11 | 12 | 13 | Etage 14 | Etages 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rPT/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | . 6 | . 7 | 8 | 9 | Passo 10 | Passos 11 | 12 | 13 | Andar 14 | Andares 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Times 5 | Times 6 | 7 | 8 | Step 9 | Steps 10 | 11 | 12 | Floor 13 | Floors 14 | 15 | 16 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rCA/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | 8 | 9 | Step 10 | Steps 11 | 12 | 13 | Floor 14 | Floors 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rES/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | 8 | 9 | Step 10 | Steps 11 | 12 | 13 | Floor 14 | Floors 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rEU/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | 8 | 9 | Step 10 | Steps 11 | 12 | 13 | Floor 14 | Floors 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rGR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | 8 | 9 | Step 10 | Steps 11 | 12 | 13 | Floor 14 | Floors 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rHU/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | alk. 6 | alk. 7 | 8 | 9 | Lépés 10 | Lépés 11 | 12 | 13 | Emelet 14 | Emelet 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rIT/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Volta 6 | Volte 7 | 8 | 9 | Passo 10 | Passi 11 | 12 | 13 | Piano 14 | Piani 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rNL/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | 8 | 9 | Step 10 | Steps 11 | 12 | 13 | Floor 14 | Floors 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rTR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | 8 | 9 | Step 10 | Steps 11 | 12 | 13 | Floor 14 | Floors 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rUS/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | 8 | 9 | Step 10 | Steps 11 | 12 | 13 | Floor 14 | Floors 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rBR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Vez 6 | Vezes 7 | 8 | 9 | Passo 10 | Passos 11 | 12 | 13 | Andar 14 | Andares 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rDE/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Zeit 6 | Zeiten 7 | 8 | 9 | Schritt 10 | Schritte 11 | 12 | 13 | Etage 14 | Etagen 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rVI/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for %d minutes. 6 | 7 | 8 | %d hours 9 | 10 | 11 | %d minutes 12 | 13 | 14 | %d seconds 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | %s day ago 5 | %s days ago 6 | 7 | 8 | %s hours ago 9 | %s hours ago 10 | 11 | 12 | %s min ago 13 | %s mins ago 14 | 15 | 16 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rBR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rCA/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rDE/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rES/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rEU/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rFR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rGR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rHU/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rIT/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rNL/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rPT/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rTR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rUS/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | 8 | 9 | %s hours ago 10 | %s hours ago 11 | 12 | 13 | %s min ago 14 | %s mins ago 15 | 16 | 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Proyecto-PACEficator-Project 2 | + Amazfit Stratos & Pace 3 | + Amazfit Verge 4 | + Amazfit Stratos 3 5 | # Multi lingual translations 6 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rHR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Put 6 | Puta 7 | Puta 8 | 9 | 10 | Korak 11 | Koraka 12 | Koraka 13 | 14 | 15 | Kat 16 | Katova 17 | Katova 18 | 19 | 20 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rHR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | %s days ago 8 | 9 | 10 | %s hours ago 11 | %s hours ago 12 | %s hours ago 13 | 14 | 15 | %s min ago 16 | %s mins ago 17 | %s mins ago 18 | 19 | 20 | -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /**/**/res/values/ 3 | translation: /**/res/values-%android_code%/%file_name%.xml 4 | languages_mapping: 5 | android_code: 6 | eu: en-rEU 7 | es-ES: en-rES 8 | ar: en-rAR 9 | ca: en-rCA 10 | en: en-rUS 11 | hr: en-rHR 12 | cs: en-rCS 13 | nl: en-rNL 14 | fr: en-rFR 15 | de: en-rDE 16 | el: en-rGR 17 | he: en-rHE 18 | hu: en-rHU 19 | it: en-rIT 20 | pl: en-rPL 21 | pt-PT: en-rPT 22 | pt-BR: en-rBR 23 | ru: en-rRU 24 | sk: en-rSK 25 | sl: en-rSI 26 | tr: en-rTR 27 | vi: en-rVI 28 | translate_content: 0 29 | translate_attributes: 0 30 | content_segmentation: 0 31 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rBR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rCA/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rDE/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rES/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rEU/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rFR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rGR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rHU/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rIT/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rNL/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rPT/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rTR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rUS/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | 8 | 9 | 1 hour 10 | %d hours 11 | 12 | 13 | 1 minute 14 | %d minutes 15 | 16 | 17 | 1 second 18 | %d seconds 19 | 20 | 21 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Snoozing for 1 minute. 5 | Snoozing for %d minutes. 6 | 7 | 8 | 1 hour 9 | %d hours 10 | 11 | 12 | 1 minute 13 | %d minutes 14 | 15 | 16 | 1 second 17 | %d seconds 18 | 19 | 20 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rSI/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | Times 8 | Times 9 | 10 | 11 | Step 12 | Steps 13 | Steps 14 | Steps 15 | 16 | 17 | Floor 18 | Floors 19 | Floors 20 | Floors 21 | 22 | 23 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rHE/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | Times 8 | Times 9 | 10 | 11 | Step 12 | Steps 13 | Steps 14 | Steps 15 | 16 | 17 | Floor 18 | Floors 19 | Floors 20 | Floors 21 | 22 | 23 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rPL/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | Times 8 | Times 9 | 10 | 11 | Step 12 | Steps 13 | Steps 14 | Steps 15 | 16 | 17 | Floor 18 | Floors 19 | Floors 20 | Floors 21 | 22 | 23 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rRU/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | Times 8 | Times 9 | 10 | 11 | Step 12 | Steps 13 | Steps 14 | Steps 15 | 16 | 17 | Floor 18 | Floors 19 | Floors 20 | Floors 21 | 22 | 23 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rSK/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | Times 8 | Times 9 | 10 | 11 | Step 12 | Steps 13 | Steps 14 | Steps 15 | 16 | 17 | Floor 18 | Floors 19 | Floors 20 | Floors 21 | 22 | 23 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rCS/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Doba 6 | Times 7 | Times 8 | Doba 9 | 10 | 11 | Krok 12 | Steps 13 | Steps 14 | Kroků 15 | 16 | 17 | Poschodí 18 | Floors 19 | Floors 20 | Poschodí 21 | 22 | 23 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rCS/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | %s days ago 8 | %s days ago 9 | 10 | 11 | %s hours ago 12 | %s hours ago 13 | %s hours ago 14 | %s hours ago 15 | 16 | 17 | %s min ago 18 | %s mins ago 19 | %s mins ago 20 | %s mins ago 21 | 22 | 23 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rHE/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | %s days ago 8 | %s days ago 9 | 10 | 11 | %s hours ago 12 | %s hours ago 13 | %s hours ago 14 | %s hours ago 15 | 16 | 17 | %s min ago 18 | %s mins ago 19 | %s mins ago 20 | %s mins ago 21 | 22 | 23 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rPL/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | %s days ago 8 | %s days ago 9 | 10 | 11 | %s hours ago 12 | %s hours ago 13 | %s hours ago 14 | %s hours ago 15 | 16 | 17 | %s min ago 18 | %s mins ago 19 | %s mins ago 20 | %s mins ago 21 | 22 | 23 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rRU/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | %s days ago 8 | %s days ago 9 | 10 | 11 | %s hours ago 12 | %s hours ago 13 | %s hours ago 14 | %s hours ago 15 | 16 | 17 | %s min ago 18 | %s mins ago 19 | %s mins ago 20 | %s mins ago 21 | 22 | 23 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rSI/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | %s days ago 8 | %s days ago 9 | 10 | 11 | %s hours ago 12 | %s hours ago 13 | %s hours ago 14 | %s hours ago 15 | 16 | 17 | %s min ago 18 | %s mins ago 19 | %s mins ago 20 | %s mins ago 21 | 22 | 23 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rSK/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s day ago 6 | %s days ago 7 | %s days ago 8 | %s days ago 9 | 10 | 11 | %s hours ago 12 | %s hours ago 13 | %s hours ago 14 | %s hours ago 15 | 16 | 17 | %s min ago 18 | %s mins ago 19 | %s mins ago 20 | %s mins ago 21 | 22 | 23 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rHR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | Snoozing for %d minutes. 8 | 9 | 10 | 1 hour 11 | %d hours 12 | %d hours 13 | 14 | 15 | 1 minute 16 | %d minutes 17 | %d minutes 18 | 19 | 20 | 1 second 21 | %d seconds 22 | %d seconds 23 | 24 | 25 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rAR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Times 6 | Times 7 | Times 8 | Times 9 | Times 10 | Times 11 | 12 | 13 | Steps 14 | Step 15 | Steps 16 | Steps 17 | Steps 18 | Steps 19 | 20 | 21 | Floors 22 | Floor 23 | Floors 24 | Floors 25 | Floors 26 | Floors 27 | 28 | 29 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rSI/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | Snoozing for %d minutes. 8 | Snoozing for %d minutes. 9 | 10 | 11 | 1 hour 12 | %d hours 13 | %d hours 14 | %d hours 15 | 16 | 17 | 1 minute 18 | %d minutes 19 | %d minutes 20 | %d minutes 21 | 22 | 23 | 1 second 24 | %d seconds 25 | %d seconds 26 | %d seconds 27 | 28 | 29 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rCS/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | Snoozing for %d minutes. 8 | Snoozing for %d minutes. 9 | 10 | 11 | 1 hour 12 | %d hours 13 | %d hours 14 | %d hours 15 | 16 | 17 | 1 minute 18 | %d minutes 19 | %d minutes 20 | %d minutes 21 | 22 | 23 | 1 second 24 | %d seconds 25 | %d seconds 26 | %d seconds 27 | 28 | 29 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rHE/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | Snoozing for %d minutes. 8 | Snoozing for %d minutes. 9 | 10 | 11 | 1 hour 12 | %d hours 13 | %d hours 14 | %d hours 15 | 16 | 17 | 1 minute 18 | %d minutes 19 | %d minutes 20 | %d minutes 21 | 22 | 23 | 1 second 24 | %d seconds 25 | %d seconds 26 | %d seconds 27 | 28 | 29 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rPL/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | Snoozing for %d minutes. 8 | Snoozing for %d minutes. 9 | 10 | 11 | 1 hour 12 | %d hours 13 | %d hours 14 | %d hours 15 | 16 | 17 | 1 minute 18 | %d minutes 19 | %d minutes 20 | %d minutes 21 | 22 | 23 | 1 second 24 | %d seconds 25 | %d seconds 26 | %d seconds 27 | 28 | 29 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rRU/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | Snoozing for %d minutes. 8 | Snoozing for %d minutes. 9 | 10 | 11 | 1 hour 12 | %d hours 13 | %d hours 14 | %d hours 15 | 16 | 17 | 1 minute 18 | %d minutes 19 | %d minutes 20 | %d minutes 21 | 22 | 23 | 1 second 24 | %d seconds 25 | %d seconds 26 | %d seconds 27 | 28 | 29 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rSK/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for 1 minute. 6 | Snoozing for %d minutes. 7 | Snoozing for %d minutes. 8 | Snoozing for %d minutes. 9 | 10 | 11 | 1 hour 12 | %d hours 13 | %d hours 14 | %d hours 15 | 16 | 17 | 1 minute 18 | %d minutes 19 | %d minutes 20 | %d minutes 21 | 22 | 23 | 1 second 24 | %d seconds 25 | %d seconds 26 | %d seconds 27 | 28 | 29 | -------------------------------------------------------------------------------- /priv-app/WearLauncher/res/values-en-rAR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | %s days ago 6 | %s day ago 7 | %s days ago 8 | %s days ago 9 | %s days ago 10 | %s days ago 11 | 12 | 13 | %s hours ago 14 | %s hours ago 15 | %s hours ago 16 | %s hours ago 17 | %s hours ago 18 | %s hours ago 19 | 20 | 21 | %s mins ago 22 | %s min ago 23 | %s mins ago 24 | %s mins ago 25 | %s mins ago 26 | %s mins ago 27 | 28 | 29 | -------------------------------------------------------------------------------- /framework/framework-res/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Back 4 | Reboot 5 | Turn off wireless 6 | partial shutdown 7 | word 8 | Reboot 9 | "%2$s isn't responding. 10 | "Activity %1$s isn't responding. 11 | "%1$s isn't responding. Do you want to close it?" 12 | "Process %1$s isn't responding. 13 | Rebooting... 14 | " Optimizing App %1$d Total %2$d" 15 | Launching apps... 16 | Reboot almost completed 17 | Restart 18 | Back 19 | 20 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rAR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rBR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rCA/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rCS/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rDE/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rES/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rFR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rGR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rHE/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rHR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rHU/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rIT/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rNL/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rPL/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rPT/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rRU/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rSI/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rSK/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rTR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rUS/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rVI/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Back 5 | Reboot 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Reboot 10 | \"%2$s isn\'t responding. 11 | \"Activity %1$s isn\'t responding. 12 | "%1$s isn't responding. Do you want to close it?" 13 | \"Process %1$s isn\'t responding. 14 | Rebooting... 15 | " Optimizing App %1$d Total %2$d" 16 | Launching apps... 17 | Reboot almost completed 18 | Restart 19 | Back 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | BLE connect 4 | Settings 5 | HR_COUNTER 6 | Heart Rate Simulator . 7 | Install the Amazfit Watch App on your phone first. 8 | Chinese (Simplified) 9 | English(US) 10 | Battery is less than 5%. Connect to power supply to continue 11 | Low battery! 12 | Battery is low, connect to power supply for charging. 13 | Scan binding code 14 | Some features will not be available, skip? 15 | Cancel 16 | Skip 17 | permission_read_user_info 18 | permission_read_user_info 19 | 20 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rAR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rBR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rCA/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rCS/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rDE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rES/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rEU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rFR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rGR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rHE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rHR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rHU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rIT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rNL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rPL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rPT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rRU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rSI/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rSK/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rTR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rUS/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values-en-rVI/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Week one 6 | Week two 7 | Week three 8 | Week four 9 | Week five 10 | Week six 11 | Week seven 12 | Week eight 13 | 14 | 15 | Sunday 16 | Monday 17 | Tuesday 18 | Wednesday 19 | Thursday 20 | Friday 21 | Saturday 22 | 23 | 24 | Cannot stick to the plan 25 | Take too long to complete 26 | Not feeling well 27 | Too difficult 28 | Too easy 29 | My game is cancelled 30 | Not for me 31 | Other 32 | 33 | 34 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rAR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rBR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rCA/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rCS/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rDE/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rES/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rEU/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rFR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rGR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rHE/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rHR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rHU/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rIT/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rNL/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rPL/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rPT/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rRU/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rSI/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rSK/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rTR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rUS/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /app/WearBLE/res/values-en-rVI/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BLE connect 5 | Settings 6 | HR_COUNTER 7 | Heart Rate Simulator . 8 | Install the Amazfit Watch App on your phone first. 9 | Chinese (Simplified) 10 | English(US) 11 | Battery is less than 5%. Connect to power supply to continue 12 | Low battery! 13 | Battery is low, connect to power supply for charging. 14 | Scan binding code 15 | Some features will not be available, skip? 16 | Cancel 17 | Skip 18 | permission_read_user_info 19 | permission_read_user_info 20 | 21 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rEU/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Atzera 5 | Berrabiarazi 6 | Turn off wireless 7 | partial shutdown 8 | word 9 | Berrabiarazi 10 | \"%2$s ez di erantzuten. 11 | Itxi?\" 12 | \"%1$s ez du erantzuten. 13 | Itxi?\" 14 | "%1$s ez du erantzuten. Itxi?" 15 | \"%1$s ez du erantzuten. 16 | Itxi?\" 17 | Berrabiarazten... 18 | " %2$d-tik %1$d App optimizatzen" 19 | App-k kargatzen... 20 | Berrabiarazpena ia eginda... 21 | Berrabiarazi 22 | Atzera 23 | 24 | -------------------------------------------------------------------------------- /app/TrainingPlan/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Week one 5 | Week two 6 | Week three 7 | Week four 8 | Week five 9 | Week six 10 | Week seven 11 | Week eight 12 | 13 | 14 | Sunday 15 | Monday 16 | Tuesday 17 | Wednesday 18 | Thursday 19 | Friday 20 | Saturday 21 | 22 | 23 | Cannot stick to the plan 24 | Take too long to complete 25 | Not feeling well 26 | Too difficult 27 | Too easy 28 | My game is cancelled 29 | Not for me 30 | Other 31 | 32 | 33 | com.huami.watch.train/com.huami.watch.train.ui.activity.launch.TraintLauncherView 34 | 35 | 36 | -------------------------------------------------------------------------------- /framework/framework-res/res/values-en-rES/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Casa 5 | Trabajo 6 | Otra 7 | Personalizar 8 | 9 | 10 | AIM 11 | Windows Live 12 | Yahoo! 13 | Skype 14 | QQ 15 | Google Talk 16 | ICQ 17 | Jabber 18 | 19 | 20 | Trabajo 21 | Otra 22 | Personalizar 23 | 24 | 25 | Casa 26 | Móvil 27 | Trabajo 28 | Fax del trabajo 29 | Fax de casa 30 | Busca 31 | Otro 32 | Personalizar 33 | 34 | 35 | Casa 36 | Trabajo 37 | Otra 38 | Personalizar 39 | 40 | 41 | Casa 42 | Trabajo 43 | Otro 44 | Personalizar 45 | 46 | 47 | -------------------------------------------------------------------------------- /priv-app/HmAlarmClock/res/values-en-rAR/plurals.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Snoozing for %d minutes. 6 | Snoozing for 1 minute. 7 | Snoozing for %d minutes. 8 | Snoozing for %d minutes. 9 | Snoozing for %d minutes. 10 | Snoozing for %d minutes. 11 | 12 | 13 | %d hours 14 | 1 hour 15 | %d hours 16 | %d hours 17 | %d hours 18 | %d hours 19 | 20 | 21 | %d minutes 22 | 1 minute 23 | %d minutes 24 | %d minutes 25 | %d minutes 26 | %d minutes 27 | 28 | 29 | %d seconds 30 | 1 second 31 | %d seconds 32 | %d seconds 33 | %d seconds 34 | %d seconds 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rAR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rBR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rCA/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rCS/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rDE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rES/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rEU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rFR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rGR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rHE/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rHR/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rHU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rIT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rNL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rPL/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rPT/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rRU/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | -------------------------------------------------------------------------------- /app/WearHealth/res/values-en-rSI/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DAILY 6 | WEEKLY 7 | 8 | 9 | com.huami.watch.health/com.huami.watch.health.widget.HeartLauncherView 10 | com.huami.watch.health/com.huami.watch.health.widget.StepLauncherView 11 | com.huami.watch.health/com.huami.watch.health.widget.SleepWidgetView 12 | 13 | 14 | 0 15 | 6 16 | 12 17 | 18 18 | 24 19 | 20 | 21 | Mon 22 | Tue 23 | Wed 24 | Thu 25 | Fri 26 | Sat 27 | Sun 28 | 29 | 30 | Today 31 | This Week 32 | Today 33 | This Week 34 | 35 | 36 | M 37 | T 38 | W 39 | T 40 | F 41 | S 42 | S 43 | 44 | 45 | 0 46 | 4 47 | 8 48 | 12 49 | 16 50 | 20 51 | 24 52 | 53 | 54 | --------------------------------------------------------------------------------