@bimplus/navigation 0.0.225 → 0.0.227
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/assets/@bimplus/navigation/languages/.github/copilot-instructions.md +105 -0
- package/assets/@bimplus/navigation/languages/.github/instructions/cowork.instructions.md +105 -0
- package/assets/@bimplus/navigation/languages/strings_cs.json +3 -2
- package/assets/@bimplus/navigation/languages/strings_de.json +3 -2
- package/assets/@bimplus/navigation/languages/strings_en.json +26 -3
- package/assets/@bimplus/navigation/languages/strings_es.json +3 -2
- package/assets/@bimplus/navigation/languages/strings_fr.json +3 -2
- package/assets/@bimplus/navigation/languages/strings_it.json +3 -2
- package/assets/@bimplus/navigation/languages/strings_nl.json +1 -0
- package/assets/@bimplus/navigation/languages/strings_ro.json +3 -2
- package/assets/@bimplus/navigation/languages/strings_ru.json +3 -2
- package/assets/@bimplus/navigation/languages/strings_tr.json +3 -2
- package/assets/@bimplus/navigation/languages/strings_us.json +3 -2
- package/fesm2022/bimplus-navigation.mjs +28 -3
- package/fesm2022/bimplus-navigation.mjs.map +1 -1
- package/index.d.ts +6 -2
- package/package.json +1 -1
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
# Localization Workflow
|
|
2
|
+
|
|
3
|
+
This repository is a Git submodule used by depending projects to provide localization strings for the Bimplus domain.
|
|
4
|
+
|
|
5
|
+
## Responsibilities
|
|
6
|
+
|
|
7
|
+
| Task | Owner |
|
|
8
|
+
|------|-------|
|
|
9
|
+
| Define and maintain `strings_en.json` | Development team |
|
|
10
|
+
| Translate all other language files (`strings_de.json`, `strings_fr.json`, etc.) | Documentation / Localization team |
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Workflow
|
|
15
|
+
|
|
16
|
+
### 1. Adding or changing English strings
|
|
17
|
+
|
|
18
|
+
English (`strings_en.json`) is the **source language** and the only file maintained directly in this repository by the development team.
|
|
19
|
+
|
|
20
|
+
After modifying `strings_en.json`, copy the updated file **manually** to the localization share:
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
\\devpool-ahq\PM_Projects\15_160_Bim+ Web\Localization\bim-client\
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Notify the documentation team that new or changed strings are available for translation.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
### 2. Receiving translated files
|
|
31
|
+
|
|
32
|
+
Once the documentation team has finished a translation, they will place the updated language file(s) back in the same network share:
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
\\devpool-ahq\PM_Projects\15_160_Bim+ Web\Localization\bim-client\
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Copy the updated language file(s) from the share into this repository, replacing the existing file(s):
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
strings_cs.json – Czech
|
|
42
|
+
strings_de.json – German
|
|
43
|
+
strings_es.json – Spanish
|
|
44
|
+
strings_fr.json – French
|
|
45
|
+
strings_it.json – Italian
|
|
46
|
+
strings_nl.json – Dutch
|
|
47
|
+
strings_ro.json – Romanian
|
|
48
|
+
strings_ru.json – Russian
|
|
49
|
+
strings_tr.json – Turkish
|
|
50
|
+
strings_us.json – English (US)
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Commit and push the changes to this repository:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
git add strings_*.json
|
|
57
|
+
git commit -m "chore(i18n): update translations from localization team"
|
|
58
|
+
git push
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
---
|
|
62
|
+
|
|
63
|
+
### 3. Updating the submodule in depending projects
|
|
64
|
+
|
|
65
|
+
Every project that consumes this repository as a Git submodule must update its submodule reference after new translations are pushed.
|
|
66
|
+
|
|
67
|
+
Run the following commands inside the depending project repository:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
# Navigate to the submodule folder (adjust path if needed)
|
|
71
|
+
cd <path-to-submodule>
|
|
72
|
+
|
|
73
|
+
# Pull the latest changes in the submodule
|
|
74
|
+
git pull origin <branch>
|
|
75
|
+
|
|
76
|
+
# Go back to the root of the depending project
|
|
77
|
+
cd <root-of-depending-project>
|
|
78
|
+
|
|
79
|
+
# Stage the updated submodule reference
|
|
80
|
+
git add <path-to-submodule>
|
|
81
|
+
|
|
82
|
+
git commit -m "chore(i18n): update lang-module submodule"
|
|
83
|
+
git push
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Repeat this for every project that uses the `lang-module` submodule.
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## Language file format
|
|
91
|
+
|
|
92
|
+
All string files are plain JSON objects where each key is prefixed with `_` and the value is the translated string. Example (`strings_en.json`):
|
|
93
|
+
|
|
94
|
+
```json
|
|
95
|
+
{
|
|
96
|
+
"_Ok": "OK",
|
|
97
|
+
"_Cancel": "Cancel",
|
|
98
|
+
"_Save": "Save"
|
|
99
|
+
}
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
- **Do not** change keys — they are referenced directly in the application code.
|
|
103
|
+
- **Do not** translate or modify `strings_en.json` — that is the responsibility of the development team.
|
|
104
|
+
- New keys must always be added to `strings_en.json` first before any translation is requested.
|
|
105
|
+
- New keys must follow this naming convention: start with `_`, separate each word with `_`, capitalize only the first word, and use lowercase for all subsequent words. Example: `_Drawing_2D_use_crop_tool_description`.
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
---
|
|
2
|
+
applyTo: "**"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Cowork Localization String Reference
|
|
6
|
+
|
|
7
|
+
Epic: [ACDC-33629](https://nemetschekprime.atlassian.net/browse/ACDC-33629)
|
|
8
|
+
|
|
9
|
+
This file documents all localization string keys used across the Cowork feature screens.
|
|
10
|
+
Use this as a reference when implementing UI labels to ensure consistency and avoid adding duplicate keys.
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Cowork Project List (table columns & breadcrumb)
|
|
15
|
+
|
|
16
|
+
| UI label | Key | Value |
|
|
17
|
+
|---|---|---|
|
|
18
|
+
| Cowork projects (breadcrumb) | `_Cowork_projects` | "Cowork projects" |
|
|
19
|
+
| Project name | `_Project_Name` | "Project name" |
|
|
20
|
+
| Author | `_Author` | "Author" |
|
|
21
|
+
| Project type | `_Project_type` | "Project type" |
|
|
22
|
+
| Date created | `_Date_Created` | "Date created" |
|
|
23
|
+
| Address | `address` | "Address" |
|
|
24
|
+
| Size | `size` | "Size" |
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Cowork Project Properties Panel
|
|
29
|
+
|
|
30
|
+
| UI label | Key | Value |
|
|
31
|
+
|---|---|---|
|
|
32
|
+
| Properties | `_Portal_Properties` | "Properties" |
|
|
33
|
+
| Image | `_image` | "Image" |
|
|
34
|
+
| Project details (section header) | `_Project_details` | "Project details" |
|
|
35
|
+
| Name | `_Name` | "Name" |
|
|
36
|
+
| Description | `_Description` | "Description" |
|
|
37
|
+
| Created on | `createdOn` | "Created on" |
|
|
38
|
+
| Address (section header) | `address` | "Address" |
|
|
39
|
+
| Street | `street` | "Street" |
|
|
40
|
+
| Zip | `zip` | "ZIP" |
|
|
41
|
+
| City | `city` | "City" |
|
|
42
|
+
| Country | `country` | "Country" |
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Backup Documents List (table columns & breadcrumb)
|
|
47
|
+
|
|
48
|
+
| UI label | Key | Value |
|
|
49
|
+
|---|---|---|
|
|
50
|
+
| Backups (breadcrumb) | `_Backups` | "Backups" |
|
|
51
|
+
| Name | `_Name` | "Name" |
|
|
52
|
+
| Size | `size` | "Size" |
|
|
53
|
+
| Created on | `createdOn` | "Created on" |
|
|
54
|
+
| Modified on | `_Modified_on` | "Modified on" |
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Backup Document Properties Panel
|
|
59
|
+
|
|
60
|
+
| UI label | Key | Value |
|
|
61
|
+
|---|---|---|
|
|
62
|
+
| Backup details (section header) | `_Backup_details` | "Backup details" |
|
|
63
|
+
| File name | `_Filename` | "File name" |
|
|
64
|
+
| Description | `_Description` | "Description" |
|
|
65
|
+
| Version | `_Version` | "Version" |
|
|
66
|
+
| Created on | `createdOn` | "Created on" |
|
|
67
|
+
| Owner | `_Owner` | "Owner" |
|
|
68
|
+
| Owner Company | `_Owner_company` | "Owner Company" |
|
|
69
|
+
| Modified by User | `_Modified_by_user` | "Modified by User" |
|
|
70
|
+
| Modified by Company | `_Modified_by_company` | "Modified by Company" |
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## Backup Settings Page
|
|
75
|
+
|
|
76
|
+
| UI label | Key | Value |
|
|
77
|
+
|---|---|---|
|
|
78
|
+
| Backup Settings (page title) | `_Backup_settings` | "Backup Settings" |
|
|
79
|
+
| Activate | `_Activate` | "Activate" |
|
|
80
|
+
| Backup Start | `_Backup_Start` | "Backup Start" |
|
|
81
|
+
| Backup Repetition | `_Backup_Repetition` | "Backup Repetition" |
|
|
82
|
+
| Every … Days (combined) | `_Every__days` | "every %@ days" |
|
|
83
|
+
| Days (standalone label) | `_Days` | "Days" |
|
|
84
|
+
| Save | `_Save` | "Save" |
|
|
85
|
+
| Reset | `_Reset` | "Reset" |
|
|
86
|
+
|
|
87
|
+
> **Note on "Every … Days":** Use `_Every__days` when the number is embedded in a single string (e.g. "every 3 days"). Use `_Days` as a standalone label if the dropdown sits between two separate labels.
|
|
88
|
+
|
|
89
|
+
---
|
|
90
|
+
|
|
91
|
+
## Old-style keys (no `_` prefix)
|
|
92
|
+
|
|
93
|
+
Several keys in this feature use the legacy key format without a `_` prefix. These pre-date the current naming convention and must not be renamed, as they are referenced in production code.
|
|
94
|
+
|
|
95
|
+
| Key | Value |
|
|
96
|
+
|---|---|
|
|
97
|
+
| `author` | "Author" |
|
|
98
|
+
| `createdOn` | "Created on" |
|
|
99
|
+
| `modifiedAt` | "Modified" |
|
|
100
|
+
| `size` | "Size" |
|
|
101
|
+
| `address` | "Address" |
|
|
102
|
+
| `street` | "Street" |
|
|
103
|
+
| `zip` | "ZIP" |
|
|
104
|
+
| `city` | "City" |
|
|
105
|
+
| `country` | "Country" |
|
|
@@ -779,9 +779,9 @@
|
|
|
779
779
|
"_roles_groupAdmin": "Správce skupiny",
|
|
780
780
|
"_roles_groupMember": "Člen skupiny",
|
|
781
781
|
"_Add_new_group": "Přidat skupinu",
|
|
782
|
-
"
|
|
782
|
+
"_Creating_new_group": "Vytváří se skupina",
|
|
783
783
|
"_Failed_to_create_group": "Skupinu nelze vytvořit",
|
|
784
|
-
"
|
|
784
|
+
"_Deleting_group": "Mažu skupinu",
|
|
785
785
|
"_Rename_group": "Přejmenovat skupinu",
|
|
786
786
|
"_Group_name_exist": "Skupina s tímto názvem již existuje",
|
|
787
787
|
"_Renaming_group": "Přejmenovávám skupinu",
|
|
@@ -2390,5 +2390,6 @@
|
|
|
2390
2390
|
"_Select_two_points_on_the_drawing_2D_2": "Vyberte dva stejné body na 2D výkresu",
|
|
2391
2391
|
"_Click_apply": "Klikněte na POUŽÍT",
|
|
2392
2392
|
"_Select_object_from_3D_model_or_Click_APPLY": "Vyberte objekt z 3D modelu nebo klikněte na tlačítko POUŽÍT",
|
|
2393
|
+
"_Add_to_Models": "Přidat do modelů",
|
|
2393
2394
|
"_Open_new_file": "Otevřít nový soubor"
|
|
2394
2395
|
}
|
|
@@ -779,9 +779,9 @@
|
|
|
779
779
|
"_roles_groupAdmin": "Gruppenadministrator",
|
|
780
780
|
"_roles_groupMember": "Gruppenmitglied",
|
|
781
781
|
"_Add_new_group": "Gruppe hinzufügen",
|
|
782
|
-
"
|
|
782
|
+
"_Creating_new_group": "Neue Gruppe wird erzeugt",
|
|
783
783
|
"_Failed_to_create_group": "Die Gruppe konnte nicht erzeugt werden",
|
|
784
|
-
"
|
|
784
|
+
"_Deleting_group": "Gruppe wird gelöscht",
|
|
785
785
|
"_Rename_group": "Gruppe umbenennen",
|
|
786
786
|
"_Group_name_exist": "Eine Gruppe mit diesem Namen existiert bereits",
|
|
787
787
|
"_Renaming_group": "Gruppe wird umbenannt",
|
|
@@ -2415,5 +2415,6 @@
|
|
|
2415
2415
|
"_Invitation_license_note_2": "Die Mitglieder werden nicht standardmäßig zu den Projekten hinzugefügt. Sie müssen bei Bedarf manuell zu jedem Projekt hinzugefügt werden. Admins werden automatisch zu allen Projekten hinzugefügt.",
|
|
2416
2416
|
"_Note": "Hinweis:",
|
|
2417
2417
|
"_Contact_form": "Kontakt-Formular",
|
|
2418
|
+
"_Add_to_Models": "Zu Modellen hinzufügen",
|
|
2418
2419
|
"_Open_new_file": "Neue Datei öffnen"
|
|
2419
2420
|
}
|
|
@@ -779,9 +779,9 @@
|
|
|
779
779
|
"_roles_groupAdmin": "Group admin",
|
|
780
780
|
"_roles_groupMember": "Group member",
|
|
781
781
|
"_Add_new_group": "Add group",
|
|
782
|
-
"
|
|
782
|
+
"_Creating_new_group": "Creating new group",
|
|
783
783
|
"_Failed_to_create_group": "Failed to create group",
|
|
784
|
-
"
|
|
784
|
+
"_Deleting_group": "Deleting group",
|
|
785
785
|
"_Rename_group": "Rename group",
|
|
786
786
|
"_Group_name_exist": "A group with this name already exists",
|
|
787
787
|
"_Renaming_group": "Renaming group",
|
|
@@ -2419,5 +2419,28 @@
|
|
|
2419
2419
|
"_Unsupported_File_Error_Dialog_Message": "You are trying to upload a file that is not compatible with our system.",
|
|
2420
2420
|
"_Unsupported_File_Error_Dialog_Info": "Accepted format: ",
|
|
2421
2421
|
"_Add_to_Models": "Add to Models",
|
|
2422
|
-
"_Open_new_file" : "Open new file"
|
|
2422
|
+
"_Open_new_file" : "Open new file",
|
|
2423
|
+
"_Open_Cloud_Viewer_File": "Open your file",
|
|
2424
|
+
"_Only_These_File_Types_Are_Supported": "Supported formats: ",
|
|
2425
|
+
"_Error_Loading_File_Cloud_Viewer_Message": "Error occurred while reading the file. The model cannot be displayed.",
|
|
2426
|
+
"_Company_storage": "Company storage",
|
|
2427
|
+
"_Used_cache": "Used cache",
|
|
2428
|
+
"_Backup_settings": "Backup Settings",
|
|
2429
|
+
"_Project_backup_conditions": "Project backup conditions",
|
|
2430
|
+
"_Backup_activate_tooltip": "Project backup will not be performed when:\n- Available storage quota was reached\n- Project was not changed since previous backup\n",
|
|
2431
|
+
"_Days": "Days",
|
|
2432
|
+
"_Cowork_projects": "Cowork projects",
|
|
2433
|
+
"_Backups": "Backups",
|
|
2434
|
+
"_Backup_file_name": "Backup File Name",
|
|
2435
|
+
"_Backups_Tooltip": "Manage backups",
|
|
2436
|
+
"_Modified_on": "Modified on",
|
|
2437
|
+
"_Backup_details": "Backup details",
|
|
2438
|
+
"_Owner": "Owner",
|
|
2439
|
+
"_Owner_company": "Owner Company",
|
|
2440
|
+
"_Modified_by_user": "Modified by User",
|
|
2441
|
+
"_Modified_by_company": "Modified by Company",
|
|
2442
|
+
"_Project_type": "Project type",
|
|
2443
|
+
"_BIMPLUS": "BIMPLUS",
|
|
2444
|
+
"_Cowork": "Cowork",
|
|
2445
|
+
"_AddNewBimplusProject": "Add BIMPLUS project"
|
|
2423
2446
|
}
|
|
@@ -779,9 +779,9 @@
|
|
|
779
779
|
"_roles_groupAdmin": "Administrador de grupo",
|
|
780
780
|
"_roles_groupMember": "Miembros del grupo",
|
|
781
781
|
"_Add_new_group": "Añadir grupo",
|
|
782
|
-
"
|
|
782
|
+
"_Creating_new_group": "Crear nuevo grupo",
|
|
783
783
|
"_Failed_to_create_group": "No se ha podido crear el grupo",
|
|
784
|
-
"
|
|
784
|
+
"_Deleting_group": "Eliminar grupo",
|
|
785
785
|
"_Rename_group": "Renombrar grupo",
|
|
786
786
|
"_Group_name_exist": "Ya existe un grupo con este nombre",
|
|
787
787
|
"_Renaming_group": "Renombrar grupo",
|
|
@@ -2415,5 +2415,6 @@
|
|
|
2415
2415
|
"_Invitation_license_note_2": "Members are not added to the projects by default. They must be manually added to each project where needed. Admins are added automatically to all projects.",
|
|
2416
2416
|
"_Note": "Note:",
|
|
2417
2417
|
"_Contact_form": "Contact form",
|
|
2418
|
+
"_Add_to_Models": "Agregar a modelos",
|
|
2418
2419
|
"_Open_new_file": "Abrir nuevo archivo"
|
|
2419
2420
|
}
|
|
@@ -779,9 +779,9 @@
|
|
|
779
779
|
"_roles_groupAdmin": "Administrateur de groupe",
|
|
780
780
|
"_roles_groupMember": "Membre d'un groupe",
|
|
781
781
|
"_Add_new_group": "Insérer un groupe",
|
|
782
|
-
"
|
|
782
|
+
"_Creating_new_group": "Création d'un nouveau groupe",
|
|
783
783
|
"_Failed_to_create_group": "Impossible de créer le groupe",
|
|
784
|
-
"
|
|
784
|
+
"_Deleting_group": "Suppression du groupe",
|
|
785
785
|
"_Rename_group": "Renommer le groupe",
|
|
786
786
|
"_Group_name_exist": "Un groupe portant ce nom existe déjà",
|
|
787
787
|
"_Renaming_group": "Groupe renommé",
|
|
@@ -2415,5 +2415,6 @@
|
|
|
2415
2415
|
"_Invitation_license_note_2": "Members are not added to the projects by default. They must be manually added to each project where needed. Admins are added automatically to all projects.",
|
|
2416
2416
|
"_Note": "Note:",
|
|
2417
2417
|
"_Contact_form": "Contact form",
|
|
2418
|
+
"_Add_to_Models": "Ajouter aux modèles",
|
|
2418
2419
|
"_Open_new_file": "Ouvrir un nouveau fichier"
|
|
2419
2420
|
}
|
|
@@ -779,9 +779,9 @@
|
|
|
779
779
|
"_roles_groupAdmin": "Gestione gruppo",
|
|
780
780
|
"_roles_groupMember": "Membri gruppo",
|
|
781
781
|
"_Add_new_group": "Aggiungi gruppo",
|
|
782
|
-
"
|
|
782
|
+
"_Creating_new_group": "Creazione nuovo gruppo",
|
|
783
783
|
"_Failed_to_create_group": "Non è stato possibile creare il gruppo",
|
|
784
|
-
"
|
|
784
|
+
"_Deleting_group": "Cancellazione gruppo",
|
|
785
785
|
"_Rename_group": "Rinomina gruppo",
|
|
786
786
|
"_Group_name_exist": "Esiste già un gruppo con questo nome",
|
|
787
787
|
"_Renaming_group": "Cambio nome gruppo",
|
|
@@ -2415,5 +2415,6 @@
|
|
|
2415
2415
|
"_Invitation_license_note_2": "Members are not added to the projects by default. They must be manually added to each project where needed. Admins are added automatically to all projects.",
|
|
2416
2416
|
"_Note": "Note:",
|
|
2417
2417
|
"_Contact_form": "Contact form",
|
|
2418
|
+
"_Add_to_Models": "Aggiungi ai modelli",
|
|
2418
2419
|
"_Open_new_file": "Apri nuovo file"
|
|
2419
2420
|
}
|
|
@@ -779,9 +779,9 @@
|
|
|
779
779
|
"_roles_groupAdmin": "Administrator grupa",
|
|
780
780
|
"_roles_groupMember": "Membru grupa",
|
|
781
781
|
"_Add_new_group": "Adaugare grupa",
|
|
782
|
-
"
|
|
782
|
+
"_Creating_new_group": "Se creeaza grupa noua",
|
|
783
783
|
"_Failed_to_create_group": "Grupa nou nu s-a putut genera",
|
|
784
|
-
"
|
|
784
|
+
"_Deleting_group": "Stergere grupa",
|
|
785
785
|
"_Rename_group": "Redenumire grupa",
|
|
786
786
|
"_Group_name_exist": "Exista deja o grupa cu acest nume",
|
|
787
787
|
"_Renaming_group": "Grupa redenumita",
|
|
@@ -2390,5 +2390,6 @@
|
|
|
2390
2390
|
"_Select_two_points_on_the_drawing_2D_2": "Selectati aceleasi doua puncte pe desenul 2D",
|
|
2391
2391
|
"_Click_apply": "Click Aplicare",
|
|
2392
2392
|
"_Select_object_from_3D_model_or_Click_APPLY": "Selectati obiectul din modelul 3D sau faceti click pe Aplicare",
|
|
2393
|
+
"_Add_to_Models": "Adaugă la modele",
|
|
2393
2394
|
"_Open_new_file": "Deschide fisier nou"
|
|
2394
2395
|
}
|
|
@@ -779,9 +779,9 @@
|
|
|
779
779
|
"_roles_groupAdmin": "Администратор группы",
|
|
780
780
|
"_roles_groupMember": "Участник группы",
|
|
781
781
|
"_Add_new_group": "Добавить группу",
|
|
782
|
-
"
|
|
782
|
+
"_Creating_new_group": "Новая группа создается",
|
|
783
783
|
"_Failed_to_create_group": "Не удалось создать группу",
|
|
784
|
-
"
|
|
784
|
+
"_Deleting_group": "Группа удаляется",
|
|
785
785
|
"_Rename_group": "Переименовать группу",
|
|
786
786
|
"_Group_name_exist": "Группа с этим именем уже существует",
|
|
787
787
|
"_Renaming_group": "Группа переименовывается",
|
|
@@ -2390,5 +2390,6 @@
|
|
|
2390
2390
|
"_Select_two_points_on_the_drawing_2D_2": "Выберите те же две точки в 2D наборе файлов модели",
|
|
2391
2391
|
"_Click_apply": "Нажмите ПРИМЕНИТЬ",
|
|
2392
2392
|
"_Select_object_from_3D_model_or_Click_APPLY": "Выберите объект из 3D-модели или нажмите ПРИМЕНИТЬ",
|
|
2393
|
+
"_Add_to_Models": "Добавить в модели",
|
|
2393
2394
|
"_Open_new_file": "Открыть новый файл"
|
|
2394
2395
|
}
|
|
@@ -779,9 +779,9 @@
|
|
|
779
779
|
"_roles_groupAdmin": "Grup Yöneticisi",
|
|
780
780
|
"_roles_groupMember": "Grup Üyesi",
|
|
781
781
|
"_Add_new_group": "Grup Ekle",
|
|
782
|
-
"
|
|
782
|
+
"_Creating_new_group": "Yeni Grup Oluşturulacak",
|
|
783
783
|
"_Failed_to_create_group": "Grup Oluşturulamadı",
|
|
784
|
-
"
|
|
784
|
+
"_Deleting_group": "Grup Silinecek",
|
|
785
785
|
"_Rename_group": "Grubu İsimlendir",
|
|
786
786
|
"_Group_name_exist": "Bu İsimli Sahip Bir Grup Mevcut",
|
|
787
787
|
"_Renaming_group": "Grup Adlandırılacak",
|
|
@@ -2390,5 +2390,6 @@
|
|
|
2390
2390
|
"_Select_two_points_on_the_drawing_2D_2": "2B çizimde aynı iki noktayı seçin",
|
|
2391
2391
|
"_Click_apply": "UYGULA'ya tıklayın",
|
|
2392
2392
|
"_Select_object_from_3D_model_or_Click_APPLY": "3B modelden objeyi seçin veya UYGULA'ya tıklayın",
|
|
2393
|
+
"_Add_to_Models": "Modellere ekle",
|
|
2393
2394
|
"_Open_new_file": "Yeni dosya aç"
|
|
2394
2395
|
}
|
|
@@ -779,9 +779,9 @@
|
|
|
779
779
|
"_roles_groupAdmin": "Group admin",
|
|
780
780
|
"_roles_groupMember": "Group member",
|
|
781
781
|
"_Add_new_group": "Add group",
|
|
782
|
-
"
|
|
782
|
+
"_Creating_new_group": "Creating new group",
|
|
783
783
|
"_Failed_to_create_group": "Failed to create group",
|
|
784
|
-
"
|
|
784
|
+
"_Deleting_group": "Deleting group",
|
|
785
785
|
"_Rename_group": "Rename group",
|
|
786
786
|
"_Group_name_exist": "A group with this name already exists",
|
|
787
787
|
"_Renaming_group": "Renaming group",
|
|
@@ -2356,5 +2356,6 @@
|
|
|
2356
2356
|
"_AddIns": "Add-Ins",
|
|
2357
2357
|
"_UserRole": "User Role",
|
|
2358
2358
|
"_dashboard_tooltip": "Go to dashboard",
|
|
2359
|
+
"_Add_to_Models": "Add to Models",
|
|
2359
2360
|
"_Open_new_file": "Open new file"
|
|
2360
2361
|
}
|