Skip to content

Commit 6c57e5a

Browse files
authored
Merge pull request #34 from LibreCodeCoop/chore/transifex-sync-setup
chore: transifex sync setup
2 parents c432433 + e70e83e commit 6c57e5a

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

l10n/.gitkeep

Whitespace-only changes.

openapi-administration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"title": "profile_fields-administration",
55
"version": "0.0.1",
6-
"description": "Structured custom profile data for directories, operations and support teams",
6+
"description": "Extend Nextcloud user profiles with customizable fields, access control, and integration-friendly APIs",
77
"license": {
88
"name": "agpl"
99
}

openapi-full.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"title": "profile_fields-full",
55
"version": "0.0.1",
6-
"description": "Structured custom profile data for directories, operations and support teams",
6+
"description": "Extend Nextcloud user profiles with customizable fields, access control, and integration-friendly APIs",
77
"license": {
88
"name": "agpl"
99
}

openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"info": {
44
"title": "profile_fields",
55
"version": "0.0.1",
6-
"description": "Structured custom profile data for directories, operations and support teams",
6+
"description": "Extend Nextcloud user profiles with customizable fields, access control, and integration-friendly APIs",
77
"license": {
88
"name": "agpl"
99
}

src/components/AdminUserFieldsDialog.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
124124
{{ t('profile_fields', 'Cancel') }}
125125
</NcButton>
126126
<NcButton variant="primary" :disabled="!hasPendingChanges || hasInvalidFields || isSavingAny || isLoading" @click="saveAllFields">
127-
{{ isSavingAny ? t('profile_fields', 'Saving changes...') : t('profile_fields', 'Save changes') }}
127+
{{ isSavingAny ? t('profile_fields', 'Saving changes') : t('profile_fields', 'Save changes') }}
128128
</NcButton>
129129
</template>
130130
</NcDialog>
@@ -184,7 +184,7 @@ export default defineComponent({
184184
185185
const headerUserName = computed(() => props.userDisplayName.trim() !== '' ? props.userDisplayName : props.userUid)
186186
const visibilityFieldLabel = t('profile_fields', 'Who can view this field value')
187-
const loadingMessage = computed(() => t('profile_fields', 'Loading profile fields for {userUid}...', { userUid: props.userUid }))
187+
const loadingMessage = computed(() => t('profile_fields', 'Loading profile fields for {userUid}', { userUid: props.userUid }))
188188
const editableFields = computed<AdminEditableField[]>(() => buildAdminEditableFields(definitions.value, userValues.value))
189189
const isSavingAny = computed(() => savingIds.value.length > 0)
190190
const headerDescription = computed(() => {

src/views/AdminSettings.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ const editorEmptyState = computed(() => sortedDefinitions.value.length === 0
397397
description: t('profile_fields', 'Select a field from the list, or create a new one.'),
398398
})
399399
const configuredFieldsCountLabel = computed(() => n('profile_fields', 'field configured', 'fields configured', definitions.value.length, { count: definitions.value.length }))
400-
const saveActionLabel = computed(() => isSaving.value ? t('profile_fields', 'Saving changes...') : (isEditing.value ? t('profile_fields', 'Save changes') : t('profile_fields', 'Create field')))
400+
const saveActionLabel = computed(() => isSaving.value ? t('profile_fields', 'Saving changes') : (isEditing.value ? t('profile_fields', 'Save changes') : t('profile_fields', 'Create field')))
401401
const editFieldAriaLabel = (label: string) => t('profile_fields', 'Edit field {label}', { label })
402402
const actionsForLabel = (label: string) => t('profile_fields', 'Actions for {label}', { label })
403403
const toggleDefinitionActiveLabel = (definition: FieldDefinition) => definition.active

src/views/PersonalSettings.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ SPDX-License-Identifier: AGPL-3.0-or-later
151151
/>
152152

153153
<NcButton variant="primary" :disabled="isSaving(field.definition.id) || !hasFieldChanges(field)" @click="saveField(field)">
154-
{{ isSaving(field.definition.id) ? t('profile_fields', 'Saving changes...') : t('profile_fields', 'Save changes') }}
154+
{{ isSaving(field.definition.id) ? t('profile_fields', 'Saving changes') : t('profile_fields', 'Save changes') }}
155155
</NcButton>
156156
</div>
157157

src/workflow.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ class WorkflowWebhookOperationElement extends HTMLElement {
681681
urlInput.type = 'url'
682682
urlInput.value = config.url
683683
urlInput.disabled = this.disabledInternal
684-
urlInput.placeholder = t('profile_fields', 'Webhook URL (https://...)')
684+
urlInput.placeholder = t('profile_fields', 'Webhook URL (https://)')
685685
urlInput.className = config.url === '' || isUrlValid ? '' : 'invalid'
686686

687687
const secretInput = document.createElement('input')

0 commit comments

Comments
 (0)