mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Rename profiles
This commit is contained in:
parent
76c75a0e7a
commit
3d05c9b443
15 changed files with 133 additions and 133 deletions
|
@ -175,7 +175,7 @@ public class AppPrefs {
|
|||
new SecurityCategory(),
|
||||
new HttpApiCategory(),
|
||||
new WorkflowCategory(),
|
||||
new ProfilesCategory(),
|
||||
new WorkspacesCategory(),
|
||||
new TroubleshootCategory(),
|
||||
new DeveloperCategory())
|
||||
.filter(appPrefsCategory -> appPrefsCategory.show())
|
||||
|
|
|
@ -19,7 +19,7 @@ import org.apache.commons.io.FileUtils;
|
|||
|
||||
import java.nio.file.Files;
|
||||
|
||||
public class ProfileCreationAlert {
|
||||
public class WorkspaceCreationAlert {
|
||||
|
||||
public static void showAsync() {
|
||||
ThreadHelper.runFailableAsync(() -> {
|
||||
|
@ -28,14 +28,14 @@ public class ProfileCreationAlert {
|
|||
}
|
||||
|
||||
private static void show() throws Exception {
|
||||
var name = new SimpleObjectProperty<>("New profile");
|
||||
var name = new SimpleObjectProperty<>("New workspace");
|
||||
var path = new SimpleObjectProperty<>(AppProperties.get().getDataDir());
|
||||
var show = AppWindowHelper.showBlockingAlert(alert -> {
|
||||
alert.setTitle(AppI18n.get("profileCreationAlertTitle"));
|
||||
alert.setTitle(AppI18n.get("workspaceCreationAlertTitle"));
|
||||
var content = new OptionsBuilder()
|
||||
.nameAndDescription("profileName")
|
||||
.nameAndDescription("workspaceName")
|
||||
.addString(name)
|
||||
.nameAndDescription("profilePath")
|
||||
.nameAndDescription("workspacePath")
|
||||
.addPath(path)
|
||||
.buildComp()
|
||||
.minWidth(500)
|
||||
|
@ -54,7 +54,7 @@ public class ProfileCreationAlert {
|
|||
}
|
||||
|
||||
if (Files.exists(path.get()) && !FileUtils.isEmptyDirectory(path.get().toFile())) {
|
||||
ErrorEvent.fromMessage("New profile directory is not empty").expected().handle();
|
||||
ErrorEvent.fromMessage("New workspace directory is not empty").expected().handle();
|
||||
return;
|
||||
}
|
||||
|
|
@ -5,22 +5,22 @@ import io.xpipe.app.core.AppI18n;
|
|||
import io.xpipe.app.fxcomps.Comp;
|
||||
import io.xpipe.app.util.OptionsBuilder;
|
||||
|
||||
public class ProfilesCategory extends AppPrefsCategory {
|
||||
public class WorkspacesCategory extends AppPrefsCategory {
|
||||
|
||||
@Override
|
||||
protected String getId() {
|
||||
return "profiles";
|
||||
return "workspaces";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Comp<?> create() {
|
||||
return new OptionsBuilder()
|
||||
.addTitle("manageProfiles")
|
||||
.addTitle("manageWorkspaces")
|
||||
.sub(new OptionsBuilder()
|
||||
.nameAndDescription("profileAdd")
|
||||
.nameAndDescription("workspaceAdd")
|
||||
.addComp(
|
||||
new ButtonComp(AppI18n.observable("addProfile"),
|
||||
ProfileCreationAlert::showAsync)))
|
||||
new ButtonComp(AppI18n.observable("addWorkspace"),
|
||||
WorkspaceCreationAlert::showAsync)))
|
||||
.buildComp();
|
||||
}
|
||||
}
|
|
@ -490,13 +490,13 @@ closeLeftTabs=Luk faner til venstre
|
|||
closeRightTabs=Luk faner til højre
|
||||
addSerial=Seriel ...
|
||||
connect=Forbind
|
||||
profiles=Profiler
|
||||
manageProfiles=Administrer profiler
|
||||
addProfile=Tilføj profil ...
|
||||
profileAdd=Tilføj en ny profil
|
||||
profileAddDescription=Profiler er forskellige konfigurationer til at køre XPipe. Hver profil har et datakatalog, hvor alle data gemmes lokalt. Det omfatter forbindelsesdata, indstillinger og meget mere.\n\nHvis du bruger synkroniseringsfunktionen, kan du også vælge at synkronisere hver profil med et forskelligt git-repository.
|
||||
profileName=Navn på profil
|
||||
profileNameDescription=Profilens visningsnavn
|
||||
profilePath=Profil sti
|
||||
profilePathDescription=Placeringen af profilens datakatalog
|
||||
profileCreationAlertTitle=Oprettelse af profil
|
||||
workspaces=Arbejdsområder
|
||||
manageWorkspaces=Administrer arbejdsområder
|
||||
addWorkspace=Tilføj arbejdsområde ...
|
||||
workspaceAdd=Tilføj et nyt arbejdsområde
|
||||
workspaceAddDescription=Arbejdsområder er forskellige konfigurationer til at køre XPipe. Hvert arbejdsområde har et datakatalog, hvor alle data gemmes lokalt. Det omfatter forbindelsesdata, indstillinger og meget mere.\n\nHvis du bruger synkroniseringsfunktionen, kan du også vælge at synkronisere hvert arbejdsområde med et forskelligt git-repository.
|
||||
workspaceName=Navn på arbejdsområde
|
||||
workspaceNameDescription=Visningsnavnet på arbejdsområdet
|
||||
workspacePath=Sti til arbejdsområde
|
||||
workspacePathDescription=Placeringen af arbejdsområdets datakatalog
|
||||
workspaceCreationAlertTitle=Oprettelse af arbejdsområde
|
||||
|
|
|
@ -484,13 +484,13 @@ closeLeftTabs=Tabs nach links schließen
|
|||
closeRightTabs=Tabs nach rechts schließen
|
||||
addSerial=Serielle ...
|
||||
connect=Verbinden
|
||||
profiles=Profile
|
||||
manageProfiles=Profile verwalten
|
||||
addProfile=Profil hinzufügen ...
|
||||
profileAdd=Ein neues Profil hinzufügen
|
||||
profileAddDescription=Profile sind unterschiedliche Konfigurationen für den Betrieb von XPipe. Jedes Profil hat ein Datenverzeichnis, in dem alle Daten lokal gespeichert werden. Dazu gehören Verbindungsdaten, Einstellungen und mehr.\n\nWenn du die Synchronisierungsfunktion nutzt, kannst du jedes Profil auch mit einem anderen Git-Repository synchronisieren.
|
||||
profileName=Profilname
|
||||
profileNameDescription=Der Anzeigename des Profils
|
||||
profilePath=Profilpfad
|
||||
profilePathDescription=Der Ort des Profildatenverzeichnisses
|
||||
profileCreationAlertTitle=Profil erstellen
|
||||
workspaces=Arbeitsbereiche
|
||||
manageWorkspaces=Arbeitsbereiche verwalten
|
||||
addWorkspace=Arbeitsbereich hinzufügen ...
|
||||
workspaceAdd=Einen neuen Arbeitsbereich hinzufügen
|
||||
workspaceAddDescription=Arbeitsbereiche sind unterschiedliche Konfigurationen für die Ausführung von XPipe. Jeder Arbeitsbereich hat ein Datenverzeichnis, in dem alle Daten lokal gespeichert werden. Dazu gehören Verbindungsdaten, Einstellungen und mehr.\n\nWenn du die Synchronisierungsfunktion verwendest, kannst du auch wählen, ob du jeden Arbeitsbereich mit einem anderen Git-Repository synchronisieren möchtest.
|
||||
workspaceName=Name des Arbeitsbereichs
|
||||
workspaceNameDescription=Der Anzeigename des Arbeitsbereichs
|
||||
workspacePath=Pfad zum Arbeitsbereich
|
||||
workspacePathDescription=Der Ort des Datenverzeichnisses des Arbeitsbereichs
|
||||
workspaceCreationAlertTitle=Arbeitsbereich erstellen
|
||||
|
|
|
@ -488,13 +488,13 @@ closeLeftTabs=Close tabs to the left
|
|||
closeRightTabs=Close tabs to the right
|
||||
addSerial=Serial ...
|
||||
connect=Connect
|
||||
profiles=Profiles
|
||||
manageProfiles=Manage profiles
|
||||
addProfile=Add profile ...
|
||||
profileAdd=Add a new profile
|
||||
profileAddDescription=Profiles are distinct configurations for running XPipe. Every profile has a data directory where all data is stored locally. This includes connection data, settings, and more.\n\nIf you use the synchronization feature, you can also choose to synchronize each profile with a different git repository.
|
||||
profileName=Profile name
|
||||
profileNameDescription=The display name of the profile
|
||||
profilePath=Profile path
|
||||
profilePathDescription=The location of the profile data directory
|
||||
profileCreationAlertTitle=Profile creation
|
||||
workspaces=Workspaces
|
||||
manageWorkspaces=Manage workspaces
|
||||
addWorkspace=Add workspace ...
|
||||
workspaceAdd=Add a new workspace
|
||||
workspaceAddDescription=Workspaces are distinct configurations for running XPipe. Every workspace has a data directory where all data is stored locally. This includes connection data, settings, and more.\n\nIf you use the synchronization feature, you can also choose to synchronize each workspace with a different git repository.
|
||||
workspaceName=Workspace name
|
||||
workspaceNameDescription=The display name of the workspace
|
||||
workspacePath=Workspace path
|
||||
workspacePathDescription=The location of the workspace data directory
|
||||
workspaceCreationAlertTitle=Workspace creation
|
||||
|
|
|
@ -471,13 +471,13 @@ closeLeftTabs=Cerrar pestañas a la izquierda
|
|||
closeRightTabs=Cerrar pestañas a la derecha
|
||||
addSerial=Serie ...
|
||||
connect=Conecta
|
||||
profiles=Perfiles
|
||||
manageProfiles=Gestionar perfiles
|
||||
addProfile=Añadir perfil ...
|
||||
profileAdd=Añadir un nuevo perfil
|
||||
profileAddDescription=Los perfiles son configuraciones distintas para ejecutar XPipe. Cada perfil tiene un directorio de datos donde se almacenan localmente todos los datos. Esto incluye datos de conexión, configuraciones y más.\n\nSi utilizas la función de sincronización, también puedes elegir sincronizar cada perfil con un repositorio git diferente.
|
||||
profileName=Nombre del perfil
|
||||
profileNameDescription=El nombre para mostrar del perfil
|
||||
profilePath=Ruta del perfil
|
||||
profilePathDescription=La ubicación del directorio de datos del perfil
|
||||
profileCreationAlertTitle=Creación de perfiles
|
||||
workspaces=Espacios de trabajo
|
||||
manageWorkspaces=Gestionar espacios de trabajo
|
||||
addWorkspace=Añadir espacio de trabajo ...
|
||||
workspaceAdd=Añadir un nuevo espacio de trabajo
|
||||
workspaceAddDescription=Los espacios de trabajo son configuraciones distintas para ejecutar XPipe. Cada espacio de trabajo tiene un directorio de datos donde se almacenan localmente todos los datos. Esto incluye datos de conexión, configuraciones y más.\n\nSi utilizas la función de sincronización, también puedes elegir sincronizar cada espacio de trabajo con un repositorio git diferente.
|
||||
workspaceName=Nombre del espacio de trabajo
|
||||
workspaceNameDescription=El nombre para mostrar del espacio de trabajo
|
||||
workspacePath=Ruta del espacio de trabajo
|
||||
workspacePathDescription=La ubicación del directorio de datos del espacio de trabajo
|
||||
workspaceCreationAlertTitle=Creación de espacios de trabajo
|
||||
|
|
|
@ -471,13 +471,13 @@ closeLeftTabs=Ferme les onglets à gauche
|
|||
closeRightTabs=Ferme les onglets à droite
|
||||
addSerial=Série ...
|
||||
connect=Connecter
|
||||
profiles=Profils
|
||||
manageProfiles=Gérer les profils
|
||||
addProfile=Ajouter un profil ...
|
||||
profileAdd=Ajouter un nouveau profil
|
||||
profileAddDescription=Les profils sont des configurations distinctes pour l'exécution de XPipe. Chaque profil possède un répertoire de données où toutes les données sont stockées localement. Cela comprend les données de connexion, les paramètres, et plus encore.\n\nSi tu utilises la fonction de synchronisation, tu peux aussi choisir de synchroniser chaque profil avec un dépôt git différent.
|
||||
profileName=Nom du profil
|
||||
profileNameDescription=Le nom d'affichage du profil
|
||||
profilePath=Chemin du profil
|
||||
profilePathDescription=L'emplacement du répertoire des données de profil
|
||||
profileCreationAlertTitle=Création de profil
|
||||
workspaces=Espaces de travail
|
||||
manageWorkspaces=Gérer les espaces de travail
|
||||
addWorkspace=Ajouter un espace de travail ...
|
||||
workspaceAdd=Ajouter un nouvel espace de travail
|
||||
workspaceAddDescription=Les espaces de travail sont des configurations distinctes pour l'exécution de XPipe. Chaque espace de travail possède un répertoire de données où toutes les données sont stockées localement. Cela comprend les données de connexion, les paramètres, et plus encore.\n\nSi tu utilises la fonctionnalité de synchronisation, tu peux aussi choisir de synchroniser chaque espace de travail avec un dépôt git différent.
|
||||
workspaceName=Nom de l'espace de travail
|
||||
workspaceNameDescription=Le nom d'affichage de l'espace de travail
|
||||
workspacePath=Chemin d'accès à l'espace de travail
|
||||
workspacePathDescription=L'emplacement du répertoire de données de l'espace de travail
|
||||
workspaceCreationAlertTitle=Création d'un espace de travail
|
||||
|
|
|
@ -471,13 +471,13 @@ closeLeftTabs=Chiudere le schede a sinistra
|
|||
closeRightTabs=Chiudere le schede a destra
|
||||
addSerial=Seriale ...
|
||||
connect=Collegare
|
||||
profiles=Profili
|
||||
manageProfiles=Gestire i profili
|
||||
addProfile=Aggiungi profilo ...
|
||||
profileAdd=Aggiungere un nuovo profilo
|
||||
profileAddDescription=I profili sono configurazioni distinte per l'esecuzione di XPipe. Ogni profilo ha una directory di dati in cui vengono memorizzati tutti i dati a livello locale. Questi includono i dati di connessione, le impostazioni e altro ancora.\n\nSe utilizzi la funzione di sincronizzazione, puoi anche scegliere di sincronizzare ogni profilo con un repository git diverso.
|
||||
profileName=Nome del profilo
|
||||
profileNameDescription=Il nome visualizzato del profilo
|
||||
profilePath=Percorso del profilo
|
||||
profilePathDescription=La posizione della directory dei dati del profilo
|
||||
profileCreationAlertTitle=Creazione di un profilo
|
||||
workspaces=Spazi di lavoro
|
||||
manageWorkspaces=Gestire gli spazi di lavoro
|
||||
addWorkspace=Aggiungi spazio di lavoro ...
|
||||
workspaceAdd=Aggiungere un nuovo spazio di lavoro
|
||||
workspaceAddDescription=Gli spazi di lavoro sono configurazioni distinte per l'esecuzione di XPipe. Ogni workspace ha una directory di dati in cui vengono memorizzati tutti i dati a livello locale. Questi includono i dati di connessione, le impostazioni e altro ancora.\n\nSe utilizzi la funzione di sincronizzazione, puoi anche scegliere di sincronizzare ogni workspace con un repository git diverso.
|
||||
workspaceName=Nome dello spazio di lavoro
|
||||
workspaceNameDescription=Il nome di visualizzazione dell'area di lavoro
|
||||
workspacePath=Percorso dello spazio di lavoro
|
||||
workspacePathDescription=La posizione della directory dei dati dell'area di lavoro
|
||||
workspaceCreationAlertTitle=Creazione di uno spazio di lavoro
|
||||
|
|
|
@ -471,13 +471,13 @@ closeLeftTabs=タブを左に閉じる
|
|||
closeRightTabs=タブを右に閉じる
|
||||
addSerial=シリアル ...
|
||||
connect=接続する
|
||||
profiles=プロフィール
|
||||
manageProfiles=プロファイルを管理する
|
||||
addProfile=プロフィールを追加する
|
||||
profileAdd=新しいプロファイルを追加する
|
||||
profileAddDescription=プロファイルは、XPipeを実行するための個別の設定である。各プロファイルには、すべてのデータがローカルに保存されるデータディレクトリがある。これには、接続データや設定などが含まれる。\n\n同期機能を使えば、各プロファイルを異なるgitリポジトリと同期させることもできる。
|
||||
profileName=プロファイル名
|
||||
profileNameDescription=プロファイルの表示名
|
||||
profilePath=プロファイルパス
|
||||
profilePathDescription=プロファイルデータのディレクトリの場所
|
||||
profileCreationAlertTitle=プロファイルの作成
|
||||
workspaces=ワークスペース
|
||||
manageWorkspaces=ワークスペースを管理する
|
||||
addWorkspace=ワークスペースを追加する
|
||||
workspaceAdd=新しいワークスペースを追加する
|
||||
workspaceAddDescription=ワークスペースは、XPipeを実行するための個別の設定である。すべてのワークスペースには、すべてのデータがローカルに保存されるデータ・ディレクトリがある。これには、接続データや設定などが含まれる。\n\n同期機能を使えば、ワークスペースごとに異なるgitリポジトリと同期させることもできる。
|
||||
workspaceName=ワークスペース名
|
||||
workspaceNameDescription=ワークスペースの表示名
|
||||
workspacePath=ワークスペースのパス
|
||||
workspacePathDescription=ワークスペースのデータディレクトリの場所
|
||||
workspaceCreationAlertTitle=ワークスペースの作成
|
||||
|
|
|
@ -471,13 +471,13 @@ closeLeftTabs=Tabbladen naar links sluiten
|
|||
closeRightTabs=Tabbladen naar rechts sluiten
|
||||
addSerial=Serieel ...
|
||||
connect=Maak verbinding met
|
||||
profiles=Profielen
|
||||
manageProfiles=Profielen beheren
|
||||
addProfile=Profiel toevoegen ...
|
||||
profileAdd=Een nieuw profiel toevoegen
|
||||
profileAddDescription=Profielen zijn verschillende configuraties voor het uitvoeren van XPipe. Elk profiel heeft een datamap waar alle gegevens lokaal worden opgeslagen. Dit omvat verbindingsgegevens, instellingen en meer.\n\nAls je de synchronisatiefunctie gebruikt, kun je er ook voor kiezen om elk profiel met een andere git repository te synchroniseren.
|
||||
profileName=Naam profiel
|
||||
profileNameDescription=De weergavenaam van het profiel
|
||||
profilePath=Profiel pad
|
||||
profilePathDescription=De locatie van de profielgegevensmap
|
||||
profileCreationAlertTitle=Profiel maken
|
||||
workspaces=Werkruimten
|
||||
manageWorkspaces=Werkruimten beheren
|
||||
addWorkspace=Werkruimte toevoegen ...
|
||||
workspaceAdd=Een nieuwe werkruimte toevoegen
|
||||
workspaceAddDescription=Workspaces zijn verschillende configuraties voor het uitvoeren van XPipe. Elke workspace heeft een datamap waar alle gegevens lokaal worden opgeslagen. Dit omvat verbindingsgegevens, instellingen en meer.\n\nAls je de synchronisatiefunctie gebruikt, kun je er ook voor kiezen om elke workspace met een andere git repository te synchroniseren.
|
||||
workspaceName=Naam werkruimte
|
||||
workspaceNameDescription=De weergavenaam van de werkruimte
|
||||
workspacePath=Werkruimte pad
|
||||
workspacePathDescription=De locatie van de gegevensmap van de werkruimte
|
||||
workspaceCreationAlertTitle=Werkruimte maken
|
||||
|
|
|
@ -471,13 +471,13 @@ closeLeftTabs=Fecha os separadores à esquerda
|
|||
closeRightTabs=Fecha os separadores à direita
|
||||
addSerial=Série ...
|
||||
connect=Liga-te
|
||||
profiles=Perfis
|
||||
manageProfiles=Gerir perfis
|
||||
addProfile=Adicionar perfil ...
|
||||
profileAdd=Adiciona um novo perfil
|
||||
profileAddDescription=Os perfis são configurações distintas para executar o XPipe. Cada perfil tem um diretório de dados onde todos os dados são armazenados localmente. Isto inclui dados de ligação, definições e muito mais.\n\nSe utilizares a funcionalidade de sincronização, também podes optar por sincronizar cada perfil com um repositório git diferente.
|
||||
profileName=Nome do perfil
|
||||
profileNameDescription=O nome de apresentação do perfil
|
||||
profilePath=Caminho do perfil
|
||||
profilePathDescription=A localização do diretório de dados do perfil
|
||||
profileCreationAlertTitle=Criação de perfil
|
||||
workspaces=Espaços de trabalho
|
||||
manageWorkspaces=Gere espaços de trabalho
|
||||
addWorkspace=Adiciona um espaço de trabalho ...
|
||||
workspaceAdd=Adiciona um novo espaço de trabalho
|
||||
workspaceAddDescription=Os espaços de trabalho são configurações distintas para executar o XPipe. Cada espaço de trabalho tem um diretório de dados onde todos os dados são armazenados localmente. Isto inclui dados de ligação, definições e muito mais.\n\nSe utilizares a funcionalidade de sincronização, também podes optar por sincronizar cada espaço de trabalho com um repositório git diferente.
|
||||
workspaceName=Nome do espaço de trabalho
|
||||
workspaceNameDescription=O nome de apresentação do espaço de trabalho
|
||||
workspacePath=Caminho do espaço de trabalho
|
||||
workspacePathDescription=A localização do diretório de dados do espaço de trabalho
|
||||
workspaceCreationAlertTitle=Criação de espaço de trabalho
|
||||
|
|
|
@ -471,13 +471,13 @@ closeLeftTabs=Закрыть вкладки слева
|
|||
closeRightTabs=Закрывать вкладки справа
|
||||
addSerial=Серийный ...
|
||||
connect=Connect
|
||||
profiles=Профили
|
||||
manageProfiles=Управляй профилями
|
||||
addProfile=Добавь профиль ...
|
||||
profileAdd=Добавьте новый профиль
|
||||
profileAddDescription=Профили - это отдельные конфигурации для запуска XPipe. У каждого профиля есть каталог данных, где все данные хранятся локально. Сюда входят данные о подключении, настройки и многое другое.\n\nЕсли ты используешь функцию синхронизации, ты также можешь выбрать синхронизацию каждого профиля с отдельным git-репозиторием.
|
||||
profileName=Имя профиля
|
||||
profileNameDescription=Отображаемое имя профиля
|
||||
profilePath=Путь к профилю
|
||||
profilePathDescription=Расположение каталога данных профиля
|
||||
profileCreationAlertTitle=Создание профиля
|
||||
workspaces=Рабочие пространства
|
||||
manageWorkspaces=Управляй рабочими пространствами
|
||||
addWorkspace=Добавь рабочее пространство ...
|
||||
workspaceAdd=Добавьте новое рабочее пространство
|
||||
workspaceAddDescription=Рабочие пространства - это отдельные конфигурации для запуска XPipe. В каждом рабочем пространстве есть каталог данных, где все данные хранятся локально. Сюда входят данные о соединениях, настройки и многое другое.\n\nЕсли ты используешь функцию синхронизации, ты также можешь выбрать синхронизацию каждого рабочего пространства с отдельным git-репозиторием.
|
||||
workspaceName=Имя рабочей области
|
||||
workspaceNameDescription=Отображаемое имя рабочей области
|
||||
workspacePath=Путь к рабочему пространству
|
||||
workspacePathDescription=Расположение каталога данных рабочей области
|
||||
workspaceCreationAlertTitle=Создание рабочего пространства
|
||||
|
|
|
@ -472,13 +472,13 @@ closeLeftTabs=Sekmeleri sola doğru kapatın
|
|||
closeRightTabs=Sekmeleri sağa doğru kapatın
|
||||
addSerial=Seri ...
|
||||
connect=Bağlan
|
||||
profiles=Profiller
|
||||
manageProfiles=Profilleri yönetin
|
||||
addProfile=Profil ekle ...
|
||||
profileAdd=Yeni bir profil ekleyin
|
||||
profileAddDescription=Profiller XPipe'ı çalıştırmak için farklı konfigürasyonlardır. Her profil, tüm verilerin yerel olarak depolandığı bir veri dizinine sahiptir. Buna bağlantı verileri, ayarlar ve daha fazlası dahildir.\n\nSenkronizasyon özelliğini kullanırsanız, her profili farklı bir git deposu ile senkronize etmeyi de seçebilirsiniz.
|
||||
profileName=Profil adı
|
||||
profileNameDescription=Profilin görünen adı
|
||||
profilePath=Profil yolu
|
||||
profilePathDescription=Profil veri dizininin konumu
|
||||
profileCreationAlertTitle=Profil oluşturma
|
||||
workspaces=Çalışma Alanları
|
||||
manageWorkspaces=Çalışma alanlarını yönetme
|
||||
addWorkspace=Çalışma alanı ekle ...
|
||||
workspaceAdd=Yeni bir çalışma alanı ekleme
|
||||
workspaceAddDescription=Çalışma alanları XPipe'ı çalıştırmak için farklı konfigürasyonlardır. Her çalışma alanı, tüm verilerin yerel olarak depolandığı bir veri dizinine sahiptir. Buna bağlantı verileri, ayarlar ve daha fazlası dahildir.\n\nSenkronizasyon özelliğini kullanırsanız, her çalışma alanını farklı bir git deposu ile senkronize etmeyi de seçebilirsiniz.
|
||||
workspaceName=Çalışma alanı adı
|
||||
workspaceNameDescription=Çalışma alanının görünen adı
|
||||
workspacePath=Çalışma alanı yolu
|
||||
workspacePathDescription=Çalışma alanı veri dizininin konumu
|
||||
workspaceCreationAlertTitle=Çalışma alanı oluşturma
|
||||
|
|
|
@ -471,13 +471,13 @@ closeLeftTabs=向左关闭标签
|
|||
closeRightTabs=向右关闭标签页
|
||||
addSerial=串行 ...
|
||||
connect=连接
|
||||
profiles=简介
|
||||
manageProfiles=管理配置文件
|
||||
addProfile=添加配置文件...
|
||||
profileAdd=添加新的简介
|
||||
profileAddDescription=配置文件是运行 XPipe 的不同配置。每个配置文件都有一个数据目录,本地存储所有数据。其中包括连接数据、设置等。\n\n如果使用同步功能,您还可以选择将每个配置文件与不同的 git 仓库同步。
|
||||
profileName=简介名称
|
||||
profileNameDescription=配置文件的显示名称
|
||||
profilePath=配置文件路径
|
||||
profilePathDescription=配置文件数据目录的位置
|
||||
profileCreationAlertTitle=创建简介
|
||||
workspaces=工作空间
|
||||
manageWorkspaces=管理工作区
|
||||
addWorkspace=添加工作区 ...
|
||||
workspaceAdd=添加新工作区
|
||||
workspaceAddDescription=工作区是运行 XPipe 的独特配置。每个工作区都有一个数据目录,本地存储所有数据。其中包括连接数据、设置等。\n\n如果使用同步功能,您还可以选择将每个工作区与不同的 git 仓库同步。
|
||||
workspaceName=工作区名称
|
||||
workspaceNameDescription=工作区的显示名称
|
||||
workspacePath=工作区路径
|
||||
workspacePathDescription=工作区数据目录的位置
|
||||
workspaceCreationAlertTitle=创建工作区
|
||||
|
|
Loading…
Reference in a new issue