@box/user-selector 1.21.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +379 -0
- package/README.md +47 -0
- package/dist/chunks/user-selector-headless.module.js +16 -0
- package/dist/esm/index.js +6 -0
- package/dist/esm/lib/messages.js +46 -0
- package/dist/esm/lib/shared.js +9 -0
- package/dist/esm/lib/user-selector-container.js +43 -0
- package/dist/esm/lib/user-selector-headless/components/user-avatar.js +32 -0
- package/dist/esm/lib/user-selector-headless/components/user-selector-content.js +51 -0
- package/dist/esm/lib/user-selector-headless/components/user-selector-default-empty.js +43 -0
- package/dist/esm/lib/user-selector-headless/components/user-selector-default-error.js +20 -0
- package/dist/esm/lib/user-selector-headless/components/user-selector-skeleton.js +27 -0
- package/dist/esm/lib/user-selector-headless/hooks/use-avatars.js +22 -0
- package/dist/esm/lib/user-selector-headless/hooks/use-keyboard-navigation.js +27 -0
- package/dist/esm/lib/user-selector-headless/hooks/use-select-options.js +28 -0
- package/dist/esm/lib/user-selector-headless/user-selector-context.js +11 -0
- package/dist/esm/lib/user-selector-headless/user-selector-headless.js +168 -0
- package/dist/esm/lib/user-selector-list-item.js +114 -0
- package/dist/esm/lib/user-selector.js +77 -0
- package/dist/esm/lib/utils/VariantsAggregator.js +46 -0
- package/dist/esm/lib/utils/defaultRenderCustomOption.js +12 -0
- package/dist/esm/lib/utils/getInitials.js +7 -0
- package/dist/esm/lib/utils/isUserContactType.js +6 -0
- package/dist/i18n/bn-IN.js +12 -0
- package/dist/i18n/bn-IN.properties +20 -0
- package/dist/i18n/da-DK.js +12 -0
- package/dist/i18n/da-DK.properties +20 -0
- package/dist/i18n/de-DE.js +12 -0
- package/dist/i18n/de-DE.properties +20 -0
- package/dist/i18n/en-AU.js +12 -0
- package/dist/i18n/en-AU.properties +20 -0
- package/dist/i18n/en-CA.js +12 -0
- package/dist/i18n/en-CA.properties +20 -0
- package/dist/i18n/en-GB.js +12 -0
- package/dist/i18n/en-GB.properties +20 -0
- package/dist/i18n/en-US.js +12 -0
- package/dist/i18n/en-US.properties +20 -0
- package/dist/i18n/en-x-pseudo.js +12 -0
- package/dist/i18n/en-x-pseudo.properties +20 -0
- package/dist/i18n/es-419.js +12 -0
- package/dist/i18n/es-419.properties +20 -0
- package/dist/i18n/es-ES.js +12 -0
- package/dist/i18n/es-ES.properties +20 -0
- package/dist/i18n/fi-FI.js +12 -0
- package/dist/i18n/fi-FI.properties +20 -0
- package/dist/i18n/fr-CA.js +12 -0
- package/dist/i18n/fr-CA.properties +20 -0
- package/dist/i18n/fr-FR.js +12 -0
- package/dist/i18n/fr-FR.properties +20 -0
- package/dist/i18n/hi-IN.js +12 -0
- package/dist/i18n/hi-IN.properties +20 -0
- package/dist/i18n/it-IT.js +12 -0
- package/dist/i18n/it-IT.properties +20 -0
- package/dist/i18n/ja-JP.js +12 -0
- package/dist/i18n/ja-JP.properties +20 -0
- package/dist/i18n/json/src/lib/messages.json +1 -0
- package/dist/i18n/ko-KR.js +12 -0
- package/dist/i18n/ko-KR.properties +20 -0
- package/dist/i18n/nb-NO.js +12 -0
- package/dist/i18n/nb-NO.properties +20 -0
- package/dist/i18n/nl-NL.js +12 -0
- package/dist/i18n/nl-NL.properties +20 -0
- package/dist/i18n/pl-PL.js +12 -0
- package/dist/i18n/pl-PL.properties +20 -0
- package/dist/i18n/pt-BR.js +12 -0
- package/dist/i18n/pt-BR.properties +20 -0
- package/dist/i18n/ru-RU.js +12 -0
- package/dist/i18n/ru-RU.properties +20 -0
- package/dist/i18n/sv-SE.js +12 -0
- package/dist/i18n/sv-SE.properties +20 -0
- package/dist/i18n/tr-TR.js +12 -0
- package/dist/i18n/tr-TR.properties +20 -0
- package/dist/i18n/zh-CN.js +12 -0
- package/dist/i18n/zh-CN.properties +20 -0
- package/dist/i18n/zh-TW.js +12 -0
- package/dist/i18n/zh-TW.properties +20 -0
- package/dist/styles/user-selector-headless.css +1 -0
- package/dist/styles/user-selector-list-item.css +1 -0
- package/dist/styles/user-selector.css +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/lib/messages.d.ts +53 -0
- package/dist/types/lib/shared.d.ts +2 -0
- package/dist/types/lib/stories/shared-headless.d.ts +4 -0
- package/dist/types/lib/stories/shared.d.ts +18 -0
- package/dist/types/lib/stories/utils/getCaretCoordinates.d.ts +5 -0
- package/dist/types/lib/stories/utils/testUsers.d.ts +13 -0
- package/dist/types/lib/types.d.ts +33 -0
- package/dist/types/lib/user-selector-container.d.ts +13 -0
- package/dist/types/lib/user-selector-headless/components/user-avatar.d.ts +6 -0
- package/dist/types/lib/user-selector-headless/components/user-selector-content.d.ts +15 -0
- package/dist/types/lib/user-selector-headless/components/user-selector-default-empty.d.ts +4 -0
- package/dist/types/lib/user-selector-headless/components/user-selector-default-error.d.ts +1 -0
- package/dist/types/lib/user-selector-headless/components/user-selector-skeleton.d.ts +5 -0
- package/dist/types/lib/user-selector-headless/hooks/use-avatars.d.ts +7 -0
- package/dist/types/lib/user-selector-headless/hooks/use-keyboard-navigation.d.ts +11 -0
- package/dist/types/lib/user-selector-headless/hooks/use-select-options.d.ts +14 -0
- package/dist/types/lib/user-selector-headless/types.d.ts +0 -0
- package/dist/types/lib/user-selector-headless/user-selector-context.d.ts +15 -0
- package/dist/types/lib/user-selector-headless/user-selector-headless.d.ts +28 -0
- package/dist/types/lib/user-selector-list-item.d.ts +56 -0
- package/dist/types/lib/user-selector.d.ts +37 -0
- package/dist/types/lib/utils/VariantsAggregator.d.ts +15 -0
- package/dist/types/lib/utils/defaultRenderCustomOption.d.ts +4 -0
- package/dist/types/lib/utils/getInitials.d.ts +1 -0
- package/dist/types/lib/utils/isUserContactType.d.ts +2 -0
- package/package.json +52 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = Ingen samarbejdspartnere blev fundet
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = Vi kunne ikke indlæse brugere
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Prøv igen senere
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Inviter samarbejdspartnere
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = Denne person har ikke adgang og vil ikke blive underrettet, medmindre vedkommende er inviteret.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Indlæser
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = Ingen resultater
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Prøv igen
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = Bruger avatar
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (mig)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "Es wurden keine Mitarbeiter gefunden",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "Wir konnten Benutzer nicht laden",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Bitte wiederholen Sie den Vorgang später erneut",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Mitwirkende einladen",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "Diese Person hat keinen Zugriff und wird nur benachrichtigt, wenn sie eingeladen wird.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Laden",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "Keine Ergebnisse",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Erneut versuchen",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "Benutzeravatar",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (mich)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = Es wurden keine Mitarbeiter gefunden
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = Wir konnten Benutzer nicht laden
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Bitte wiederholen Sie den Vorgang später erneut
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Mitwirkende einladen
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = Diese Person hat keinen Zugriff und wird nur benachrichtigt, wenn sie eingeladen wird.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Laden
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = Keine Ergebnisse
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Erneut versuchen
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = Benutzeravatar
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (mich)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "No collaborators found",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "We were unable to load users",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Please try again later",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Invite Collaborators",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "This person doesn't have access and won't be notified unless invited.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Loading",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "No results",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Try again",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "User avatar",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (me)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = No collaborators found
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = We were unable to load users
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Please try again later
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Invite Collaborators
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = This person doesn't have access and won't be notified unless invited.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Loading
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = No results
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Try again
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = User avatar
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (me)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "No collaborators found",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "We were unable to load users",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Please try again later",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Invite Collaborators",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "This person doesn't have access and won't be notified unless invited.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Loading",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "No results",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Try again",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "User avatar",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (me)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = No collaborators found
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = We were unable to load users
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Please try again later
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Invite Collaborators
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = This person doesn't have access and won't be notified unless invited.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Loading
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = No results
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Try again
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = User avatar
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (me)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "No collaborators found",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "We were unable to load users",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Please try again later",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Invite Collaborators",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "This person doesn't have access and won't be notified unless invited.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Loading",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "No results",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Try again",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "User avatar",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (me)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = No collaborators found
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = We were unable to load users
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Please try again later
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Invite Collaborators
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = This person doesn't have access and won't be notified unless invited.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Loading
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = No results
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Try again
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = User avatar
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (me)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "No collaborators found",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "We were unable to load users",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Please try again later",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Invite Collaborators",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "This person doesn't have access and won't be notified unless invited.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Loading",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "No results",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Try again",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "User avatar",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (me)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = No collaborators found
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = We were unable to load users
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Please try again later
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Invite Collaborators
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = This person doesn't have access and won't be notified unless invited.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Loading
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = No results
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Try again
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = User avatar
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (me)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "⟦萬萬萬萬萬萬 Ňö ćõĺĺâвõґàŧøґѕ ƒοûńď 國國國國國國⟧",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "⟦萬萬萬萬萬萬萬萬 Щĕ шéŕé ůпąвľê ťо ľσäď ůśēґŝ 國國國國國國國國⟧",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "⟦萬萬萬萬萬萬 Pļėáŝĕ ŧѓý àĝάій ĺäţěг 國國國國國國⟧",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "⟦萬萬萬萬萬 Íпνìţê Čŏľĺåвóѓåţóŕѕ 國國國國國⟧",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τħϊş Ρěŕѕôŋ ďôėśň'ŧ ħǻνè ăčсěśś àńď ẁоʼn'ŧ ьė ŋôŧίƒіéď ûлļеѕŝ ĭʼnνίτёď. 國國國國國國國國國國國國國國國國國國國國⟧",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "⟦萬萬 Ļőαďιηğ 國國⟧",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "⟦萬萬 Νо řêŝūľťś 國國⟧",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "⟦萬萬 ŦŕУ ăğäιή 國國⟧",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "⟦萬萬萬 Ũŝéґ άνäτǻř 國國國⟧",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "⟦萬萬萬萬萬萬萬 {name} {isCurrentUser, select, true { (mē)} other {}} 國國國國國國國⟧"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = ⟦萬萬萬萬萬萬 Ňö ćõĺĺâвõґàŧøґѕ ƒοûńď 國國國國國國⟧
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = ⟦萬萬萬萬萬萬萬萬 Щĕ шéŕé ůпąвľê ťо ľσäď ůśēґŝ 國國國國國國國國⟧
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = ⟦萬萬萬萬萬萬 Pļėáŝĕ ŧѓý àĝάій ĺäţěг 國國國國國國⟧
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = ⟦萬萬萬萬萬 Íпνìţê Čŏľĺåвóѓåţóŕѕ 國國國國國⟧
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Τħϊş Ρěŕѕôŋ ďôėśň'ŧ ħǻνè ăčсěśś àńď ẁоʼn'ŧ ьė ŋôŧίƒіéď ûлļеѕŝ ĭʼnνίτёď. 國國國國國國國國國國國國國國國國國國國國⟧
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = ⟦萬萬 Ļőαďιηğ 國國⟧
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = ⟦萬萬 Νо řêŝūľťś 國國⟧
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = ⟦萬萬 ŦŕУ ăğäιή 國國⟧
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = ⟦萬萬萬 Ũŝéґ άνäτǻř 國國國⟧
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = ⟦萬萬萬萬萬萬萬 {name} {isCurrentUser, select, true { (mē)} other {}} 國國國國國國國⟧
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "No se ha encontrado ningún colaborador",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "No hemos podido cargar ningún usuario",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Inténtelo de nuevo más tarde",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Invitar colaboradores con",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "Esta persona no tiene acceso y no será notificada a menos que sea invitada.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Cargando",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "No hay resultados",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Inténtelo de nuevo",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "Avatar del usuario",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (yo)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = No se ha encontrado ningún colaborador
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = No hemos podido cargar ningún usuario
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Inténtelo de nuevo más tarde
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Invitar colaboradores con
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = Esta persona no tiene acceso y no será notificada a menos que sea invitada.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Cargando
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = No hay resultados
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Inténtelo de nuevo
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = Avatar del usuario
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (yo)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "No se ha encontrado ningún colaborador",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "No hemos podido cargar ningún usuario",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Inténtelo de nuevo más tarde",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Invitar colaboradores con",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "Esta persona no tiene acceso y no será notificada a menos que sea invitada.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Cargando",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "No hay resultados",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Inténtelo de nuevo",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "Avatar del usuario",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (yo)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = No se ha encontrado ningún colaborador
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = No hemos podido cargar ningún usuario
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Inténtelo de nuevo más tarde
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Invitar colaboradores con
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = Esta persona no tiene acceso y no será notificada a menos que sea invitada.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Cargando
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = No hay resultados
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Inténtelo de nuevo
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = Avatar del usuario
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (yo)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "Ei yhteistyökumppaneita",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "Käyttäjiä ei voitu ladata",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Yritä myöhemmin uudelleen",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Kutsu yhteistyökumppaneita",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "Tällä henkilöllä ei ole käyttöoikeutta eikä hänelle ilmoiteta ellei häntä ole kutsuttu.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Ladataan",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "Ei tuloksia",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Yritä uudelleen",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "Käyttäjän avatar",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (minä)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = Ei yhteistyökumppaneita
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = Käyttäjiä ei voitu ladata
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Yritä myöhemmin uudelleen
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Kutsu yhteistyökumppaneita
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = Tällä henkilöllä ei ole käyttöoikeutta eikä hänelle ilmoiteta ellei häntä ole kutsuttu.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Ladataan
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = Ei tuloksia
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Yritä uudelleen
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = Käyttäjän avatar
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (minä)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "Aucun collaborateur trouvé",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "Nous n'avons pas pu charger les utilisateurs",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Veuillez réessayer ultérieurement",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Inviter des collaborateurs",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "Cette personne n'a pas accès et ne sera pas notifiée à moins d'être invitée.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Chargement",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "Aucun résultat",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Essayer à nouveau",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "Avatar de l'utilisateur",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (moi)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = Aucun collaborateur trouvé
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = Nous n'avons pas pu charger les utilisateurs
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Veuillez réessayer ultérieurement
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Inviter des collaborateurs
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = Cette personne n'a pas accès et ne sera pas notifiée à moins d'être invitée.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Chargement
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = Aucun résultat
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Essayer à nouveau
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = Avatar de l'utilisateur
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (moi)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "Aucun collaborateur trouvé",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "Nous n'avons pas pu charger les utilisateurs",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Veuillez réessayer ultérieurement",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Inviter des collaborateurs",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "Cette personne n'a pas accès et ne sera pas notifiée à moins d'être invitée.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Chargement",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "Aucun résultat",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Essayer à nouveau",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "Avatar de l'utilisateur",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (moi)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = Aucun collaborateur trouvé
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = Nous n'avons pas pu charger les utilisateurs
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Veuillez réessayer ultérieurement
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Inviter des collaborateurs
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = Cette personne n'a pas accès et ne sera pas notifiée à moins d'être invitée.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Chargement
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = Aucun résultat
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Essayer à nouveau
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = Avatar de l'utilisateur
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (moi)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "कोई सहयोगी नहीं मिला",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "हम उपयोगकर्ताओं को लोड नहीं कर सके।",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "कृपया बाद में पुनः प्रयास करें",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "सहयोगियों को आमंत्रित करें",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "इस व्यक्ति के पास एक्सेस नहीं है और जब तक आमंत्रित नहीं किया जाता तब तक उसे सूचित नहीं किया जाएगा।",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "लोड हो रहा है",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "कोई परिणाम नहीं",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "फिर से प्रयास करें",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "उपयोगकर्ता अवतार",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (मुझे)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = कोई सहयोगी नहीं मिला
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = हम उपयोगकर्ताओं को लोड नहीं कर सके।
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = कृपया बाद में पुनः प्रयास करें
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = सहयोगियों को आमंत्रित करें
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = इस व्यक्ति के पास एक्सेस नहीं है और जब तक आमंत्रित नहीं किया जाता तब तक उसे सूचित नहीं किया जाएगा।
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = लोड हो रहा है
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = कोई परिणाम नहीं
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = फिर से प्रयास करें
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = उपयोगकर्ता अवतार
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (मुझे)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "Nessun collaboratore trovato",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "Non è stato possibile caricare gli utenti",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Riprova più tardi",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Invita collaboratori",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "Questa persona non ha accesso e non verrà notificata a meno che non venga invitata.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Caricamento in corso…",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "Nessun risultato",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Riprova",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "Avatar utente",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (io)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = Nessun collaboratore trovato
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = Non è stato possibile caricare gli utenti
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Riprova più tardi
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Invita collaboratori
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = Questa persona non ha accesso e non verrà notificata a meno che non venga invitata.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Caricamento in corso…
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = Nessun risultato
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Riprova
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = Avatar utente
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (io)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "コラボレータが見つかりません",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "ユーザーを読み込めませんでした。",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "後でもう一度やり直してください",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "コラボレータを招待",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "このユーザーにはアクセス権限がないため、招待されない限り通知されません。",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "読み込み中",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "一致する結果がありません",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "もう一度やり直す",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "ユーザーのアバター",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true {(自分)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = コラボレータが見つかりません
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = ユーザーを読み込めませんでした。
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = 後でもう一度やり直してください
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = コラボレータを招待
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = このユーザーにはアクセス権限がないため、招待されない限り通知されません。
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = 読み込み中
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = 一致する結果がありません
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = もう一度やり直す
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = ユーザーのアバター
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true {(自分)} other {}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id":"groupSharedFeatures.userSelector.loading","description":"Aria label for loading indicator","defaultMessage":"Loading"},{"id":"groupSharedFeatures.userSelector.noResults","description":"Text displayed when no results are found","defaultMessage":"No results"},{"id":"groupSharedFeatures.userSelector.tryAgain","description":"Text for the \"Try again\" button","defaultMessage":"Try again"},{"id":"groupSharedFeatures.userSelector.userAvatar","description":"Alt text for user avatar image","defaultMessage":"User avatar"},{"id":"groupSharedFeatures.userSelector.userName","description":"User name with optional \"me\" marker for current user","defaultMessage":"{name} {isCurrentUser, select, true { (me)} other {}}"},{"id":"groupSharedFeatures.userSelector.errorMessage","description":"Text displayed when an error occurs","defaultMessage":"We were unable to load users"},{"id":"groupSharedFeatures.userSelector.errorMessageDescription","description":"Text displayed when an error occurs","defaultMessage":"Please try again later"},{"id":"groupSharedFeatures.userSelector.emptyMessage","description":"Text displayed when no results are found","defaultMessage":"No collaborators found"},{"id":"groupSharedFeatures.userSelector.inviteCollaborators","description":"Text displayed when no results are found and the user can invite collaborators","defaultMessage":"Invite Collaborators"},{"id":"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip","description":"Tooltip text displayed when a user is not a collaborator","defaultMessage":"This person doesn't have access and won't be notified unless invited."}]
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "공동 작업자를 찾을 수 없음",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "사용자를 로드할 수 없습니다",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "나중에 다시 시도하십시오.",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "공동 작업자 초대",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "이 사용자에게는 액세스 권한이 없으며 초대되지 않는 한 알림을 받지 않습니다.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "로드 중",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "결과 없음",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "다시 시도",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "사용자 아바타",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (나)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = 공동 작업자를 찾을 수 없음
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = 사용자를 로드할 수 없습니다
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = 나중에 다시 시도하십시오.
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = 공동 작업자 초대
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = 이 사용자에게는 액세스 권한이 없으며 초대되지 않는 한 알림을 받지 않습니다.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = 로드 중
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = 결과 없음
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = 다시 시도
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = 사용자 아바타
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (나)} other {}}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"groupSharedFeatures.userSelector.emptyMessage": "Fant ingen bidragsytere",
|
|
3
|
+
"groupSharedFeatures.userSelector.errorMessage": "Vi kunne ikke laste inn brukere",
|
|
4
|
+
"groupSharedFeatures.userSelector.errorMessageDescription": "Prøv på nytt senere",
|
|
5
|
+
"groupSharedFeatures.userSelector.inviteCollaborators": "Inviter samarbeidspartnere",
|
|
6
|
+
"groupSharedFeatures.userSelector.inviteCollaboratorsTooltip": "Denne personen har ikke tilgang og vil ikke bli varslet med mindre han er invitert.",
|
|
7
|
+
"groupSharedFeatures.userSelector.loading": "Laster",
|
|
8
|
+
"groupSharedFeatures.userSelector.noResults": "Ingen resultater",
|
|
9
|
+
"groupSharedFeatures.userSelector.tryAgain": "Prøv igjen",
|
|
10
|
+
"groupSharedFeatures.userSelector.userAvatar": "Brukeravatar",
|
|
11
|
+
"groupSharedFeatures.userSelector.userName": "{name} {isCurrentUser, select, true { (meg)} other {}}"
|
|
12
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Text displayed when no results are found
|
|
2
|
+
groupSharedFeatures.userSelector.emptyMessage = Fant ingen bidragsytere
|
|
3
|
+
# Text displayed when an error occurs
|
|
4
|
+
groupSharedFeatures.userSelector.errorMessage = Vi kunne ikke laste inn brukere
|
|
5
|
+
# Text displayed when an error occurs
|
|
6
|
+
groupSharedFeatures.userSelector.errorMessageDescription = Prøv på nytt senere
|
|
7
|
+
# Text displayed when no results are found and the user can invite collaborators
|
|
8
|
+
groupSharedFeatures.userSelector.inviteCollaborators = Inviter samarbeidspartnere
|
|
9
|
+
# Tooltip text displayed when a user is not a collaborator
|
|
10
|
+
groupSharedFeatures.userSelector.inviteCollaboratorsTooltip = Denne personen har ikke tilgang og vil ikke bli varslet med mindre han er invitert.
|
|
11
|
+
# Aria label for loading indicator
|
|
12
|
+
groupSharedFeatures.userSelector.loading = Laster
|
|
13
|
+
# Text displayed when no results are found
|
|
14
|
+
groupSharedFeatures.userSelector.noResults = Ingen resultater
|
|
15
|
+
# Text for the "Try again" button
|
|
16
|
+
groupSharedFeatures.userSelector.tryAgain = Prøv igjen
|
|
17
|
+
# Alt text for user avatar image
|
|
18
|
+
groupSharedFeatures.userSelector.userAvatar = Brukeravatar
|
|
19
|
+
# User name with optional "me" marker for current user
|
|
20
|
+
groupSharedFeatures.userSelector.userName = {name} {isCurrentUser, select, true { (meg)} other {}}
|