Merge pull request #1882 from nextcloud/rakekniven-patch-1

chore(i18n): Improved grammar
This commit is contained in:
Enjeck
2025-07-07 07:43:18 +01:00
committed by GitHub

View File

@ -284,7 +284,7 @@ export const useTablesStore = defineStore('store', {
try {
await axios.post(generateOcsUrl(`/apps/tables/api/2/favorites/${NODE_TYPE_VIEW}/${id}`))
} catch (e) {
displayError(e, t('tables', 'Could not favorite view'))
displayError(e, t('tables', 'Could not mark view as favorite'))
return false
}
@ -316,7 +316,7 @@ export const useTablesStore = defineStore('store', {
try {
await axios.post(generateOcsUrl(`/apps/tables/api/2/favorites/${NODE_TYPE_TABLE}/${id}`))
} catch (e) {
displayError(e, t('tables', 'Could not favorite table'))
displayError(e, t('tables', 'Could not mark table as favorite'))
return false
}