aboutsummaryrefslogtreecommitdiffstats
path: root/apps/weather_status
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2022-04-01 08:24:44 +0200
committerGitHub <noreply@github.com>2022-04-01 08:24:44 +0200
commit4b8b73ed21d406d487aa341701ca0ab6d65ac748 (patch)
treec179118cb6c0b8ea831212549c93adb7f39f5c04 /apps/weather_status
parenta1081d18c4b22fa08180da3e56900a550ea7d88e (diff)
parente750b2321a3a3dbf3a5cfc637346fdabf68ea820 (diff)
downloadnextcloud-server-4b8b73ed21d406d487aa341701ca0ab6d65ac748.tar.gz
nextcloud-server-4b8b73ed21d406d487aa341701ca0ab6d65ac748.zip
Merge pull request #30550 from nextcloud/Valdnet-patch-1
l10n: Change "rain" to "rainfall"
Diffstat (limited to 'apps/weather_status')
-rw-r--r--apps/weather_status/src/App.vue36
1 files changed, 18 insertions, 18 deletions
diff --git a/apps/weather_status/src/App.vue b/apps/weather_status/src/App.vue
index 78cbaadeb8d..8b96a520ef7 100644
--- a/apps/weather_status/src/App.vue
+++ b/apps/weather_status/src/App.vue
@@ -137,56 +137,56 @@ const weatherOptions = {
lightrain: {
icon: 'icon-lightrain',
text: (temperature, unit, later = false) => later
- ? t('weather_status', '{temperature} {unit} light rain later today', { temperature, unit })
- : t('weather_status', '{temperature} {unit} light rain', { temperature, unit }),
+ ? t('weather_status', '{temperature} {unit} light rainfall later today', { temperature, unit })
+ : t('weather_status', '{temperature} {unit} light rainfall', { temperature, unit }),
},
rain: {
icon: 'icon-rain',
text: (temperature, unit, later = false) => later
- ? t('weather_status', '{temperature} {unit} rain later today', { temperature, unit })
- : t('weather_status', '{temperature} {unit} rain', { temperature, unit }),
+ ? t('weather_status', '{temperature} {unit} rainfall later today', { temperature, unit })
+ : t('weather_status', '{temperature} {unit} rainfall', { temperature, unit }),
},
heavyrain: {
icon: 'icon-heavyrain',
text: (temperature, unit, later = false) => later
- ? t('weather_status', '{temperature} {unit} heavy rain later today', { temperature, unit })
- : t('weather_status', '{temperature} {unit} heavy rain', { temperature, unit }),
+ ? t('weather_status', '{temperature} {unit} heavy rainfall later today', { temperature, unit })
+ : t('weather_status', '{temperature} {unit} heavy rainfall', { temperature, unit }),
},
rainshowers_day: {
icon: 'icon-rainshowers-day',
text: (temperature, unit, later = false) => later
- ? t('weather_status', '{temperature} {unit} rain showers later today', { temperature, unit })
- : t('weather_status', '{temperature} {unit} rain showers', { temperature, unit }),
+ ? t('weather_status', '{temperature} {unit} rainfall showers later today', { temperature, unit })
+ : t('weather_status', '{temperature} {unit} rainfall showers', { temperature, unit }),
},
rainshowers_night: {
icon: 'icon-rainshowers-night',
text: (temperature, unit, later = false) => later
- ? t('weather_status', '{temperature} {unit} rain showers later today', { temperature, unit })
- : t('weather_status', '{temperature} {unit} rain showers', { temperature, unit }),
+ ? t('weather_status', '{temperature} {unit} rainfall showers later today', { temperature, unit })
+ : t('weather_status', '{temperature} {unit} rainfall showers', { temperature, unit }),
},
lightrainshowers_day: {
icon: 'icon-light-rainshowers-day',
text: (temperature, unit, later = false) => later
- ? t('weather_status', '{temperature} {unit} light rain showers later today', { temperature, unit })
- : t('weather_status', '{temperature} {unit} light rain showers', { temperature, unit }),
+ ? t('weather_status', '{temperature} {unit} light rainfall showers later today', { temperature, unit })
+ : t('weather_status', '{temperature} {unit} light rainfall showers', { temperature, unit }),
},
lightrainshowers_night: {
icon: 'icon-light-rainshowers-night',
text: (temperature, unit, later = false) => later
- ? t('weather_status', '{temperature} {unit} light rain showers later today', { temperature, unit })
- : t('weather_status', '{temperature} {unit} light rain showers', { temperature, unit }),
+ ? t('weather_status', '{temperature} {unit} light rainfall showers later today', { temperature, unit })
+ : t('weather_status', '{temperature} {unit} light rainfall showers', { temperature, unit }),
},
heavyrainshowers_day: {
icon: 'icon-heavy-rainshowers-day',
text: (temperature, unit, later = false) => later
- ? t('weather_status', '{temperature} {unit} heavy rain showers later today', { temperature, unit })
- : t('weather_status', '{temperature} {unit} heavy rain showers', { temperature, unit }),
+ ? t('weather_status', '{temperature} {unit} heavy rainfall showers later today', { temperature, unit })
+ : t('weather_status', '{temperature} {unit} heavy rainfall showers', { temperature, unit }),
},
heavyrainshowers_night: {
icon: 'icon-heavy-rainshowers-night',
text: (temperature, unit, later = false) => later
- ? t('weather_status', '{temperature} {unit} heavy rain showers later today', { temperature, unit })
- : t('weather_status', '{temperature} {unit} heavy rain showers', { temperature, unit }),
+ ? t('weather_status', '{temperature} {unit} heavy rainfall showers later today', { temperature, unit })
+ : t('weather_status', '{temperature} {unit} heavy rainfall showers', { temperature, unit }),
},
}