Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

l10n: Correct spelling #2288

Merged
merged 10 commits into from
Feb 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ All changes: https://github.com/nextcloud/polls/issues?q=is%3Aclosed+milestone%3
- Change checkboxes to a switch style
- added some infos to the information button
- Added a configurable threshold to hide other users' votes:
If too many vote cells are generated, the js performance can break down and lead to a long js runtime. The per user threshold defaults to 1000 cells to display. This needs further optimization for a good UX.
If too many voting cells are generated, the js performance can break down and lead to a long js runtime. The per user threshold defaults to 1000 cells to display. This needs further optimization for a good UX.

### A lot of optimizations under the hood
- Using more server side events
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/Poll/PublicRegisterModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default {
},

privacyRich() {
const subject = t('polls', 'By clicking the "OK"-Button you accept our {privacyPolicy}.')
const subject = t('polls', 'By clicking the "OK" button you accept our {privacyPolicy}.')
const parameters = {
privacyPolicy: {
component: SimpleLink,
Expand Down
4 changes: 2 additions & 2 deletions src/js/components/Settings/AdminSettings/AdminLegal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<template>
<div class="user_settings">
<p class="settings-description">
{{ t('polls', 'The privacy link and the leagal notice link are automatically added to the registration dialog of public polls.') }}
{{ t('polls', 'The privacy link and the legal notice link are automatically added to the registration dialog of public polls.') }}
{{ t('polls', 'As a default the links configured in the theming app are used. For public polls these can be overriden by individual terms.') }}
</p>
<span>{{ t('polls', 'Privacy policy link:') }}</span>
Expand Down Expand Up @@ -61,7 +61,7 @@ export default {
}),

placeholder() {
let privacy = t('polls', 'Enter the URL of your privacy terms')
let privacy = t('polls', 'Enter the URL of your privacy policy')
let imprint = t('polls', 'Enter the URL of your legal notice')
if (this.appSettings.defaultPrivacyUrl) {
privacy = this.appSettings.defaultPrivacyUrl
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<template>
<div class="user_settings">
<span>
{{ t('polls', 'A poll with many options and voters can have a heavy inpact on client performance.') }}
{{ t('polls', 'Set the amount of vote cells (options x participants) up to which all vote cells should be displayed.') }}
{{ t('polls', 'A poll with many options and voters can have a heavy impact on client performance.') }}
{{ t('polls', 'Set the amount of voting cells (options x participants) up to which all voting cells should be displayed.') }}
{{ t('polls', 'If this threshold gets tresspasses only the current user will be displayed, to avoid a performance breakdown.') }}
{{ t('polls', 'The default threshold of 1.000 should be a good and safe value.') }}
{{ t('polls', 'The default threshold of 1000 should be a good and safe value.') }}
</span>
<InputDiv v-model="threshold"
type="number"
Expand Down
6 changes: 3 additions & 3 deletions src/js/views/AdminSettingsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@
<AdminPollCreation />
</SettingsSection>

<SettingsSection :title="t('polls', 'Legal terms for public poll registation')"
:description="t('polls', 'Override the default links of your site to your leagal terms. Leave empty to use the links, which are configured in the theming app.')">
<SettingsSection :title="t('polls', 'Legal terms for public poll registration')"
:description="t('polls', 'Override the default links of your site to your legal terms. Leave empty to use the links, which are configured in the theming app.')">
<AdminLegal />
</SettingsSection>

<SettingsSection :title="t('polls', 'Email options')"
:description="t('polls', 'Add links to legal terms, if they exist and add an optional disclaimer to mails.')">
:description="t('polls', 'Add links to legal terms, if they exist and add an optional disclaimer to emails.')">
<AdminEmail />
</SettingsSection>

Expand Down