diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3a5119a2..fc7fd325 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Contributions are welcome — see [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
+## [1.6.35-build-86] - 2026-08-26
+
+### Added
+
+- App icon selector in Settings with 20 designs on iOS and iPadOS
+
+### Fixed
+
+- Chat context usage now retains LiteLLM's reported prompt-token count and estimates only the newly generated response, falling back to local estimation when usage is unavailable
+
## [1.6.30-build-85] - 2026-08-23
### Added
diff --git a/README.md b/README.md
index 0f4342fe..056238c5 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
-
+
OpenClient connects directly to the AI server you configure, without an OpenClient-hosted proxy or subscription.
diff --git a/TestFlight/WhatToTest.en-US.txt b/TestFlight/WhatToTest.en-US.txt
index 759435a7..1c81cf6e 100644
--- a/TestFlight/WhatToTest.en-US.txt
+++ b/TestFlight/WhatToTest.en-US.txt
@@ -1,14 +1,15 @@
Hi there! We've got some great new features for you in this update.
-***1.6.30:
+***1.6.35:
-• Fixed an issue that could cause the app to freeze when manually scrolling while a model was responding, or after several responses.
-• On macOS, add OpenClient widgets to the desktop or Notification Center and test New Chat, Search, Quick Actions, Continue Chat, Recent, Pinned, and Tagged Conversations.
-• On macOS, add the New Chat control and verify that it opens the app directly in a new conversation.
+• Choose from 20 app icons in Settings on iPhone and iPad.
• Minor bug fixes and improvements for a smoother experience.
***Recent Updates:
+• Fixed an issue that could cause the app to freeze when manually scrolling while a model was responding, or after several responses.
+• On macOS, add OpenClient widgets to the desktop or Notification Center and test New Chat, Search, Quick Actions, Continue Chat, Recent, Pinned, and Tagged Conversations.
+• On macOS, add the New Chat control and verify that it opens the app directly in a new conversation.
• Chat messages now show their time, with a floating date indicator when scrolling through conversation history.
• Test the new per-tool MCP permissions and approval flow: set tools to Always Allow, Ask, or Deny, then review requested MCP calls before execution.
• You can now support OpenClient with optional monthly or annual subscriptions, alongside one-time coffee purchases. No features are locked.
diff --git a/openclient-llm-test/Core/Models/AppIconTests.swift b/openclient-llm-test/Core/Models/AppIconTests.swift
new file mode 100644
index 00000000..12f67088
--- /dev/null
+++ b/openclient-llm-test/Core/Models/AppIconTests.swift
@@ -0,0 +1,57 @@
+//
+// AppIconTests.swift
+// openclient-llm-test
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+import UIKit
+import XCTest
+@testable import openclient_llm
+
+@MainActor
+final class AppIconTests: XCTestCase {
+ func test_allCases_containsTwentyIcons() {
+ // When
+ let icons = AppIcon.allCases
+
+ // Then
+ XCTAssertEqual(icons.count, 20)
+ }
+
+ func test_icons_eachCategory_containsFiveIcons() {
+ // When
+ let categoryCounts = AppIcon.Category.allCases.map { AppIcon.icons(in: $0).count }
+
+ // Then
+ XCTAssertEqual(categoryCounts, [5, 5, 5, 5])
+ }
+
+ func test_alternateIconName_defaultIcon_returnsNil() {
+ // When
+ let alternateIconName = AppIcon.defaultIcon.alternateIconName
+
+ // Then
+ XCTAssertNil(alternateIconName)
+ }
+
+ func test_init_unknownAlternateIconName_returnsDefaultIcon() {
+ // When
+ let icon = AppIcon(alternateIconName: "Unknown")
+
+ // Then
+ XCTAssertEqual(icon, .defaultIcon)
+ }
+
+ func test_previewImage_allIcons_loadFromMainBundle() {
+ // When
+ let missingIcons = AppIcon.allCases.filter { icon in
+ guard let url = Bundle.main.url(forResource: icon.rawValue, withExtension: "png") else { return true }
+ return UIImage(contentsOfFile: url.path) == nil
+ }
+
+ // Then
+ XCTAssertTrue(missingIcons.isEmpty, "Missing icon previews: \(missingIcons.map(\.rawValue))")
+ }
+}
diff --git a/openclient-llm-test/Core/Tips/AppTipsTests.swift b/openclient-llm-test/Core/Tips/AppTipsTests.swift
index 055b5a34..bf7ef7d8 100644
--- a/openclient-llm-test/Core/Tips/AppTipsTests.swift
+++ b/openclient-llm-test/Core/Tips/AppTipsTests.swift
@@ -14,13 +14,25 @@ import XCTest
final class AppTipsTests: XCTestCase {
func test_allTips_containsEveryFeatureTip() {
// Given
- let expectedCount = 10
+ let expectedIdentifiers = Set([
+ AppTips.modelSelector.id,
+ AppTips.chatAttachments.id,
+ AppTips.messageActions.id,
+ AppTips.webSearch.id,
+ AppTips.chatOptions.id,
+ AppTips.privateChat.id,
+ AppTips.contextUsage.id,
+ AppTips.memory.id,
+ AppTips.conversationOrganization.id,
+ AppTips.mcpServers.id,
+ AppTips.appIconSelection.id
+ ])
// When
- let tips = AppTips.allTips
+ let identifiers = Set(AppTips.allTips.map(\.id))
// Then
- XCTAssertEqual(tips.count, expectedCount)
+ XCTAssertEqual(identifiers, expectedIdentifiers)
}
func test_allTips_haveUniqueIdentifiers() {
diff --git a/openclient-llm-test/Features/Chat/AgentStreamUseCaseContextTests.swift b/openclient-llm-test/Features/Chat/AgentStreamUseCaseContextTests.swift
index e22c6a87..41980c9e 100644
--- a/openclient-llm-test/Features/Chat/AgentStreamUseCaseContextTests.swift
+++ b/openclient-llm-test/Features/Chat/AgentStreamUseCaseContextTests.swift
@@ -49,6 +49,7 @@ final class AgentStreamUseCaseContextTests: XCTestCase {
// When
var usages: [TokenUsage] = []
+ var promptUsages: [Int?] = []
for try await event in sut.execute(
messages: [ChatMessage(role: .user, content: "Time")],
model: "test",
@@ -56,10 +57,36 @@ final class AgentStreamUseCaseContextTests: XCTestCase {
toolRegistry: ToolRegistry(tools: [GetCurrentDatetimeTool()])
) {
if case .usage(let usage) = event { usages.append(usage) }
+ if case .promptUsage(let promptTokens) = event { promptUsages.append(promptTokens) }
}
// Then
XCTAssertEqual(usages.last, TokenUsage(promptTokens: 30, completionTokens: 5, totalTokens: 35))
+ XCTAssertEqual(promptUsages, [10, 20])
+ }
+
+ func test_execute_finalResponseWithoutUsage_emitsMissingPromptUsage() async throws {
+ // Given
+ let firstUsage = TokenUsage(promptTokens: 10, completionTokens: 2, totalTokens: 12)
+ let first = response(makeToolCallResponse(makeToolCall(id: "call_1")), usage: firstUsage)
+ let repository = RecordingAgentRepository(responses: [first, makeStopResponse(content: "Done")])
+ let sut = AgentStreamUseCase(repository: repository)
+
+ // When
+ var promptUsages: [Int?] = []
+ for try await event in sut.execute(
+ messages: [ChatMessage(role: .user, content: "Time")],
+ model: "test",
+ parameters: .default,
+ toolRegistry: ToolRegistry(tools: [GetCurrentDatetimeTool()])
+ ) {
+ if case .promptUsage(let promptTokens) = event { promptUsages.append(promptTokens) }
+ }
+
+ // Then
+ XCTAssertEqual(promptUsages.count, 2)
+ XCTAssertEqual(promptUsages[0], 10)
+ XCTAssertNil(promptUsages[1])
}
func test_execute_timeout_finishesEvenWhenRequestIsStillRunning() async throws {
diff --git a/openclient-llm-test/Features/Chat/ChatMessageTests.swift b/openclient-llm-test/Features/Chat/ChatMessageTests.swift
new file mode 100644
index 00000000..39e8ddde
--- /dev/null
+++ b/openclient-llm-test/Features/Chat/ChatMessageTests.swift
@@ -0,0 +1,50 @@
+//
+// ChatMessageTests.swift
+// openclient-llm-test
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+import XCTest
+@testable import openclient_llm
+
+@MainActor
+final class ChatMessageTests: XCTestCase {
+ func test_hasSameRequestContent_withNormalizedAttachment_returnsTrue() {
+ // Given
+ let messageId = UUID()
+ let attachmentId = UUID()
+ let transient = ChatMessage(
+ id: messageId,
+ role: .user,
+ content: "Review this",
+ attachments: [.init(
+ id: attachmentId,
+ type: .pdf,
+ fileName: "document.pdf",
+ mimeType: "application/pdf",
+ fileRelativePath: "",
+ transientData: Data("PDF".utf8)
+ )]
+ )
+ let persisted = ChatMessage(
+ id: messageId,
+ role: .user,
+ content: "Review this",
+ attachments: [.init(
+ id: attachmentId,
+ type: .pdf,
+ fileName: "document.pdf",
+ mimeType: "application/pdf",
+ fileRelativePath: "Attachments/conversation/document.pdf"
+ )]
+ )
+
+ // When
+ let result = transient.hasSameRequestContent(as: persisted)
+
+ // Then
+ XCTAssertTrue(result)
+ }
+}
diff --git a/openclient-llm-test/Features/Chat/ChatViewModelTests+ContextUsage.swift b/openclient-llm-test/Features/Chat/ChatViewModelTests+ContextUsage.swift
new file mode 100644
index 00000000..c73ac13f
--- /dev/null
+++ b/openclient-llm-test/Features/Chat/ChatViewModelTests+ContextUsage.swift
@@ -0,0 +1,207 @@
+//
+// ChatViewModelTests+ContextUsage.swift
+// openclient-llm
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+import XCTest
+@testable import openclient_llm
+
+// MARK: - Tests — Context usage
+
+@MainActor
+extension ChatViewModelTests {
+ func test_send_sendTapped_capturesTokenUsage() async throws {
+ // Given
+ let usage = TokenUsage(promptTokens: 10, completionTokens: 20, totalTokens: 30)
+ mockFetchModels.result = .success([LLMModel(id: "gpt-4", maxInputTokens: 1_000)])
+ mockStreamMessage.chunks = [.token("Hello"), .usage(usage)]
+ var didPersist = false
+ sut.onConversationUpdated = { didPersist = true }
+ sut.send(.viewAppeared)
+ try await Task.sleep(for: .milliseconds(100))
+
+ sut.send(.inputChanged("Hi"))
+
+ // When
+ sut.send(.sendTapped)
+ await waitUntil { didPersist }
+
+ // Then
+ guard case .loaded(let loadedState) = sut.state else {
+ XCTFail("Expected loaded state")
+ return
+ }
+ let assistantMessage = loadedState.messages.first(where: { $0.role == .assistant })
+ XCTAssertNotNil(assistantMessage?.tokenUsage)
+ XCTAssertEqual(assistantMessage?.tokenUsage?.totalTokens, 30)
+ XCTAssertEqual(assistantMessage?.tokenUsage?.promptTokens, 10)
+ XCTAssertEqual(assistantMessage?.tokenUsage?.completionTokens, 20)
+ XCTAssertEqual(loadedState.contextUsage?.estimatedInputTokens, 20)
+ }
+
+ func test_send_sendTapped_withoutPromptUsage_keepsEstimatedContext() async throws {
+ // Given
+ mockFetchModels.result = .success([LLMModel(id: "gpt-4", maxInputTokens: 1_000)])
+ mockStreamMessage.chunks = [.token("Hello")]
+ var didPersist = false
+ sut.onConversationUpdated = { didPersist = true }
+ sut.send(.viewAppeared)
+ await waitUntil {
+ guard case .loaded = self.sut.state else { return false }
+ return true
+ }
+ sut.send(.inputChanged("Hi"))
+
+ // When
+ sut.send(.sendTapped)
+ await waitUntil { didPersist }
+
+ // Then
+ guard case .loaded(let loadedState) = sut.state else {
+ XCTFail("Expected loaded state")
+ return
+ }
+ XCTAssertEqual(loadedState.contextUsage?.estimatedInputTokens, 19)
+ }
+
+ func test_send_agentPromptUsage_calibratesContextAfterPersistence() async {
+ // Given
+ mockFetchModels.result = .success([
+ LLMModel(id: "gpt-4", capabilities: [.functionCalling], maxInputTokens: 10_000)
+ ])
+ let viewModel = makeAgentViewModel(events: [.promptUsage(100), .token("Done")])
+ var didPersist = false
+ viewModel.onConversationUpdated = { didPersist = true }
+ viewModel.send(.viewAppeared)
+ await waitUntil {
+ guard case .loaded = viewModel.state else { return false }
+ return true
+ }
+ viewModel.send(.inputChanged("Hi"))
+
+ // When
+ viewModel.send(.sendTapped)
+ await waitUntil { didPersist }
+
+ // Then
+ guard case .loaded(let loadedState) = viewModel.state else {
+ XCTFail("Expected loaded state")
+ return
+ }
+ XCTAssertEqual(loadedState.contextUsage?.estimatedInputTokens, 110)
+ }
+
+ func test_send_agentFinalRoundWithoutPromptUsage_usesEstimatedContext() async {
+ // Given
+ mockFetchModels.result = .success([
+ LLMModel(id: "gpt-4", capabilities: [.functionCalling], maxInputTokens: 10_000)
+ ])
+ let viewModel = makeAgentViewModel(events: [.promptUsage(100), .promptUsage(nil), .token("Done")])
+ var didPersist = false
+ viewModel.onConversationUpdated = { didPersist = true }
+ viewModel.send(.viewAppeared)
+ await waitUntil {
+ guard case .loaded = viewModel.state else { return false }
+ return true
+ }
+ viewModel.send(.inputChanged("Hi"))
+
+ // When
+ viewModel.send(.sendTapped)
+ await waitUntil { didPersist }
+
+ // Then
+ guard case .loaded(let loadedState) = viewModel.state else {
+ XCTFail("Expected loaded state")
+ return
+ }
+ var estimatedState = loadedState
+ viewModel.refreshContextUsage(in: &estimatedState)
+ XCTAssertEqual(loadedState.contextUsage, estimatedState.contextUsage)
+ }
+
+ func test_send_agentMemoryMutation_usesEstimatedContext() async {
+ // Given
+ mockFetchModels.result = .success([
+ LLMModel(id: "gpt-4", capabilities: [.functionCalling], maxInputTokens: 10_000)
+ ])
+ let memoryCall = ToolCall(
+ id: "memory-call",
+ type: "function",
+ function: ToolCallFunction(name: "save_memory", arguments: "{}")
+ )
+ let viewModel = makeAgentViewModel(events: [
+ .promptUsage(100),
+ .toolCallStarted(memoryCall),
+ .toolCallCompleted(toolCallId: memoryCall.id, result: "Saved", searchResults: nil),
+ .token("Done")
+ ])
+ var didPersist = false
+ viewModel.onConversationUpdated = { didPersist = true }
+ viewModel.send(.viewAppeared)
+ await waitUntil {
+ guard case .loaded = viewModel.state else { return false }
+ return true
+ }
+ viewModel.send(.inputChanged("Remember this"))
+
+ // When
+ viewModel.send(.sendTapped)
+ await waitUntil { didPersist }
+
+ // Then
+ guard case .loaded(let loadedState) = viewModel.state else {
+ XCTFail("Expected loaded state")
+ return
+ }
+ var estimatedState = loadedState
+ viewModel.refreshContextUsage(in: &estimatedState)
+ XCTAssertEqual(loadedState.contextUsage, estimatedState.contextUsage)
+ }
+
+ func test_conversation_totalTokens_sumsAllMessages() {
+ // Given
+ let messages = [
+ ChatMessage(role: .user, content: "Hi"),
+ ChatMessage(
+ role: .assistant,
+ content: "Hello!",
+ tokenUsage: TokenUsage(promptTokens: 5, completionTokens: 10, totalTokens: 15)
+ ),
+ ChatMessage(role: .user, content: "How are you?"),
+ ChatMessage(
+ role: .assistant,
+ content: "I'm good!",
+ tokenUsage: TokenUsage(promptTokens: 8, completionTokens: 12, totalTokens: 20)
+ )
+ ]
+ let conversation = Conversation(modelId: "gpt-4", messages: messages)
+
+ // Then
+ XCTAssertEqual(conversation.totalTokens, 35)
+ }
+}
+
+// MARK: - Helpers
+
+private extension ChatViewModelTests {
+ func makeAgentViewModel(events: [AgentEvent]) -> ChatViewModel {
+ let mockAgent = MockAgentStreamUseCase()
+ mockAgent.events = events
+ return ChatViewModel(
+ fetchModelsUseCase: mockFetchModels,
+ streamMessageUseCase: mockStreamMessage,
+ agentStreamUseCase: mockAgent,
+ webSearchUseCase: mockWebSearch,
+ saveConversationUseCase: mockSaveConversation,
+ exportConversationUseCase: mockExportConversation,
+ branchConversationUseCase: mockBranchConversation,
+ getChatPreferencesUseCase: mockGetChatPreferences,
+ fetchMCPToolsUseCase: MockFetchMCPToolsUseCase(),
+ getConversationStartersUseCase: mockGetConversationStarters
+ )
+ }
+}
diff --git a/openclient-llm-test/Features/Chat/ChatViewModelTests+Persistence.swift b/openclient-llm-test/Features/Chat/ChatViewModelTests+Persistence.swift
index 02dadcee..e403a9aa 100644
--- a/openclient-llm-test/Features/Chat/ChatViewModelTests+Persistence.swift
+++ b/openclient-llm-test/Features/Chat/ChatViewModelTests+Persistence.swift
@@ -347,56 +347,6 @@ extension ChatViewModelTests {
XCTAssertEqual(loadedState.conversation?.title, "What is quantum computing?")
}
- // MARK: - Tests — Token usage
-
- func test_send_sendTapped_capturesTokenUsage() async throws {
- // Given
- let usage = TokenUsage(promptTokens: 10, completionTokens: 20, totalTokens: 30)
- mockFetchModels.result = .success([LLMModel(id: "gpt-4")])
- mockStreamMessage.chunks = [.token("Hello"), .usage(usage)]
- sut.send(.viewAppeared)
- try await Task.sleep(for: .milliseconds(100))
-
- sut.send(.inputChanged("Hi"))
-
- // When
- sut.send(.sendTapped)
- try await Task.sleep(for: .milliseconds(200))
-
- // Then
- guard case .loaded(let loadedState) = sut.state else {
- XCTFail("Expected loaded state")
- return
- }
- let assistantMessage = loadedState.messages.first(where: { $0.role == .assistant })
- XCTAssertNotNil(assistantMessage?.tokenUsage)
- XCTAssertEqual(assistantMessage?.tokenUsage?.totalTokens, 30)
- XCTAssertEqual(assistantMessage?.tokenUsage?.promptTokens, 10)
- XCTAssertEqual(assistantMessage?.tokenUsage?.completionTokens, 20)
- }
-
- func test_conversation_totalTokens_sumsAllMessages() {
- // Given
- let messages = [
- ChatMessage(role: .user, content: "Hi"),
- ChatMessage(
- role: .assistant,
- content: "Hello!",
- tokenUsage: TokenUsage(promptTokens: 5, completionTokens: 10, totalTokens: 15)
- ),
- ChatMessage(role: .user, content: "How are you?"),
- ChatMessage(
- role: .assistant,
- content: "I'm good!",
- tokenUsage: TokenUsage(promptTokens: 8, completionTokens: 12, totalTokens: 20)
- )
- ]
- let conversation = Conversation(modelId: "gpt-4", messages: messages)
-
- // Then
- XCTAssertEqual(conversation.totalTokens, 35)
- }
-
// MARK: - Tests — Model parameters
func test_send_modelParametersChanged_updatesState() async throws {
diff --git a/openclient-llm-test/Features/Chat/ContextWindowBuilderTests.swift b/openclient-llm-test/Features/Chat/ContextWindowBuilderTests.swift
index 001cd7a4..31052021 100644
--- a/openclient-llm-test/Features/Chat/ContextWindowBuilderTests.swift
+++ b/openclient-llm-test/Features/Chat/ContextWindowBuilderTests.swift
@@ -112,6 +112,22 @@ final class ContextWindowBuilderTests: XCTestCase {
XCTAssertEqual(usage?.estimatedInputTokens, 72)
}
+ func test_usage_withoutModelCapacity_evenWithPromptUsage_returnsNil() {
+ // Given
+ let sut = ContextWindowBuilder()
+
+ // When
+ let usage = sut.usage(
+ messages: [ChatMessage(role: .user, content: "Hello")],
+ systemPrompt: "",
+ model: LLMModel(id: "test"),
+ calibratedPromptTokens: 100
+ )
+
+ // Then
+ XCTAssertNil(usage)
+ }
+
func test_messagesWithinBudget_middleTurnDoesNotFit_doesNotIncludeOlderTurn() {
// Given
let sut = ContextWindowBuilder()
diff --git a/openclient-llm-test/Features/Settings/SettingsViewModelTests+AppIcon.swift b/openclient-llm-test/Features/Settings/SettingsViewModelTests+AppIcon.swift
new file mode 100644
index 00000000..83fcc72d
--- /dev/null
+++ b/openclient-llm-test/Features/Settings/SettingsViewModelTests+AppIcon.swift
@@ -0,0 +1,78 @@
+//
+// SettingsViewModelTests+AppIcon.swift
+// openclient-llm-test
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+import XCTest
+@testable import openclient_llm
+
+// MARK: - App Icon Tests
+
+extension SettingsViewModelTests {
+ func test_send_viewAppeared_withAlternateIcon_loadsSelectedIcon() {
+ // Given
+ mockAppIconManager.selectedIcon = .ocean
+
+ // When
+ sut.send(.viewAppeared)
+
+ // Then
+ guard case .loaded(let loadedState) = sut.state else {
+ XCTFail("Expected loaded state")
+ return
+ }
+ XCTAssertEqual(loadedState.selectedAppIcon, .ocean)
+ }
+
+ func test_send_appIconSelected_success_updatesSelectedIcon() async {
+ // Given
+ sut.send(.viewAppeared)
+
+ // When
+ sut.send(.appIconSelected(.berry))
+ await waitUntil {
+ guard case .loaded(let state) = self.sut.state else { return false }
+ return state.selectedAppIcon == .berry
+ }
+
+ // Then
+ XCTAssertEqual(mockAppIconManager.setIconCalls, [.berry])
+ }
+
+ func test_send_appIconSelected_failure_retainsSelectedIconAndShowsError() async {
+ // Given
+ mockAppIconManager.selectedIcon = .ocean
+ mockAppIconManager.setIconResult = .failure(NSError(domain: "AppIconTests", code: 1))
+ sut.send(.viewAppeared)
+
+ // When
+ sut.send(.appIconSelected(.solar))
+ await waitUntil {
+ guard case .loaded(let state) = self.sut.state else { return false }
+ return state.appIconError != nil
+ }
+
+ // Then
+ guard case .loaded(let loadedState) = sut.state else {
+ XCTFail("Expected loaded state")
+ return
+ }
+ XCTAssertEqual(loadedState.selectedAppIcon, .ocean)
+ XCTAssertFalse(loadedState.isChangingAppIcon)
+ }
+
+ func test_send_appIconSelected_currentIcon_doesNotRequestChange() {
+ // Given
+ mockAppIconManager.selectedIcon = .terminal
+ sut.send(.viewAppeared)
+
+ // When
+ sut.send(.appIconSelected(.terminal))
+
+ // Then
+ XCTAssertTrue(mockAppIconManager.setIconCalls.isEmpty)
+ }
+}
diff --git a/openclient-llm-test/Features/Settings/SettingsViewModelTests.swift b/openclient-llm-test/Features/Settings/SettingsViewModelTests.swift
index 189fd1f7..70c3fbb8 100644
--- a/openclient-llm-test/Features/Settings/SettingsViewModelTests.swift
+++ b/openclient-llm-test/Features/Settings/SettingsViewModelTests.swift
@@ -28,6 +28,7 @@ final class SettingsViewModelTests: XCTestCase {
var mockCloudAccountAssociation: MockCloudAccountAssociation!
var mockFetchMCPTools: MockFetchMCPToolsUseCase!
var mockRemoteConfigManager: MockRemoteConfigManager!
+ var mockAppIconManager: MockAppIconManager!
// MARK: - Setup
@@ -48,6 +49,7 @@ final class SettingsViewModelTests: XCTestCase {
mockCloudAccountAssociation = MockCloudAccountAssociation()
mockFetchMCPTools = MockFetchMCPToolsUseCase()
mockRemoteConfigManager = MockRemoteConfigManager()
+ mockAppIconManager = MockAppIconManager()
sut = SettingsViewModel(
saveServerConfigurationUseCase: mockSaveServerConfig,
testServerConnectionUseCase: mockTestConnection,
@@ -62,6 +64,7 @@ final class SettingsViewModelTests: XCTestCase {
cloudSyncRuntimeStore: cloudSyncRuntimeStore,
cloudAccountAssociation: mockCloudAccountAssociation,
resetAppUseCase: mockResetUseCase,
+ appIconManager: mockAppIconManager,
remoteConfigManager: mockRemoteConfigManager
)
}
@@ -82,6 +85,7 @@ final class SettingsViewModelTests: XCTestCase {
mockCloudAccountAssociation = nil
mockFetchMCPTools = nil
mockRemoteConfigManager = nil
+ mockAppIconManager = nil
try await super.tearDown()
}
diff --git a/openclient-llm-test/Mocks/MockAppIconManager.swift b/openclient-llm-test/Mocks/MockAppIconManager.swift
new file mode 100644
index 00000000..027f9416
--- /dev/null
+++ b/openclient-llm-test/Mocks/MockAppIconManager.swift
@@ -0,0 +1,23 @@
+//
+// MockAppIconManager.swift
+// openclient-llm-test
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+@testable import openclient_llm
+
+@MainActor
+final class MockAppIconManager: AppIconManagerProtocol {
+ var supportsAlternateIcons = true
+ var selectedIcon: AppIcon = .defaultIcon
+ var setIconResult: Result = .success(())
+ private(set) var setIconCalls: [AppIcon] = []
+
+ func setIcon(_ icon: AppIcon) async throws {
+ setIconCalls.append(icon)
+ try setIconResult.get()
+ selectedIcon = icon
+ }
+}
diff --git a/openclient-llm.xcodeproj/project.pbxproj b/openclient-llm.xcodeproj/project.pbxproj
index e6efb260..dd52156e 100644
--- a/openclient-llm.xcodeproj/project.pbxproj
+++ b/openclient-llm.xcodeproj/project.pbxproj
@@ -786,7 +786,7 @@
"@executable_path/../../../../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 26.0;
- MARKETING_VERSION = 1.6.30;
+ MARKETING_VERSION = 1.6.35;
PRODUCT_BUNDLE_IDENTIFIER = "com.artcc.openclient-llm.macos-widgets";
PRODUCT_NAME = "$(TARGET_NAME)";
REGISTER_APP_GROUPS = YES;
@@ -832,7 +832,7 @@
"@executable_path/../../../../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 26.0;
- MARKETING_VERSION = 1.6.30;
+ MARKETING_VERSION = 1.6.35;
PRODUCT_BUNDLE_IDENTIFIER = "com.artcc.openclient-llm.macos-widgets";
PRODUCT_NAME = "$(TARGET_NAME)";
REGISTER_APP_GROUPS = YES;
@@ -979,7 +979,8 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 8089F4102F7D000500465D6C /* Secrets.xcconfig */;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = Icon;
+ ASSETCATALOG_COMPILER_ALTERNATE_APPICON_NAMES = "Arctic Aurora Berry Blueprint Copper Holo Honeydew Lavender Mars Midnight Mono Ocean Retro Sakura Solar Sunset Terminal Ultraviolet Violet";
+ ASSETCATALOG_COMPILER_APPICON_NAME = Default;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = "openclient-llm/Resources/openclient-llm.entitlements";
CODE_SIGN_STYLE = Automatic;
@@ -1007,7 +1008,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
- MARKETING_VERSION = 1.6.30;
+ MARKETING_VERSION = 1.6.35;
PRODUCT_BUNDLE_IDENTIFIER = "com.artcc.openclient-llm";
PRODUCT_NAME = "$(TARGET_NAME)";
STRING_CATALOG_GENERATE_SYMBOLS = YES;
@@ -1027,7 +1028,8 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 8089F4102F7D000500465D6C /* Secrets.xcconfig */;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = Icon;
+ ASSETCATALOG_COMPILER_ALTERNATE_APPICON_NAMES = "Arctic Aurora Berry Blueprint Copper Holo Honeydew Lavender Mars Midnight Mono Ocean Retro Sakura Solar Sunset Terminal Ultraviolet Violet";
+ ASSETCATALOG_COMPILER_APPICON_NAME = Default;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = "openclient-llm/Resources/openclient-llm.entitlements";
CODE_SIGN_STYLE = Automatic;
@@ -1055,7 +1057,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
- MARKETING_VERSION = 1.6.30;
+ MARKETING_VERSION = 1.6.35;
PRODUCT_BUNDLE_IDENTIFIER = "com.artcc.openclient-llm";
PRODUCT_NAME = "$(TARGET_NAME)";
STRING_CATALOG_GENERATE_SYMBOLS = YES;
@@ -1075,7 +1077,7 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 8089F4102F7D000500465D6C /* Secrets.xcconfig */;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = Icon;
+ ASSETCATALOG_COMPILER_APPICON_NAME = Default;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = "openclient-llm-macOS/Resources/openclient-llm-macOS.entitlements";
CODE_SIGN_STYLE = Automatic;
@@ -1113,7 +1115,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 26.0;
- MARKETING_VERSION = 1.6.30;
+ MARKETING_VERSION = 1.6.35;
PRODUCT_BUNDLE_IDENTIFIER = "com.artcc.openclient-llm";
PRODUCT_NAME = OpenClient;
REGISTER_APP_GROUPS = YES;
@@ -1131,7 +1133,7 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 8089F4102F7D000500465D6C /* Secrets.xcconfig */;
buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = Icon;
+ ASSETCATALOG_COMPILER_APPICON_NAME = Default;
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = "openclient-llm-macOS/Resources/openclient-llm-macOS.entitlements";
CODE_SIGN_STYLE = Automatic;
@@ -1169,7 +1171,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 26.0;
- MARKETING_VERSION = 1.6.30;
+ MARKETING_VERSION = 1.6.35;
PRODUCT_BUNDLE_IDENTIFIER = "com.artcc.openclient-llm";
PRODUCT_NAME = OpenClient;
REGISTER_APP_GROUPS = YES;
@@ -1247,7 +1249,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
- MARKETING_VERSION = 1.6.30;
+ MARKETING_VERSION = 1.6.35;
PRODUCT_BUNDLE_IDENTIFIER = "com.artcc.openclient-llm.ShareExtension";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
@@ -1278,7 +1280,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
- MARKETING_VERSION = 1.6.30;
+ MARKETING_VERSION = 1.6.35;
PRODUCT_BUNDLE_IDENTIFIER = "com.artcc.openclient-llm.ShareExtension";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
@@ -1311,7 +1313,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
- MARKETING_VERSION = 1.6.30;
+ MARKETING_VERSION = 1.6.35;
PRODUCT_BUNDLE_IDENTIFIER = "com.artcc.openclient-llm.widgets";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
@@ -1344,7 +1346,7 @@
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
- MARKETING_VERSION = 1.6.30;
+ MARKETING_VERSION = 1.6.35;
PRODUCT_BUNDLE_IDENTIFIER = "com.artcc.openclient-llm.widgets";
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
diff --git a/openclient-llm/Shared/Core/Managers/AppIconManager.swift b/openclient-llm/Shared/Core/Managers/AppIconManager.swift
new file mode 100644
index 00000000..f44a20ac
--- /dev/null
+++ b/openclient-llm/Shared/Core/Managers/AppIconManager.swift
@@ -0,0 +1,76 @@
+//
+// AppIconManager.swift
+// openclient-llm
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+#if os(iOS)
+import UIKit
+#else
+import Foundation
+#endif
+
+@MainActor
+protocol AppIconManagerProtocol {
+ var supportsAlternateIcons: Bool { get }
+ var selectedIcon: AppIcon { get }
+
+ func setIcon(_ icon: AppIcon) async throws
+}
+
+@MainActor
+struct AppIconManager: AppIconManagerProtocol {
+#if os(iOS)
+ private let application: UIApplication
+
+ init(application: UIApplication = .shared) {
+ self.application = application
+ }
+#else
+ init() {}
+#endif
+
+ var supportsAlternateIcons: Bool {
+#if os(iOS)
+ application.supportsAlternateIcons
+#else
+ false
+#endif
+ }
+
+ var selectedIcon: AppIcon {
+#if os(iOS)
+ AppIcon(alternateIconName: application.alternateIconName)
+#else
+ .defaultIcon
+#endif
+ }
+
+ func setIcon(_ icon: AppIcon) async throws {
+#if os(iOS)
+ guard supportsAlternateIcons else {
+ throw AppIconManagerError.alternateIconsUnavailable
+ }
+ guard selectedIcon != icon else { return }
+
+ try await withCheckedThrowingContinuation { (continuation: CheckedContinuation) in
+ application.setAlternateIconName(icon.alternateIconName) { error in
+ if let error {
+ continuation.resume(throwing: error)
+ } else {
+ continuation.resume()
+ }
+ }
+ }
+#else
+ _ = icon
+ throw AppIconManagerError.alternateIconsUnavailable
+#endif
+ }
+}
+
+private enum AppIconManagerError: Error {
+ case alternateIconsUnavailable
+}
diff --git a/openclient-llm/Shared/Core/Models/AppIcon.swift b/openclient-llm/Shared/Core/Models/AppIcon.swift
new file mode 100644
index 00000000..041e04a0
--- /dev/null
+++ b/openclient-llm/Shared/Core/Models/AppIcon.swift
@@ -0,0 +1,130 @@
+//
+// AppIcon.swift
+// openclient-llm
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+import Foundation
+
+enum AppIcon: String, CaseIterable, Identifiable {
+ case defaultIcon = "Default"
+ case midnight = "Midnight"
+ case mono = "Mono"
+ case ocean = "Ocean"
+ case terminal = "Terminal"
+ case arctic = "Arctic"
+ case aurora = "Aurora"
+ case berry = "Berry"
+ case sunset = "Sunset"
+ case violet = "Violet"
+ case honeydew = "Honeydew"
+ case lavender = "Lavender"
+ case mars = "Mars"
+ case sakura = "Sakura"
+ case solar = "Solar"
+ case blueprint = "Blueprint"
+ case copper = "Copper"
+ case holo = "Holo"
+ case retro = "Retro"
+ case ultraviolet = "Ultraviolet"
+
+ enum Category: CaseIterable, Identifiable {
+ case openClient
+ case colors
+ case bright
+ case special
+
+ var id: Self { self }
+
+ var localizedName: String {
+ switch self {
+ case .openClient:
+ String(localized: "OpenClient")
+ case .colors:
+ String(localized: "Colors")
+ case .bright:
+ String(localized: "Bright")
+ case .special:
+ String(localized: "Special")
+ }
+ }
+ }
+
+ var id: Self { self }
+
+ var alternateIconName: String? {
+ self == .defaultIcon ? nil : rawValue
+ }
+
+ var category: Category {
+ switch self {
+ case .defaultIcon, .midnight, .mono, .ocean, .terminal:
+ .openClient
+ case .arctic, .aurora, .berry, .sunset, .violet:
+ .colors
+ case .honeydew, .lavender, .mars, .sakura, .solar:
+ .bright
+ case .blueprint, .copper, .holo, .retro, .ultraviolet:
+ .special
+ }
+ }
+
+ var localizedName: String {
+ switch self {
+ case .defaultIcon:
+ String(localized: "Default")
+ case .midnight:
+ String(localized: "Midnight")
+ case .mono:
+ String(localized: "Mono")
+ case .ocean:
+ String(localized: "Ocean")
+ case .terminal:
+ String(localized: "Terminal")
+ case .arctic:
+ String(localized: "Arctic")
+ case .aurora:
+ String(localized: "Aurora")
+ case .berry:
+ String(localized: "Berry")
+ case .sunset:
+ String(localized: "Sunset")
+ case .violet:
+ String(localized: "Violet")
+ case .honeydew:
+ String(localized: "Honeydew")
+ case .lavender:
+ String(localized: "Lavender")
+ case .mars:
+ String(localized: "Mars")
+ case .sakura:
+ String(localized: "Sakura")
+ case .solar:
+ String(localized: "Solar")
+ case .blueprint:
+ String(localized: "Blueprint")
+ case .copper:
+ String(localized: "Copper")
+ case .holo:
+ String(localized: "Holo")
+ case .retro:
+ String(localized: "Retro")
+ case .ultraviolet:
+ String(localized: "Ultraviolet")
+ }
+ }
+
+ init(alternateIconName: String?) {
+ guard let alternateIconName, let icon = Self(rawValue: alternateIconName) else {
+ self = .defaultIcon
+ return
+ }
+ self = icon
+ }
+
+ static func icons(in category: Category) -> [AppIcon] {
+ allCases.filter { $0.category == category }
+ }
+}
diff --git a/openclient-llm/Shared/Core/Tips/AppTips.swift b/openclient-llm/Shared/Core/Tips/AppTips.swift
index 908310c1..2d9ab2f9 100644
--- a/openclient-llm/Shared/Core/Tips/AppTips.swift
+++ b/openclient-llm/Shared/Core/Tips/AppTips.swift
@@ -23,6 +23,7 @@ enum AppTips {
static let memory = MemoryTip()
static let conversationOrganization = ConversationOrganizationTip()
static let mcpServers = MCPServersTip()
+ static let appIconSelection = AppIconSelectionTip()
static let allTips: [any Tip] = [
modelSelector,
@@ -34,7 +35,8 @@ enum AppTips {
contextUsage,
memory,
conversationOrganization,
- mcpServers
+ mcpServers,
+ appIconSelection
]
// MARK: - Configuration
diff --git a/openclient-llm/Shared/Core/Tips/FeatureTips.swift b/openclient-llm/Shared/Core/Tips/FeatureTips.swift
index 84575736..0e901e91 100644
--- a/openclient-llm/Shared/Core/Tips/FeatureTips.swift
+++ b/openclient-llm/Shared/Core/Tips/FeatureTips.swift
@@ -107,3 +107,11 @@ struct MCPServersTip: Tip {
"""))
}
}
+
+struct AppIconSelectionTip: Tip {
+ var title: Text { Text(String(localized: "Choose your app icon")) }
+
+ var message: Text? {
+ Text(String(localized: "Pick an OpenClient icon that matches your style."))
+ }
+}
diff --git a/openclient-llm/Shared/Core/Views/AppIconPreviewImage.swift b/openclient-llm/Shared/Core/Views/AppIconPreviewImage.swift
new file mode 100644
index 00000000..9222341f
--- /dev/null
+++ b/openclient-llm/Shared/Core/Views/AppIconPreviewImage.swift
@@ -0,0 +1,51 @@
+//
+// AppIconPreviewImage.swift
+// openclient-llm
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+#if os(iOS)
+import SwiftUI
+import UIKit
+
+struct AppIconPreviewImage: View {
+ let icon: AppIcon
+
+ var body: some View {
+ Group {
+ if let image = AppIconPreviewLoader.image(for: icon) {
+ Image(uiImage: image)
+ .resizable()
+ } else {
+ Image(systemName: "app.dashed")
+ .resizable()
+ .scaledToFit()
+ .padding()
+ .foregroundStyle(.secondary)
+ }
+ }
+ .aspectRatio(1, contentMode: .fit)
+ }
+}
+
+private enum AppIconPreviewLoader {
+ static let cache: NSCache = {
+ let cache = NSCache()
+ cache.countLimit = 8
+ return cache
+ }()
+
+ static func image(for icon: AppIcon) -> UIImage? {
+ let key = icon.rawValue as NSString
+ if let cachedImage = cache.object(forKey: key) {
+ return cachedImage
+ }
+ guard let url = Bundle.main.url(forResource: icon.rawValue, withExtension: "png"),
+ let image = UIImage(contentsOfFile: url.path) else { return nil }
+ cache.setObject(image, forKey: key)
+ return image
+ }
+}
+#endif
diff --git a/openclient-llm/Shared/Core/Views/AppSplashView.swift b/openclient-llm/Shared/Core/Views/AppSplashView.swift
index a83d9609..062106ff 100644
--- a/openclient-llm/Shared/Core/Views/AppSplashView.swift
+++ b/openclient-llm/Shared/Core/Views/AppSplashView.swift
@@ -30,8 +30,7 @@ struct AppSplashView: View {
.ignoresSafeArea()
VStack(spacing: 20) {
- Image("logo")
- .resizable()
+ CurrentAppIconImage()
.scaledToFit()
.frame(width: 125, height: 125)
.shadow(color: .cyan.opacity(0.4), radius: 24, x: 0, y: 8)
diff --git a/openclient-llm/Shared/Core/Views/CurrentAppIconImage.swift b/openclient-llm/Shared/Core/Views/CurrentAppIconImage.swift
new file mode 100644
index 00000000..9109f8ce
--- /dev/null
+++ b/openclient-llm/Shared/Core/Views/CurrentAppIconImage.swift
@@ -0,0 +1,21 @@
+//
+// CurrentAppIconImage.swift
+// openclient-llm
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+import SwiftUI
+
+struct CurrentAppIconImage: View {
+ var body: some View {
+#if os(iOS)
+ AppIconPreviewImage(icon: AppIconManager().selectedIcon)
+#else
+ Image("logo")
+ .resizable()
+ .aspectRatio(1, contentMode: .fit)
+#endif
+ }
+}
diff --git a/openclient-llm/Shared/Features/Chat/Models/ChatMessage.swift b/openclient-llm/Shared/Features/Chat/Models/ChatMessage.swift
index acedfec9..53a86396 100644
--- a/openclient-llm/Shared/Features/Chat/Models/ChatMessage.swift
+++ b/openclient-llm/Shared/Features/Chat/Models/ChatMessage.swift
@@ -61,6 +61,22 @@ nonisolated struct ChatMessage: Identifiable, Equatable, Sendable, Codable {
self.isFavourite = isFavourite
}
+ func hasSameRequestContent(as other: ChatMessage) -> Bool {
+ let hasSameAttachments = attachments.elementsEqual(other.attachments) { lhs, rhs in
+ lhs.id == rhs.id
+ && lhs.type == rhs.type
+ && lhs.fileName == rhs.fileName
+ && lhs.mimeType == rhs.mimeType
+ }
+ return id == other.id
+ && role == other.role
+ && content == other.content
+ && hasSameAttachments
+ && toolCalls == other.toolCalls
+ && toolCallId == other.toolCallId
+ && toolName == other.toolName
+ }
+
// MARK: - Decodable
init(from decoder: Decoder) throws {
diff --git a/openclient-llm/Shared/Features/Chat/UseCases/AgentStreamUseCase.swift b/openclient-llm/Shared/Features/Chat/UseCases/AgentStreamUseCase.swift
index c57fd647..98698634 100644
--- a/openclient-llm/Shared/Features/Chat/UseCases/AgentStreamUseCase.swift
+++ b/openclient-llm/Shared/Features/Chat/UseCases/AgentStreamUseCase.swift
@@ -17,7 +17,7 @@ enum AgentEvent: Sendable {
case toolCallCompleted(toolCallId: String, result: String, searchResults: [LiteLLMSearchResult]?)
case transcriptAppended([ChatMessage])
case usage(TokenUsage)
- case promptUsage(Int)
+ case promptUsage(Int?)
case image(Data)
case completed
}
@@ -436,14 +436,17 @@ private extension AgentStreamUseCase {
aggregate: TokenUsage,
continuation: AsyncThrowingStream.Continuation
) -> TokenUsage {
- guard let usage else { return aggregate }
+ guard let usage else {
+ continuation.yield(.promptUsage(nil))
+ return aggregate
+ }
let updated = TokenUsage(
promptTokens: aggregate.promptTokens + (usage.promptTokens ?? 0),
completionTokens: aggregate.completionTokens + (usage.completionTokens ?? 0),
totalTokens: aggregate.totalTokens + (usage.totalTokens ?? 0)
)
continuation.yield(.usage(updated))
- continuation.yield(.promptUsage(usage.promptTokens ?? 0))
+ continuation.yield(.promptUsage(usage.promptTokens.flatMap { $0 > 0 ? $0 : nil }))
return updated
}
diff --git a/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Agent.swift b/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Agent.swift
index dfa99545..9e842ac2 100644
--- a/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Agent.swift
+++ b/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Agent.swift
@@ -38,35 +38,27 @@ extension ChatViewModel {
)
)
+ var reportedPromptTokens: Int?
+ var didRequestMemoryMutation = false
for try await event in stream {
+ if case .promptUsage(let promptTokens) = event { reportedPromptTokens = promptTokens }
+ if case .toolCallStarted(let toolCall) = event,
+ ["save_memory", "delete_memory"].contains(toolCall.function.name) {
+ didRequestMemoryMutation = true
+ }
guard !Task.isCancelled,
isActiveStream(context.assistantId),
await processAgentStreamEvent(event, assistantMessageId: context.assistantId) else { return }
if case .transcriptAppended = event { await persistConversation() }
}
- await handleAgentStreamSuccess(context.assistantId, modelId: context.modelId)
+ await handleAgentStreamSuccess(
+ context.assistantId,
+ modelId: context.modelId,
+ reportedPromptTokens: didRequestMemoryMutation ? nil : reportedPromptTokens
+ )
} catch {
- guard !Task.isCancelled, isActiveStream(context.assistantId) else { return }
- flushStreamingTextUpdates(for: context.assistantId)
- guard case .loaded(var currentState) = state else { return }
- LogManager.error("performAgentStreaming error model=\(context.modelId): \(error)")
- if let index = currentState.messages.firstIndex(where: { $0.id == context.assistantId }),
- currentState.messages[index].content.isEmpty,
- (currentState.messages[index].reasoningContent ?? "").isEmpty,
- currentState.messages[index].attachments.isEmpty {
- currentState.messages.remove(at: index)
- }
- currentState.isStreaming = false
- currentState.isSearchingWeb = false
- currentState.activeToolCallIds = []
- currentState.activeToolNamesById = [:]
- currentState.errorMessage = error.localizedDescription
- state = .loaded(currentState)
- scheduleErrorDismiss()
- await persistConversation()
- streamingBackgroundUseCase.end()
- completeActiveStream(context.assistantId)
+ await handleAgentStreamFailure(error, assistantMessageId: context.assistantId, modelId: context.modelId)
}
}
@@ -123,6 +115,30 @@ extension ChatViewModel {
// MARK: - Private
private extension ChatViewModel {
+ func handleAgentStreamFailure(_ error: Error, assistantMessageId: UUID, modelId: String) async {
+ guard !Task.isCancelled, isActiveStream(assistantMessageId) else { return }
+ flushStreamingTextUpdates(for: assistantMessageId)
+ guard case .loaded(var currentState) = state else { return }
+ LogManager.error("performAgentStreaming error model=\(modelId): \(error)")
+ if let index = currentState.messages.firstIndex(where: { $0.id == assistantMessageId }),
+ currentState.messages[index].content.isEmpty,
+ (currentState.messages[index].reasoningContent ?? "").isEmpty,
+ currentState.messages[index].attachments.isEmpty {
+ currentState.messages.remove(at: index)
+ }
+ currentState.isStreaming = false
+ currentState.isSearchingWeb = false
+ currentState.activeToolCallIds = []
+ currentState.activeToolNamesById = [:]
+ currentState.errorMessage = error.localizedDescription
+ refreshContextUsage(in: ¤tState)
+ state = .loaded(currentState)
+ scheduleErrorDismiss()
+ await persistConversation()
+ streamingBackgroundUseCase.end()
+ completeActiveStream(assistantMessageId)
+ }
+
func processAgentStreamEvent(_ event: AgentEvent, assistantMessageId: UUID) async -> Bool {
switch event {
case .token(let text):
@@ -293,7 +309,11 @@ private extension ChatViewModel {
state.messages[index].webSearchResults = merged
}
- func handleAgentStreamSuccess(_ assistantId: UUID, modelId: String) async {
+ func handleAgentStreamSuccess(
+ _ assistantId: UUID,
+ modelId: String,
+ reportedPromptTokens: Int?
+ ) async {
guard isActiveStream(assistantId), case .loaded(var finalState) = state else { return }
let updates = takeStreamingTextUpdates(for: assistantId)
applyStreamingTextUpdates(updates, to: &finalState, assistantMessageId: assistantId)
@@ -310,7 +330,14 @@ private extension ChatViewModel {
finalState.errorMessage = String(localized: "The model returned an empty response. Please try again.")
}
- refreshContextUsage(in: &finalState)
+ refreshContextUsage(
+ in: &finalState,
+ calibratedPromptTokens: contextTokensAfterResponse(
+ promptTokens: reportedPromptTokens,
+ assistantMessageId: assistantId,
+ state: finalState
+ )
+ )
state = .loaded(finalState)
LogManager.success("performAgentStreaming completed model=\(modelId)")
let didPersist = await persistConversation()
diff --git a/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Helpers.swift b/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Helpers.swift
index da45fd48..a58ecd4e 100644
--- a/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Helpers.swift
+++ b/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Helpers.swift
@@ -132,6 +132,17 @@ extension ChatViewModel {
)
}
+ func contextTokensAfterResponse(
+ promptTokens: Int?,
+ assistantMessageId: UUID,
+ state: LoadedState
+ ) -> Int? {
+ guard let promptTokens else { return nil }
+ guard let assistant = state.messages.first(where: { $0.id == assistantMessageId }) else { return promptTokens }
+ let responseTokens = ContextWindowBuilder().estimatedInputTokens(messages: [assistant], systemPrompt: "")
+ return promptTokens + responseTokens
+ }
+
func buildRequestContext(
messages: [ChatMessage],
systemPrompt: String,
@@ -306,6 +317,17 @@ extension ChatViewModel {
return
}
mergedConversation.updatedAt = max(desiredConversation.updatedAt, persistedConversation.updatedAt)
+ let hasSameRequestMessages = mergedConversation.messages.elementsEqual(loadedState.messages) {
+ $0.hasSameRequestContent(as: $1)
+ }
+ let retainsContextUsage = hasSameRequestMessages
+ && mergedConversation.systemPrompt == loadedState.systemPrompt
+ && mergedConversation.contextWindowTokens == loadedState.contextWindowTokens
+ && mergedConversation.modelId == loadedState.selectedModel?.id
+ && mergedConversation.contextSummary == loadedState.conversation?.contextSummary
+ && mergedConversation.contextSummaryCursorMessageId
+ == loadedState.conversation?.contextSummaryCursorMessageId
+ let contextUsage = loadedState.contextUsage
loadedState.conversation = mergedConversation
loadedState.messages = mergedConversation.messages
loadedState.systemPrompt = mergedConversation.systemPrompt
@@ -314,7 +336,11 @@ extension ChatViewModel {
if let model = loadedState.availableModels.first(where: { $0.id == mergedConversation.modelId }) {
loadedState.selectedModel = model
}
- refreshContextUsage(in: &loadedState)
+ if retainsContextUsage {
+ loadedState.contextUsage = contextUsage
+ } else {
+ refreshContextUsage(in: &loadedState)
+ }
state = .loaded(loadedState)
}
diff --git a/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Streaming.swift b/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Streaming.swift
index f1eb3fdd..bfac02f1 100644
--- a/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Streaming.swift
+++ b/openclient-llm/Shared/Features/Chat/ViewModels/ChatViewModel+Streaming.swift
@@ -37,31 +37,23 @@ extension ChatViewModel {
sendContext.parameters, model: sendContext.selectedModel
)
)
+ var reportedPromptTokens: Int?
for try await chunk in stream {
+ if case .usage(let usage) = chunk, usage.promptTokens > 0 {
+ reportedPromptTokens = usage.promptTokens
+ }
guard !Task.isCancelled,
isActiveStream(assistantMessageId),
await processStreamingChunk(chunk, assistantMessageId: assistantMessageId) else { return }
}
- await finishStreaming(assistantMessageId, model: sendContext.modelId)
+ await finishStreaming(
+ assistantMessageId,
+ model: sendContext.modelId,
+ reportedPromptTokens: reportedPromptTokens
+ )
} catch {
- guard !Task.isCancelled, isActiveStream(assistantMessageId) else { return }
- flushStreamingTextUpdates(for: assistantMessageId)
- guard case .loaded(var currentState) = state else { return }
- LogManager.error("performStreaming error model=\(sendContext.modelId): \(error)")
- if let index = currentState.messages.firstIndex(where: { $0.id == assistantMessageId }),
- currentState.messages[index].content.isEmpty,
- (currentState.messages[index].reasoningContent ?? "").isEmpty,
- currentState.messages[index].attachments.isEmpty {
- currentState.messages.remove(at: index)
- }
- currentState.isStreaming = false
- currentState.errorMessage = error.localizedDescription
- state = .loaded(currentState)
- scheduleErrorDismiss()
- await persistConversation()
- streamingBackgroundUseCase.end()
- completeActiveStream(assistantMessageId)
+ await handleStreamingFailure(error, assistantMessageId: assistantMessageId, model: sendContext.modelId)
}
}
@@ -79,7 +71,9 @@ extension ChatViewModel {
if let index = state.messages.firstIndex(where: { $0.id == assistantMessageId }) {
state.messages[index].tokenUsage = usage
}
- refreshContextUsage(in: &state, calibratedPromptTokens: usage.promptTokens)
+ if usage.promptTokens > 0 {
+ refreshContextUsage(in: &state, calibratedPromptTokens: usage.promptTokens)
+ }
case .image(let imageData):
appendGeneratedImage(imageData, to: &state, assistantMessageId: assistantMessageId)
}
@@ -90,6 +84,27 @@ extension ChatViewModel {
// MARK: - Private
private extension ChatViewModel {
+ func handleStreamingFailure(_ error: Error, assistantMessageId: UUID, model: String) async {
+ guard !Task.isCancelled, isActiveStream(assistantMessageId) else { return }
+ flushStreamingTextUpdates(for: assistantMessageId)
+ guard case .loaded(var currentState) = state else { return }
+ LogManager.error("performStreaming error model=\(model): \(error)")
+ if let index = currentState.messages.firstIndex(where: { $0.id == assistantMessageId }),
+ currentState.messages[index].content.isEmpty,
+ (currentState.messages[index].reasoningContent ?? "").isEmpty,
+ currentState.messages[index].attachments.isEmpty {
+ currentState.messages.remove(at: index)
+ }
+ currentState.isStreaming = false
+ currentState.errorMessage = error.localizedDescription
+ refreshContextUsage(in: ¤tState)
+ state = .loaded(currentState)
+ scheduleErrorDismiss()
+ await persistConversation()
+ streamingBackgroundUseCase.end()
+ completeActiveStream(assistantMessageId)
+ }
+
func processStreamingChunk(_ chunk: StreamChunk, assistantMessageId: UUID) async -> Bool {
switch chunk {
case .token(let text):
@@ -110,13 +125,24 @@ private extension ChatViewModel {
return true
}
- func finishStreaming(_ assistantMessageId: UUID, model: String) async {
+ func finishStreaming(
+ _ assistantMessageId: UUID,
+ model: String,
+ reportedPromptTokens: Int?
+ ) async {
guard isActiveStream(assistantMessageId), case .loaded(var currentState) = state else { return }
let updates = takeStreamingTextUpdates(for: assistantMessageId)
applyStreamingTextUpdates(updates, to: ¤tState, assistantMessageId: assistantMessageId)
currentState.isStreaming = false
removeEmptyAssistantMessage(assistantMessageId, from: ¤tState)
- refreshContextUsage(in: ¤tState)
+ refreshContextUsage(
+ in: ¤tState,
+ calibratedPromptTokens: contextTokensAfterResponse(
+ promptTokens: reportedPromptTokens,
+ assistantMessageId: assistantMessageId,
+ state: currentState
+ )
+ )
state = .loaded(currentState)
LogManager.success("performStreaming completed model=\(model)")
let didPersist = await persistConversation()
diff --git a/openclient-llm/Shared/Features/Launch/Views/ForceUpdateView.swift b/openclient-llm/Shared/Features/Launch/Views/ForceUpdateView.swift
index cb6deddc..2077508d 100644
--- a/openclient-llm/Shared/Features/Launch/Views/ForceUpdateView.swift
+++ b/openclient-llm/Shared/Features/Launch/Views/ForceUpdateView.swift
@@ -24,8 +24,7 @@ struct ForceUpdateView: View {
.ignoresSafeArea()
VStack(spacing: 24) {
- Image("logo")
- .resizable()
+ CurrentAppIconImage()
.scaledToFit()
.frame(width: 125, height: 125)
.shadow(color: .cyan.opacity(0.4), radius: 24, x: 0, y: 8)
diff --git a/openclient-llm/Shared/Features/Launch/Views/MaintenanceView.swift b/openclient-llm/Shared/Features/Launch/Views/MaintenanceView.swift
index 10f1af3b..6d39704f 100644
--- a/openclient-llm/Shared/Features/Launch/Views/MaintenanceView.swift
+++ b/openclient-llm/Shared/Features/Launch/Views/MaintenanceView.swift
@@ -18,8 +18,7 @@ struct MaintenanceView: View {
.ignoresSafeArea()
VStack(spacing: 24) {
- Image("logo")
- .resizable()
+ CurrentAppIconImage()
.scaledToFit()
.frame(width: 125, height: 125)
.shadow(color: .cyan.opacity(0.4), radius: 24, x: 0, y: 8)
diff --git a/openclient-llm/Shared/Features/Settings/ViewModels/SettingsViewModel+Events.swift b/openclient-llm/Shared/Features/Settings/ViewModels/SettingsViewModel+Events.swift
index 2079cb14..271e2e9a 100644
--- a/openclient-llm/Shared/Features/Settings/ViewModels/SettingsViewModel+Events.swift
+++ b/openclient-llm/Shared/Features/Settings/ViewModels/SettingsViewModel+Events.swift
@@ -19,6 +19,8 @@ extension SettingsViewModel {
handleCloudSyncEvent(event)
case .showTokenUsageToggled, .privacyScreenToggled:
handlePreferenceToggleEvent(event)
+ case .appIconSelected(let icon):
+ changeAppIcon(to: icon)
case .webSearchToolNameChanged, .webSearchMaxResultsChanged, .fetchSearchToolsTapped,
.fetchMCPToolsTapped, .mcpToolToggled, .mcpToolsToggled,
.mcpToolPermissionChanged, .mcpToolsPermissionChanged:
@@ -96,4 +98,31 @@ extension SettingsViewModel {
func enabledMCPToolIds(savedIds: [String], tools: [MCPToolInfo]) -> Set {
MCPToolInfo.migratedEnabledToolIds(savedIds: savedIds, tools: tools)
}
+
+ private func changeAppIcon(to icon: AppIcon) {
+ guard case .loaded(var loadedState) = state,
+ loadedState.canChangeAppIcon,
+ !loadedState.isChangingAppIcon,
+ loadedState.selectedAppIcon != icon else { return }
+
+ loadedState.isChangingAppIcon = true
+ loadedState.appIconError = nil
+ state = .loaded(loadedState)
+
+ Task {
+ do {
+ try await appIconManager.setIcon(icon)
+ guard case .loaded(var currentState) = state else { return }
+ currentState.selectedAppIcon = icon
+ currentState.isChangingAppIcon = false
+ state = .loaded(currentState)
+ } catch {
+ LogManager.error("Unable to change app icon: \(error.localizedDescription)")
+ guard case .loaded(var currentState) = state else { return }
+ currentState.isChangingAppIcon = false
+ currentState.appIconError = String(localized: "The app icon could not be changed. Please try again.")
+ state = .loaded(currentState)
+ }
+ }
+ }
}
diff --git a/openclient-llm/Shared/Features/Settings/ViewModels/SettingsViewModel.swift b/openclient-llm/Shared/Features/Settings/ViewModels/SettingsViewModel.swift
index f90cddac..d3f4c2bb 100644
--- a/openclient-llm/Shared/Features/Settings/ViewModels/SettingsViewModel.swift
+++ b/openclient-llm/Shared/Features/Settings/ViewModels/SettingsViewModel.swift
@@ -41,6 +41,7 @@ final class SettingsViewModel {
case mcpToolsToggled(toolIds: [String], enabled: Bool)
case mcpToolPermissionChanged(toolId: String, permission: MCPToolPermission)
case mcpToolsPermissionChanged(toolIds: [String], permission: MCPToolPermission)
+ case appIconSelected(AppIcon)
}
enum State: Equatable {
@@ -79,6 +80,10 @@ final class SettingsViewModel {
var mcpDiscoveryRevision: Int = 0
var isLoadingMCPTools: Bool = false
var mcpToolsError: String?
+ var selectedAppIcon: AppIcon = .defaultIcon
+ var canChangeAppIcon: Bool = false
+ var isChangingAppIcon: Bool = false
+ var appIconError: String?
}
enum ConnectionStatus: Equatable {
@@ -113,6 +118,7 @@ final class SettingsViewModel {
private let resetAppUseCase: ResetAppDataUseCaseProtocol
private let checkNotificationPermissionUseCase: NotificationStatusCheckProtocol
let notificationPermissionUseCase: NotificationPermissionUseCaseProtocol
+ let appIconManager: AppIconManagerProtocol
private let remoteConfigManager: RemoteConfigManagerProtocol
var synchronizationTask: Task?
var cloudEnableTask: Task?
@@ -141,6 +147,7 @@ final class SettingsViewModel {
resetAppUseCase: ResetAppDataUseCaseProtocol = ResetAppDataUseCase(),
checkNotificationPermissionUseCase: NotificationStatusCheckProtocol = CheckNotificationPermissionUseCase(),
notificationPermissionUseCase: NotificationPermissionUseCaseProtocol = NotificationPermissionUseCase(),
+ appIconManager: AppIconManagerProtocol = AppIconManager(),
remoteConfigManager: RemoteConfigManagerProtocol = RemoteConfigManager.shared
) {
self.state = state
@@ -160,6 +167,7 @@ final class SettingsViewModel {
self.resetAppUseCase = resetAppUseCase
self.checkNotificationPermissionUseCase = checkNotificationPermissionUseCase
self.notificationPermissionUseCase = notificationPermissionUseCase
+ self.appIconManager = appIconManager
self.remoteConfigManager = remoteConfigManager
observeMCPToolSettingsChanges()
}
@@ -190,7 +198,9 @@ extension SettingsViewModel {
availableSearchTools: settingsManager.getAvailableSearchTools(),
isPrivacyScreenEnabled: settingsManager.getIsPrivacyScreenEnabled(),
isTipJarEnabled: remoteConfigManager.currentConfig?.isTipJarEnabled ?? true,
- enabledMCPToolIds: Set(settingsManager.getEnabledMCPToolIds())
+ enabledMCPToolIds: Set(settingsManager.getEnabledMCPToolIds()),
+ selectedAppIcon: appIconManager.selectedIcon,
+ canChangeAppIcon: appIconManager.supportsAlternateIcons
)
state = .loaded(loadedState)
if loadedState.isCloudSyncEnabled {
diff --git a/openclient-llm/Shared/Features/Settings/Views/AppIconSelectionView.swift b/openclient-llm/Shared/Features/Settings/Views/AppIconSelectionView.swift
new file mode 100644
index 00000000..07d70e2a
--- /dev/null
+++ b/openclient-llm/Shared/Features/Settings/Views/AppIconSelectionView.swift
@@ -0,0 +1,165 @@
+//
+// AppIconSelectionView.swift
+// openclient-llm
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+#if os(iOS)
+import SwiftUI
+
+struct AppIconSelectionView: View {
+ // MARK: - Properties
+
+ let selectedIcon: AppIcon
+ let canChangeIcon: Bool
+ let isChangingIcon: Bool
+ let errorMessage: String?
+ let onSelect: (AppIcon) -> Void
+
+ @Environment(\.dismiss) private var dismiss
+
+ private let columns = [
+ GridItem(.adaptive(minimum: 88, maximum: 112), spacing: 16)
+ ]
+
+ // MARK: - View
+
+ var body: some View {
+ NavigationStack {
+ ScrollView {
+ LazyVStack(alignment: .leading, spacing: 28) {
+ selectedIconHeader
+ statusView
+ iconCatalog
+ }
+ .padding(.horizontal, 20)
+ .padding(.vertical, 24)
+ }
+ .navigationTitle(String(localized: "App Icon"))
+ .navigationBarTitleDisplayMode(.inline)
+ .toolbar {
+ ToolbarItem(placement: .cancellationAction) {
+ Button(String(localized: "Done")) {
+ dismiss()
+ }
+ }
+ }
+ }
+ }
+}
+
+// MARK: - Private
+
+private extension AppIconSelectionView {
+ var selectedIconHeader: some View {
+ VStack(spacing: 12) {
+ ZStack {
+ appIconImage(selectedIcon, size: 112, cornerRadius: 25)
+ if isChangingIcon {
+ RoundedRectangle(cornerRadius: 25, style: .continuous)
+ .fill(.black.opacity(0.35))
+ .frame(width: 112, height: 112)
+ ProgressView()
+ .tint(.white)
+ }
+ }
+ Text(String(localized: "Current Icon"))
+ .font(.caption)
+ .foregroundStyle(.secondary)
+ Text(selectedIcon.localizedName)
+ .font(.title3.weight(.semibold))
+ }
+ .frame(maxWidth: .infinity)
+ .accessibilityElement(children: .combine)
+ }
+
+ @ViewBuilder
+ var statusView: some View {
+ if !canChangeIcon {
+ Label(
+ String(localized: "App icon changes are unavailable on this device."),
+ systemImage: "exclamationmark.triangle"
+ )
+ .font(.callout)
+ .foregroundStyle(.secondary)
+ } else if let errorMessage {
+ Label(errorMessage, systemImage: "exclamationmark.triangle.fill")
+ .font(.callout)
+ .foregroundStyle(.red)
+ }
+ }
+
+ var iconCatalog: some View {
+ ForEach(AppIcon.Category.allCases) { category in
+ VStack(alignment: .leading, spacing: 14) {
+ Text(category.localizedName)
+ .font(.headline)
+
+ LazyVGrid(columns: columns, spacing: 20) {
+ ForEach(AppIcon.icons(in: category)) { icon in
+ iconButton(icon)
+ }
+ }
+ }
+ }
+ }
+
+ func iconButton(_ icon: AppIcon) -> some View {
+ let isSelected = icon == selectedIcon
+
+ return Button {
+ onSelect(icon)
+ } label: {
+ VStack(spacing: 8) {
+ ZStack(alignment: .topTrailing) {
+ appIconImage(icon, size: 76, cornerRadius: 17)
+ .overlay {
+ RoundedRectangle(cornerRadius: 17, style: .continuous)
+ .stroke(isSelected ? Color.accentColor : .clear, lineWidth: 3)
+ }
+
+ if isSelected {
+ Image(systemName: "checkmark.circle.fill")
+ .font(.title3)
+ .symbolRenderingMode(.palette)
+ .foregroundStyle(.white, Color.accentColor)
+ .background(.white, in: Circle())
+ .offset(x: 5, y: -5)
+ }
+ }
+
+ Text(icon.localizedName)
+ .font(.caption)
+ .fontWeight(isSelected ? .semibold : .regular)
+ .foregroundStyle(.primary)
+ .lineLimit(1)
+ }
+ .frame(maxWidth: .infinity)
+ .contentShape(.rect)
+ }
+ .buttonStyle(.plain)
+ .disabled(!canChangeIcon || isChangingIcon || isSelected)
+ .accessibilityValue(isSelected ? String(localized: "Selected") : "")
+ }
+
+ func appIconImage(_ icon: AppIcon, size: CGFloat, cornerRadius: CGFloat) -> some View {
+ AppIconPreviewImage(icon: icon)
+ .scaledToFit()
+ .frame(width: size, height: size)
+ .clipShape(RoundedRectangle(cornerRadius: cornerRadius, style: .continuous))
+ .shadow(color: .black.opacity(0.12), radius: 5, y: 2)
+ }
+}
+
+#Preview {
+ AppIconSelectionView(
+ selectedIcon: .ocean,
+ canChangeIcon: true,
+ isChangingIcon: false,
+ errorMessage: nil,
+ onSelect: { _ in }
+ )
+}
+#endif
diff --git a/openclient-llm/Shared/Features/Settings/Views/SettingsView+AppIcon.swift b/openclient-llm/Shared/Features/Settings/Views/SettingsView+AppIcon.swift
new file mode 100644
index 00000000..828c62e0
--- /dev/null
+++ b/openclient-llm/Shared/Features/Settings/Views/SettingsView+AppIcon.swift
@@ -0,0 +1,73 @@
+//
+// SettingsView+AppIcon.swift
+// openclient-llm
+//
+// Created by Arturo Carretero Calvo on 26/08/2026.
+// Copyright © 2026 Arturo Carretero Calvo. All rights reserved.
+//
+
+import SwiftUI
+#if os(iOS)
+import TipKit
+#endif
+
+extension SettingsView {
+ @ViewBuilder
+ func appIconSection(_ loadedState: SettingsViewModel.LoadedState) -> some View {
+#if os(iOS)
+ AppIconSettingsSection(
+ loadedState: loadedState,
+ onSelect: { viewModel.send(.appIconSelected($0)) }
+ )
+#else
+ EmptyView()
+#endif
+ }
+}
+
+#if os(iOS)
+private struct AppIconSettingsSection: View {
+ let loadedState: SettingsViewModel.LoadedState
+ let onSelect: (AppIcon) -> Void
+
+ @State private var isShowingSelection = false
+
+ var body: some View {
+ Section {
+ Button {
+ AppTips.appIconSelection.invalidate(reason: .actionPerformed)
+ isShowingSelection = true
+ } label: {
+ HStack(spacing: 12) {
+ AppIconPreviewImage(icon: loadedState.selectedAppIcon)
+ .scaledToFit()
+ .frame(width: 40, height: 40)
+ .clipShape(RoundedRectangle(cornerRadius: 9, style: .continuous))
+
+ VStack(alignment: .leading, spacing: 2) {
+ Text(String(localized: "App Icon"))
+ Text(loadedState.selectedAppIcon.localizedName)
+ .font(.caption)
+ .foregroundStyle(.secondary)
+ }
+ }
+ }
+ .buttonStyle(.plain)
+ .popoverTip(loadedState.canChangeAppIcon ? AppTips.appIconSelection : nil)
+ .sheet(isPresented: $isShowingSelection) {
+ AppIconSelectionView(
+ selectedIcon: loadedState.selectedAppIcon,
+ canChangeIcon: loadedState.canChangeAppIcon,
+ isChangingIcon: loadedState.isChangingAppIcon,
+ errorMessage: loadedState.appIconError,
+ onSelect: onSelect
+ )
+ }
+ } header: {
+ Text(String(localized: "Appearance"))
+ } footer: {
+ Text(String(localized: "Choose how OpenClient appears on your Home Screen."))
+ }
+ }
+}
+#endif
diff --git a/openclient-llm/Shared/Features/Settings/Views/SettingsView.swift b/openclient-llm/Shared/Features/Settings/Views/SettingsView.swift
index 28a04af3..61603aa0 100644
--- a/openclient-llm/Shared/Features/Settings/Views/SettingsView.swift
+++ b/openclient-llm/Shared/Features/Settings/Views/SettingsView.swift
@@ -243,6 +243,7 @@ private extension SettingsView {
func loadedView(_ loadedState: SettingsViewModel.LoadedState) -> some View {
VStack(spacing: 0) {
Form {
+ appIconSection(loadedState)
serverSection(loadedState)
cloudSyncSection(loadedState)
personalizationSection()
diff --git a/openclient-llm/Shared/Features/Settings/Views/TipJarView.swift b/openclient-llm/Shared/Features/Settings/Views/TipJarView.swift
index 95a70303..65ce5ef4 100644
--- a/openclient-llm/Shared/Features/Settings/Views/TipJarView.swift
+++ b/openclient-llm/Shared/Features/Settings/Views/TipJarView.swift
@@ -166,8 +166,7 @@ private extension TipJarView {
func headerSection() -> some View {
VStack(spacing: headerMetrics.spacing) {
- Image("logo")
- .resizable()
+ CurrentAppIconImage()
.scaledToFit()
.frame(width: headerMetrics.logoSize, height: headerMetrics.logoSize)
.cornerRadius(25)
diff --git a/openclient-llm/Shared/Resources/Icon.icon/Assets/logo.png b/openclient-llm/Shared/Resources/Icon.icon/Assets/logo.png
deleted file mode 100644
index d299af19..00000000
Binary files a/openclient-llm/Shared/Resources/Icon.icon/Assets/logo.png and /dev/null differ
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Honeydew.icon/Assets/Honeydew.png b/openclient-llm/Shared/Resources/Icons/Bright/Honeydew.icon/Assets/Honeydew.png
new file mode 100644
index 00000000..4d69e188
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Bright/Honeydew.icon/Assets/Honeydew.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Honeydew.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Bright/Honeydew.icon/icon.json
new file mode 100644
index 00000000..f7ded1c6
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Bright/Honeydew.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Honeydew.png",
+ "name" : "Honeydew"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Honeydew.png b/openclient-llm/Shared/Resources/Icons/Bright/Honeydew.png
new file mode 100644
index 00000000..4d69e188
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Bright/Honeydew.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Lavender.icon/Assets/Lavender.png b/openclient-llm/Shared/Resources/Icons/Bright/Lavender.icon/Assets/Lavender.png
new file mode 100644
index 00000000..1a92a443
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Bright/Lavender.icon/Assets/Lavender.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Lavender.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Bright/Lavender.icon/icon.json
new file mode 100644
index 00000000..1a6c7cb8
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Bright/Lavender.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Lavender.png",
+ "name" : "Lavender"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Lavender.png b/openclient-llm/Shared/Resources/Icons/Bright/Lavender.png
new file mode 100644
index 00000000..1a92a443
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Bright/Lavender.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Mars.icon/Assets/Mars.png b/openclient-llm/Shared/Resources/Icons/Bright/Mars.icon/Assets/Mars.png
new file mode 100644
index 00000000..1aadda7d
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Bright/Mars.icon/Assets/Mars.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Mars.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Bright/Mars.icon/icon.json
new file mode 100644
index 00000000..cfe4199c
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Bright/Mars.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Mars.png",
+ "name" : "Mars"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Mars.png b/openclient-llm/Shared/Resources/Icons/Bright/Mars.png
new file mode 100644
index 00000000..1aadda7d
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Bright/Mars.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Sakura.icon/Assets/Sakura.png b/openclient-llm/Shared/Resources/Icons/Bright/Sakura.icon/Assets/Sakura.png
new file mode 100644
index 00000000..00a96fb6
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Bright/Sakura.icon/Assets/Sakura.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Sakura.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Bright/Sakura.icon/icon.json
new file mode 100644
index 00000000..2278e7ea
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Bright/Sakura.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Sakura.png",
+ "name" : "Sakura"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Sakura.png b/openclient-llm/Shared/Resources/Icons/Bright/Sakura.png
new file mode 100644
index 00000000..00a96fb6
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Bright/Sakura.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Solar.icon/Assets/Solar.png b/openclient-llm/Shared/Resources/Icons/Bright/Solar.icon/Assets/Solar.png
new file mode 100644
index 00000000..ad626e5e
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Bright/Solar.icon/Assets/Solar.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Solar.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Bright/Solar.icon/icon.json
new file mode 100644
index 00000000..4bf84e27
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Bright/Solar.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Solar.png",
+ "name" : "Solar"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Bright/Solar.png b/openclient-llm/Shared/Resources/Icons/Bright/Solar.png
new file mode 100644
index 00000000..ad626e5e
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Bright/Solar.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Arctic.icon/Assets/Arctic.png b/openclient-llm/Shared/Resources/Icons/Colors/Arctic.icon/Assets/Arctic.png
new file mode 100644
index 00000000..49857e4b
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Colors/Arctic.icon/Assets/Arctic.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Arctic.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Colors/Arctic.icon/icon.json
new file mode 100644
index 00000000..f3b3aa9d
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Colors/Arctic.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Arctic.png",
+ "name" : "Arctic"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Arctic.png b/openclient-llm/Shared/Resources/Icons/Colors/Arctic.png
new file mode 100644
index 00000000..49857e4b
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Colors/Arctic.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Aurora.icon/Assets/Aurora.png b/openclient-llm/Shared/Resources/Icons/Colors/Aurora.icon/Assets/Aurora.png
new file mode 100644
index 00000000..4629b7d7
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Colors/Aurora.icon/Assets/Aurora.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Aurora.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Colors/Aurora.icon/icon.json
new file mode 100644
index 00000000..5ad6cf14
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Colors/Aurora.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Aurora.png",
+ "name" : "Aurora"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Aurora.png b/openclient-llm/Shared/Resources/Icons/Colors/Aurora.png
new file mode 100644
index 00000000..4629b7d7
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Colors/Aurora.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Berry.icon/Assets/Berry.png b/openclient-llm/Shared/Resources/Icons/Colors/Berry.icon/Assets/Berry.png
new file mode 100644
index 00000000..26618323
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Colors/Berry.icon/Assets/Berry.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Berry.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Colors/Berry.icon/icon.json
new file mode 100644
index 00000000..2b2c42ab
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Colors/Berry.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Berry.png",
+ "name" : "Berry"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Berry.png b/openclient-llm/Shared/Resources/Icons/Colors/Berry.png
new file mode 100644
index 00000000..26618323
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Colors/Berry.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Sunset.icon/Assets/Sunset.png b/openclient-llm/Shared/Resources/Icons/Colors/Sunset.icon/Assets/Sunset.png
new file mode 100644
index 00000000..bc4fc698
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Colors/Sunset.icon/Assets/Sunset.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Sunset.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Colors/Sunset.icon/icon.json
new file mode 100644
index 00000000..10c20797
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Colors/Sunset.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Sunset.png",
+ "name" : "Sunset"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Sunset.png b/openclient-llm/Shared/Resources/Icons/Colors/Sunset.png
new file mode 100644
index 00000000..bc4fc698
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Colors/Sunset.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Violet.icon/Assets/Violet.png b/openclient-llm/Shared/Resources/Icons/Colors/Violet.icon/Assets/Violet.png
new file mode 100644
index 00000000..1293de02
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Colors/Violet.icon/Assets/Violet.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Violet.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Colors/Violet.icon/icon.json
new file mode 100644
index 00000000..742f6fa3
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Colors/Violet.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Violet.png",
+ "name" : "Violet"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Colors/Violet.png b/openclient-llm/Shared/Resources/Icons/Colors/Violet.png
new file mode 100644
index 00000000..1293de02
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Colors/Violet.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Default.icon/Assets/Default.png b/openclient-llm/Shared/Resources/Icons/OpenClient/Default.icon/Assets/Default.png
new file mode 100644
index 00000000..0db5ca47
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/OpenClient/Default.icon/Assets/Default.png differ
diff --git a/openclient-llm/Shared/Resources/Icon.icon/icon.json b/openclient-llm/Shared/Resources/Icons/OpenClient/Default.icon/icon.json
similarity index 60%
rename from openclient-llm/Shared/Resources/Icon.icon/icon.json
rename to openclient-llm/Shared/Resources/Icons/OpenClient/Default.icon/icon.json
index 991a3789..0c6af9c7 100644
--- a/openclient-llm/Shared/Resources/Icon.icon/icon.json
+++ b/openclient-llm/Shared/Resources/Icons/OpenClient/Default.icon/icon.json
@@ -7,18 +7,8 @@
{
"layers" : [
{
- "blend-mode" : "normal",
- "fill" : "automatic",
- "hidden" : false,
- "image-name" : "logo.png",
- "name" : "logo",
- "position" : {
- "scale" : 1,
- "translation-in-points" : [
- 0,
- 0
- ]
- }
+ "image-name" : "Default.png",
+ "name" : "Default"
}
],
"name" : "Image",
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Default.png b/openclient-llm/Shared/Resources/Icons/OpenClient/Default.png
new file mode 100644
index 00000000..0db5ca47
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/OpenClient/Default.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Midnight.icon/Assets/Midnight.png b/openclient-llm/Shared/Resources/Icons/OpenClient/Midnight.icon/Assets/Midnight.png
new file mode 100644
index 00000000..7d14d04b
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/OpenClient/Midnight.icon/Assets/Midnight.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Midnight.icon/icon.json b/openclient-llm/Shared/Resources/Icons/OpenClient/Midnight.icon/icon.json
new file mode 100644
index 00000000..21a1966e
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/OpenClient/Midnight.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Midnight.png",
+ "name" : "Midnight"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Midnight.png b/openclient-llm/Shared/Resources/Icons/OpenClient/Midnight.png
new file mode 100644
index 00000000..7d14d04b
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/OpenClient/Midnight.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Mono.icon/Assets/Mono.png b/openclient-llm/Shared/Resources/Icons/OpenClient/Mono.icon/Assets/Mono.png
new file mode 100644
index 00000000..b67caf32
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/OpenClient/Mono.icon/Assets/Mono.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Mono.icon/icon.json b/openclient-llm/Shared/Resources/Icons/OpenClient/Mono.icon/icon.json
new file mode 100644
index 00000000..28de196d
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/OpenClient/Mono.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Mono.png",
+ "name" : "Mono"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Mono.png b/openclient-llm/Shared/Resources/Icons/OpenClient/Mono.png
new file mode 100644
index 00000000..b67caf32
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/OpenClient/Mono.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Ocean.icon/Assets/Ocean.png b/openclient-llm/Shared/Resources/Icons/OpenClient/Ocean.icon/Assets/Ocean.png
new file mode 100644
index 00000000..919e9fc5
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/OpenClient/Ocean.icon/Assets/Ocean.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Ocean.icon/icon.json b/openclient-llm/Shared/Resources/Icons/OpenClient/Ocean.icon/icon.json
new file mode 100644
index 00000000..6096099c
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/OpenClient/Ocean.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Ocean.png",
+ "name" : "Ocean"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Ocean.png b/openclient-llm/Shared/Resources/Icons/OpenClient/Ocean.png
new file mode 100644
index 00000000..919e9fc5
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/OpenClient/Ocean.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Terminal.icon/Assets/Terminal.png b/openclient-llm/Shared/Resources/Icons/OpenClient/Terminal.icon/Assets/Terminal.png
new file mode 100644
index 00000000..9132f3d6
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/OpenClient/Terminal.icon/Assets/Terminal.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Terminal.icon/icon.json b/openclient-llm/Shared/Resources/Icons/OpenClient/Terminal.icon/icon.json
new file mode 100644
index 00000000..bde1c8ed
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/OpenClient/Terminal.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Terminal.png",
+ "name" : "Terminal"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/OpenClient/Terminal.png b/openclient-llm/Shared/Resources/Icons/OpenClient/Terminal.png
new file mode 100644
index 00000000..9132f3d6
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/OpenClient/Terminal.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Blueprint.icon/Assets/Blueprint.png b/openclient-llm/Shared/Resources/Icons/Special/Blueprint.icon/Assets/Blueprint.png
new file mode 100644
index 00000000..f0a1eb13
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Special/Blueprint.icon/Assets/Blueprint.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Blueprint.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Special/Blueprint.icon/icon.json
new file mode 100644
index 00000000..aa17cccd
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Special/Blueprint.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Blueprint.png",
+ "name" : "Blueprint"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Blueprint.png b/openclient-llm/Shared/Resources/Icons/Special/Blueprint.png
new file mode 100644
index 00000000..f0a1eb13
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Special/Blueprint.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Copper.icon/Assets/Copper.png b/openclient-llm/Shared/Resources/Icons/Special/Copper.icon/Assets/Copper.png
new file mode 100644
index 00000000..a8fd17ac
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Special/Copper.icon/Assets/Copper.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Copper.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Special/Copper.icon/icon.json
new file mode 100644
index 00000000..f49231ec
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Special/Copper.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Copper.png",
+ "name" : "Copper"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Copper.png b/openclient-llm/Shared/Resources/Icons/Special/Copper.png
new file mode 100644
index 00000000..a8fd17ac
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Special/Copper.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Holo.icon/Assets/Holo.png b/openclient-llm/Shared/Resources/Icons/Special/Holo.icon/Assets/Holo.png
new file mode 100644
index 00000000..bd43073b
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Special/Holo.icon/Assets/Holo.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Holo.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Special/Holo.icon/icon.json
new file mode 100644
index 00000000..b3b31af4
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Special/Holo.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Holo.png",
+ "name" : "Holo"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Holo.png b/openclient-llm/Shared/Resources/Icons/Special/Holo.png
new file mode 100644
index 00000000..bd43073b
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Special/Holo.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Retro.icon/Assets/Retro.png b/openclient-llm/Shared/Resources/Icons/Special/Retro.icon/Assets/Retro.png
new file mode 100644
index 00000000..433583cc
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Special/Retro.icon/Assets/Retro.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Retro.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Special/Retro.icon/icon.json
new file mode 100644
index 00000000..ded2f51a
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Special/Retro.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Retro.png",
+ "name" : "Retro"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Retro.png b/openclient-llm/Shared/Resources/Icons/Special/Retro.png
new file mode 100644
index 00000000..433583cc
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Special/Retro.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Ultraviolet.icon/Assets/Ultraviolet.png b/openclient-llm/Shared/Resources/Icons/Special/Ultraviolet.icon/Assets/Ultraviolet.png
new file mode 100644
index 00000000..c562e787
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Special/Ultraviolet.icon/Assets/Ultraviolet.png differ
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Ultraviolet.icon/icon.json b/openclient-llm/Shared/Resources/Icons/Special/Ultraviolet.icon/icon.json
new file mode 100644
index 00000000..f74bc51c
--- /dev/null
+++ b/openclient-llm/Shared/Resources/Icons/Special/Ultraviolet.icon/icon.json
@@ -0,0 +1,28 @@
+{
+ "color-space-for-untagged-svg-colors" : "display-p3",
+ "fill" : {
+ "automatic-gradient" : "extended-srgb:0.00000,0.53333,1.00000,1.00000"
+ },
+ "groups" : [
+ {
+ "layers" : [
+ {
+ "image-name" : "Ultraviolet.png",
+ "name" : "Ultraviolet"
+ }
+ ],
+ "name" : "Image",
+ "shadow" : {
+ "kind" : "neutral",
+ "opacity" : 0.5
+ },
+ "translucency" : {
+ "enabled" : true,
+ "value" : 0.5
+ }
+ }
+ ],
+ "supported-platforms" : {
+ "squares" : "shared"
+ }
+}
diff --git a/openclient-llm/Shared/Resources/Icons/Special/Ultraviolet.png b/openclient-llm/Shared/Resources/Icons/Special/Ultraviolet.png
new file mode 100644
index 00000000..c562e787
Binary files /dev/null and b/openclient-llm/Shared/Resources/Icons/Special/Ultraviolet.png differ
diff --git a/openclient-llm/Shared/Resources/Localizable.xcstrings b/openclient-llm/Shared/Resources/Localizable.xcstrings
index f247eeba..79911f73 100644
--- a/openclient-llm/Shared/Resources/Localizable.xcstrings
+++ b/openclient-llm/Shared/Resources/Localizable.xcstrings
@@ -1,26199 +1,26161 @@
{
- "sourceLanguage" : "en",
"strings" : {
- "Retry" : {
+ "%lld servers available" : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Riprova"
+ "value" : "%lld server disponibili",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Erneut versuchen"
+ "value" : "%lld servers available",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "再試行"
+ "value" : "%lld servidores disponibles",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tentar novamente"
+ "value" : "%lld serveurs disponibles",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reintentar"
+ "value" : "%lld servers beschikbaar"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Opnieuw proberen"
+ "value" : "%lld Server verfügbar",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επανάληψη προσπάθειας"
+ "value" : "Διαθέσιμοι διακομιστές MCP: %lld"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Réessayer"
+ "value" : "利用可能なサーバー数:%lld"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Försök igen"
+ "value" : "%lld tillgängliga servrar"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Retry"
+ "value" : "%lld servidores MCP disponíveis",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label that shows the number of MCP servers available. The argument is the number of servers."
},
- "Documents" : {
- "comment" : "A section header for a list of documents.",
+ "Colors" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Documenti"
+ "value" : "カラー複数"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dokumente"
+ "value" : "Couleurs"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ドキュメント"
+ "value" : "Colors",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Documentos"
+ "value" : "Colori",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Documentos"
+ "value" : "Kleuren"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Documenten"
+ "value" : "Cores"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Έγγραφα"
+ "value" : "Colores",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Documents"
+ "value" : "Färger",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dokument"
+ "value" : "Χρώματα",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Documents"
+ "value" : "Farben",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Category of app icons that use colors."
},
- "The project notes are ready to review." : {
- "comment" : "Last message preview text for a conversation.",
+ "Mint" : {
+ "comment" : "Name of a tag color.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le note del progetto sono pronte per la revisione."
+ "value" : "Munt",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die Projektnotizen sind bereit zur Überprüfung."
+ "value" : "Mint",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "プロジェクトのメモがレビュー可能です。"
+ "value" : "Mynta",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "As notas do projeto estão prontas para revisão."
+ "value" : "Menta",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Las notas del proyecto están listas para revisar."
+ "value" : "Μέντα",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De projectnotities zijn klaar om te bekijken."
+ "value" : "Menta",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les notes du projet sont prêtes à être examinées."
+ "value" : "Menthe"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Οι σημειώσεις του έργου είναι έτοιμες για ανασκόπηση."
+ "value" : "ミント",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Projektanteckningarna är klara för granskning."
+ "value" : "Menta",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The project notes are ready to review."
+ "value" : "Münze"
}
}
}
},
- "Add a comment" : {
+ "Balanced" : {
+ "comment" : "A description of a temperature value.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aggiungi un commento"
+ "value" : "Équilibré",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kommentar hinzufügen"
+ "value" : "Bilanciato"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "コメントを追加"
+ "value" : "バランス型"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Adicionar um comentário"
+ "value" : "Equilibrada"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Agregar un comentario"
+ "value" : "Equilibrado"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Een opmerking toevoegen"
+ "value" : "Ισορροπημένη"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ajouter un commentaire"
+ "value" : "Balanserad"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσθήκη σχολίου"
+ "value" : "Gebalanceerd"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lägg till en kommentar"
+ "value" : "Balanced"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Add a comment"
+ "value" : "Ausgeglichen"
}
}
}
},
- "No Tools Available" : {
- "comment" : "A description of the view when there are no tools available.",
+ "Translate text to another language" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessuno strumento disponibile"
+ "value" : "Traducir texto a otro idioma"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keine Tools verfügbar"
+ "value" : "Översätt text till ett annat språk",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "利用可能なツールはありません"
+ "value" : "Traduire le texte dans une autre langue",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nenhuma ferramenta disponível"
+ "value" : "Μεταφράστε το κείμενο σε άλλη γλώσσα"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No hay herramientas disponibles"
+ "value" : "Translate text to another language",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geen tools beschikbaar"
+ "value" : "Traduci testo in un'altra lingua"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aucun outil disponible"
+ "value" : "テキストを別の言語に翻訳する"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν υπάρχουν διαθέσιμα εργαλεία"
+ "value" : "Text in eine andere Sprache übersetzen"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga verktyg tillgängliga"
+ "value" : "Vertaal tekst naar een andere taal"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No Tools Available"
+ "value" : "Traduzir texto para outra língua",
+ "state" : "translated"
}
}
}
},
- "Deletion failed for %@" : {
+ "Chat" : {
+ "comment" : "A section of the settings view that deals with chat-related settings.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminazione non riuscita per %@"
+ "value" : "Συνομιλία",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Löschen von %@ fehlgeschlagen"
+ "value" : "Chat",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%@の削除に失敗しました"
+ "value" : "Chat"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Falha ao eliminar %@"
+ "value" : "Chatten",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pudo eliminar %@"
+ "value" : "チャット"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verwijderen van %@ mislukt"
+ "value" : "Chat",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η διαγραφή απέτυχε για το %@"
+ "value" : "Discussion",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Échec de la suppression de %@"
+ "value" : "Chat"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Det gick inte att radera %@"
+ "value" : "Chat",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deletion failed for %@"
+ "value" : "Chatt"
}
}
}
},
- "Max Tokens" : {
- "comment" : "A slider that lets the user adjust the maximum number of tokens.",
+ "Hide API Key" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Token massimi"
+ "value" : "Απόκρυψη κλειδιού API",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Maximale Tokenanzahl"
+ "value" : "Hide API Key"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "最大トークン数"
+ "value" : "Ocultar chave API",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tokens Máximos"
+ "value" : "Masquer la clé API"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Máximo de tokens"
+ "value" : "API-sleutel verbergen",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Maximaal aantal tokens"
+ "value" : "API-Schlüssel verbergen",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nombre maximal de jetons"
+ "value" : "Nascondi chiave API"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μέγιστοι χαρακτήρες"
+ "value" : "APIキーを隠す"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Maximalt antal token"
+ "value" : "Dölj API-nyckel"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Max Tokens"
+ "value" : "Ocultar clave API"
}
}
}
},
- "Explain why this feature would be useful" : {
+ "iCloud file access failed" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Spiega perché questa funzione sarebbe utile"
+ "value" : "Åtkomst till iCloud-filen misslyckades"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Erklären Sie, warum diese Funktion nützlich wäre"
+ "value" : "Échec de l’accès au fichier iCloud",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "この機能が役立つ理由を説明してください"
+ "value" : "Accesso al file iCloud non riuscito"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Explique por que esta funcionalidade seria útil"
+ "value" : "Toegang tot iCloud-bestand mislukt"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Explica por qué esta función sería útil"
+ "value" : "No se pudo acceder al archivo de iCloud"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Leg uit waarom deze functie nuttig zou zijn"
+ "value" : "Falha no acesso ao ficheiro do iCloud"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εξηγήστε γιατί αυτή η λειτουργία θα ήταν χρήσιμη"
+ "value" : "iCloudファイルへのアクセスに失敗しました",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Expliquez pourquoi cette fonctionnalité serait utile"
+ "value" : "iCloud file access failed"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Förklara varför denna funktion skulle vara användbar"
+ "value" : "Der Zugriff auf die iCloud-Datei ist fehlgeschlagen"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Explain why this feature would be useful"
+ "value" : "Αποτυχία πρόσβασης στο αρχείο iCloud"
}
}
}
},
- "Touch and hold a conversation to pin, rename, or add tags." : {
- "comment" : "A description of the action to pin, rename, or add tags to a conversation.",
+ "Choose how OpenClient appears on your Home Screen." : {
+ "comment" : "A description of the app icon settings.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tocca e tieni premuta una conversazione per fissarla, rinominarla o aggiungere tag."
+ "value" : "ホーム画面でのOpenClientの表示方法を選択してください。"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tippen und halten Sie eine Unterhaltung, um sie anzuheften, umzubenennen oder Tags hinzuzufügen."
+ "value" : "Kies hoe OpenClient op je beginscherm wordt weergegeven.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "会話を長押しして、ピン留め、名前変更、またはタグの追加を行います。"
+ "value" : "Choose how OpenClient appears on your Home Screen.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toque e mantenha uma conversa para fixar, renomear ou adicionar etiquetas."
+ "value" : "Scegli come appare OpenClient sulla schermata Home.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mantén pulsada una conversación para anclar, renombrar o agregar etiquetas."
+ "value" : "Choisissez l’apparence d’OpenClient sur votre écran d’accueil.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Houd een gesprek ingedrukt om vast te zetten, hernoemen of tags toe te voegen."
+ "value" : "Elige cómo aparece OpenClient en tu pantalla de inicio."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πατήστε παρατεταμένα μια συνομιλία για καρφίτσωμα, μετονομασία ή προσθήκη ετικετών."
+ "value" : "Escolha o modo como o OpenClient aparece no ecrã principal."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Touchez et maintenez une conversation pour l’épingler, la renommer ou ajouter des tags."
+ "value" : "Välj hur OpenClient visas på hemskärmen.",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tryck och håll på en konversation för att fästa, byta namn eller lägga till taggar."
+ "value" : "Επιλέξτε πώς θα εμφανίζεται το OpenClient στην αρχική οθόνη σας."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Touch and hold a conversation to pin, rename, or add tags"
+ "value" : "Wähle aus, wie OpenClient auf deinem Home-Bildschirm angezeigt wird."
}
}
}
},
- "All Tags" : {
- "comment" : "The default tag to be selected when the widget is configured.",
+ "The server configuration changed while the response was running." : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Tutti i tag"
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alle Tags"
+ "value" : "Die Serverkonfiguration wurde geändert, während die Antwort erstellt wurde."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "すべてのタグ"
+ "value" : "La configuration du serveur a changé pendant le traitement de la réponse.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Todas as Etiquetas"
+ "value" : "De serverconfiguratie is gewijzigd terwijl het antwoord werd gegenereerd.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Todas las etiquetas"
+ "value" : "La configuración del servidor cambió mientras se generaba la respuesta.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alle tags"
+ "value" : "La configurazione del server è cambiata mentre la risposta era in corso."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tous les tags"
+ "value" : "応答中にサーバー設定が変更されました。"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Όλες οι ετικέτες"
+ "value" : "A configuração do servidor foi alterada enquanto a resposta estava a decorrer."
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alla taggar"
+ "value" : "Serverkonfigurationen ändrades medan svaret pågick."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "All Tags"
+ "value" : "The server configuration changed while the response was running."
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Η διαμόρφωση του διακομιστή άλλαξε ενώ η απάντηση ήταν σε εξέλιξη.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error message when the server configuration changes during an agent response."
},
- "Always Deny Selected" : {
- "comment" : "A label that describes the selected option for a request.",
+ "The conversation context window must be greater than zero." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nega sempre i selezionati"
+ "value" : "Het contextvenster van het gesprek moet groter zijn dan nul."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ausgewählte Option „Immer ablehnen“"
+ "value" : "Το παράθυρο συμφραζομένων συνομιλίας πρέπει να είναι μεγαλύτερο του μηδενός.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "選択時は常に拒否する"
+ "value" : "The conversation context window must be greater than zero."
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recusar sempre selecionado"
+ "value" : "A janela de contexto da conversa deve ser maior que zero."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Denegar siempre seleccionado"
+ "value" : "Das Kontextfenster der Unterhaltung muss größer als null sein."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Altijd weigeren geselecteerd"
+ "value" : "La ventana de contexto de la conversación debe ser mayor que cero."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πάντα απόρριψη επιλεγμένη"
+ "value" : "Samtalskontextfönstret måste vara större än noll."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toujours refuser la sélection"
+ "value" : "会話コンテキストウィンドウはゼロより大きくする必要があります。",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neka alltid valt"
+ "value" : "La finestra del contesto della conversazione deve essere maggiore di zero."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Always Deny Selected"
+ "value" : "La fenêtre de contexte de la conversation doit être supérieure à zéro.",
+ "state" : "translated"
}
}
}
},
- "Speech recognition permission was not granted." : {
- "comment" : "Error message when speech recognition permission is not granted.",
+ "No conversations yet" : {
+ "comment" : "A message displayed when the user has no conversations.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il permesso per il riconoscimento vocale non è stato concesso."
+ "value" : "Inga konversationer än så länge"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Erlaubnis zur Spracherkennung wurde nicht erteilt."
+ "value" : "Aucune conversation pour le moment"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "音声認識の許可が付与されていません。"
+ "value" : "Nessuna conversazione ancora"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A permissão para reconhecimento de voz não foi concedida."
+ "value" : "No hay conversaciones aún",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se concedió permiso para el reconocimiento de voz."
+ "value" : "まだ会話はありません"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toestemming voor spraakherkenning is niet verleend."
+ "value" : "Nog geen gesprekken"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η άδεια αναγνώρισης ομιλίας δεν δόθηκε."
+ "value" : "No conversations yet"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La permission de reconnaissance vocale n’a pas été accordée."
+ "value" : "Ainda sem conversas",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tillstånd för taligenkänning beviljades inte."
+ "value" : "Noch keine Unterhaltungen vorhanden"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Speech recognition permission was not granted."
+ "value" : "Δεν υπάρχουν συνομιλίες ακόμα",
+ "state" : "translated"
}
}
}
},
- "Resend" : {
- "comment" : "A button that resends a message.",
+ "Document" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Reinvia"
+ "value" : "Document",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Erneut senden"
- }
- },
- "ja" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "再送信"
+ "value" : "Dokument",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reenviar"
+ "value" : "Έγγραφο"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reenviar"
+ "value" : "Documento"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Opnieuw verzenden"
+ "value" : "Dokument",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αποστολή ξανά"
+ "value" : "ドキュメント",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Renvoyer"
+ "value" : "Document"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Skicka igen"
+ "value" : "Documento"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Documento",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Resend"
+ "value" : "Document",
+ "state" : "translated"
}
}
}
},
- "Add things you want the assistant to remember across all conversations." : {
- "comment" : "A description of the feature that allows the user to add items to their memory.",
+ "Resend" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aggiungi elementi che vuoi che l’assistente ricordi in tutte le conversazioni."
+ "value" : "Renvoyer",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fügen Sie Dinge hinzu, an die sich der Assistent in allen Gesprächen erinnern soll."
+ "value" : "Reinvia"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アシスタントにすべての会話で記憶してほしい内容を追加してください"
+ "value" : "Resend",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Adicione coisas que pretende que o assistente lembre em todas as conversas."
+ "value" : "Opnieuw verzenden",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Agrega cosas que quieres que el asistente recuerde en todas las conversaciones."
+ "value" : "Erneut senden",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voeg dingen toe die de assistent in alle gesprekken moet onthouden."
+ "value" : "Reenviar",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Προσθέστε πράγματα που θέλετε ο βοηθός να θυμάται σε όλες τις συνομιλίες."
+ "value" : "Skicka igen",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ajoutez des éléments que vous souhaitez que l’assistant retienne dans toutes les conversations."
+ "value" : "再送信",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lägg till saker du vill att assistenten ska komma ihåg i alla konversationer."
+ "value" : "Reenviar"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Add items you want the assistant to remember across all conversations"
+ "value" : "Αποστολή ξανά"
}
}
- }
+ },
+ "comment" : "A button that resends a message."
},
- "Custom..." : {
- "comment" : "A button that opens a sheet for entering a custom voice ID.",
+ "Sunset" : {
+ "comment" : "Name of the sunset app icon.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Personalizzato..."
+ "value" : "Pôr do sol",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Benutzerdefiniert..."
+ "value" : "サンセット",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "カスタム..."
+ "value" : "Zonsondergang"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Personalizado..."
+ "value" : "Sonnenuntergang",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalizado..."
+ "value" : "Ηλιοβασίλεμα"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aangepast..."
+ "value" : "Solnedgång"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσαρμοσμένο..."
+ "value" : "Sunset"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personnalisé..."
+ "value" : "Tramonto"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anpassad..."
+ "value" : "Atardecer"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Custom..."
+ "value" : "Coucher de soleil",
+ "state" : "translated"
}
}
}
},
- "iCloud Sync is off" : {
+ "Deletes this conversation and its attachments from iCloud and all synchronized devices. Attachments cannot be deleted independently. This action cannot be undone." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La sincronizzazione iCloud è disattivata"
+ "value" : "Supprime cette conversation et ses pièces jointes d’iCloud et de tous les appareils synchronisés. Les pièces jointes ne peuvent pas être supprimées séparément. Cette action est irréversible.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-Synchronisierung ist deaktiviert"
+ "value" : "Löscht diese Unterhaltung und ihre Anhänge aus iCloud und von allen synchronisierten Geräten. Anhänge können nicht unabhängig gelöscht werden. Diese Aktion kann nicht rückgängig gemacht werden."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud同期はオフです"
+ "value" : "Verwijdert dit gesprek en de bijlagen ervan uit iCloud en van alle gesynchroniseerde apparaten. Bijlagen kunnen niet afzonderlijk worden verwijderd. Deze actie kan niet ongedaan worden gemaakt."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A sincronização do iCloud está desativada"
+ "value" : "Διαγράφει αυτή τη συνομιλία και τα συνημμένα της από το iCloud και όλες τις συγχρονισμένες συσκευές. Τα συνημμένα δεν μπορούν να διαγραφούν ανεξάρτητα. Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La sincronización de iCloud está desactivada"
+ "value" : "Elimina esta conversa e os respetivos anexos do iCloud e de todos os dispositivos sincronizados. Não é possível eliminar os anexos individualmente. Esta ação não pode ser anulada.",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-synchronisatie is uitgeschakeld"
+ "value" : "Deletes this conversation and its attachments from iCloud and all synchronized devices. Attachments cannot be deleted independently. This action cannot be undone."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ο συγχρονισμός iCloud είναι απενεργοποιημένος"
+ "value" : "Elimina questa conversazione e i relativi allegati da iCloud e da tutti i dispositivi sincronizzati. Gli allegati non possono essere eliminati singolarmente. Questa azione non può essere annullata."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La synchronisation iCloud est désactivée"
+ "value" : "この会話と添付ファイルをiCloudおよび同期済みのすべてのデバイスから削除します。添付ファイルを個別に削除することはできません。この操作は取り消せません。"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-synkronisering är avstängd"
+ "value" : "Raderar den här konversationen och dess bilagor från iCloud och alla synkroniserade enheter. Bilagor kan inte raderas separat. Den här åtgärden kan inte ångras.",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud Sync is off"
+ "value" : "Elimina esta conversación y sus archivos adjuntos de iCloud y de todos los dispositivos sincronizados. Los archivos adjuntos no se pueden eliminar de forma independiente. Esta acción no se puede deshacer.",
+ "state" : "translated"
}
}
}
},
- "per year" : {
- "comment" : "A description of the billing period for an annual subscription.",
+ "Loading tools..." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "all’anno"
+ "value" : "Tools laden..."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "pro Jahr"
+ "value" : "Φόρτωση εργαλείων..."
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "年額"
+ "value" : "A carregar ferramentas..."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "por ano"
+ "value" : "Cargando herramientas..."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "por año"
+ "value" : "Loading tools...",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "per jaar"
+ "value" : "Werkzeuge werden geladen...",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ανά έτος"
+ "value" : "Laddar verktyg...",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "par an"
+ "value" : "ツールを読み込み中..."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "per år"
+ "value" : "Caricamento strumenti..."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "per year"
+ "value" : "Chargement des outils...",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A loading message for MCP tools."
},
- "Permission" : {
- "comment" : "A label that displays a dropdown menu for selecting the user's permission for an external tool.",
+ "One-time support" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Autorizzazione"
+ "value" : "Engångsstöd"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Berechtigung"
+ "value" : "Soutien ponctuel"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "権限"
+ "value" : "Apoyo puntual"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Permissão"
+ "value" : "Eenmalige steun",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Permiso"
+ "value" : "One-time support"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Machtiging"
+ "value" : "Einmalige Unterstützung",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δικαίωμα πρόσβασης"
+ "value" : "Supporto una tantum"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Autorisation"
+ "value" : "Apoio único"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Behörighet"
+ "value" : "Εφάπαξ υποστήριξη",
+ "state" : "translated"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Permission"
+ "value" : "単発サポート",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A heading for a section of a tip jar view that shows one-time purchases."
},
- "Attach an image or PDF, or drag files into the chat for the model to analyse." : {
+ "Pricing" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Allega un'immagine o un PDF, oppure trascina i file nella chat per farli analizzare dal modello."
+ "value" : "Τιμολόγηση",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fügen Sie ein Bild oder PDF an oder ziehen Sie Dateien in den Chat, damit das Modell sie analysieren kann."
+ "value" : "価格情報",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "画像またはPDFを添付するか、ファイルをチャットにドラッグしてモデルに解析させてください。"
+ "value" : "Preise"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anexe uma imagem ou PDF, ou arraste ficheiros para o chat para o modelo analisar."
+ "value" : "Preços"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Adjunta una imagen o PDF, o arrastra archivos al chat para que el modelo los analice."
+ "value" : "Precios",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voeg een afbeelding of PDF toe, of sleep bestanden in de chat voor analyse door het model."
+ "value" : "Prissättning",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Joignez une image ou un PDF, ou glissez des fichiers dans la conversation pour que le modèle les analyse."
+ "value" : "Tarification"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επισυνάψτε μια εικόνα ή PDF, ή σύρετε αρχεία στη συνομιλία για ανάλυση από το μοντέλο."
+ "value" : "Prezzi"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bifoga en bild eller PDF, eller dra filer till chatten för modellen att analysera."
+ "value" : "Prijzen",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Attach an image or PDF, or drag files into the chat for the model to analyze."
+ "value" : "Pricing"
}
}
- }
+ },
+ "comment" : "A section that displays the pricing information for a model."
},
- "Deletes this item from iCloud and all synchronized devices." : {
+ "New Private Chat" : {
+ "comment" : "A label for a button that opens a new private chat.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elimina questo elemento da iCloud e da tutti i dispositivi sincronizzati."
+ "value" : "Nouvelle discussion privée",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Löscht dieses Objekt aus iCloud und von allen synchronisierten Geräten."
+ "value" : "Nuova chat privata",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "この項目をiCloudおよび同期済みのすべてのデバイスから削除します。"
+ "value" : "New Private Chat",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elimina este item do iCloud e de todos os dispositivos sincronizados."
+ "value" : "Nieuw privégesprek",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina este elemento de iCloud y de todos los dispositivos sincronizados."
+ "value" : "Neuer privater Chat"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verwijdert dit item uit iCloud en alle gesynchroniseerde apparaten."
+ "value" : "Nuevo chat privado",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαγράφει αυτό το στοιχείο από το iCloud και όλες τις συγχρονισμένες συσκευές."
+ "value" : "Ny privatchatt",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Supprime cet élément d’iCloud et de tous les appareils synchronisés."
+ "value" : "新しいプライベートチャット",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Raderar det här objektet från iCloud och alla synkroniserade enheter."
+ "value" : "Nova Conversa Privada",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deletes this item from iCloud and all synchronized devices."
+ "value" : "Νέα Ιδιωτική Συνομιλία"
}
}
}
},
- "Transcribing..." : {
- "comment" : "A placeholder text displayed when the user is recording audio.",
+ "Required iCloud data is still downloading." : {
+ "comment" : "Error description when required iCloud data is still downloading.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Trascrizione in corso..."
+ "value" : "Os dados necessários do iCloud ainda estão a ser descarregados.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Transkribiere..."
- }
- },
- "ja" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "文字起こし中..."
+ "value" : "Erforderliche iCloud-Daten werden noch heruntergeladen."
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A transcrever..."
+ "value" : "Les données iCloud requises sont toujours en cours de téléchargement.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Transcribiendo..."
+ "value" : "必要なiCloudデータをダウンロード中です",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bezig met transcriberen..."
+ "value" : "Vereiste iCloud-gegevens worden nog gedownload."
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μεταγραφή σε εξέλιξη..."
+ "value" : "Τα απαιτούμενα δεδομένα iCloud εξακολουθούν να λαμβάνονται."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Transcription en cours..."
+ "value" : "Nödvändiga iCloud-data laddas fortfarande ner.",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Transkriberar..."
+ "value" : "I dati iCloud richiesti sono ancora in fase di download."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Transcribing..."
+ "value" : "Required iCloud data is still downloading."
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Los datos necesarios de iCloud aún se están descargando.",
+ "state" : "translated"
}
}
}
},
- "%lld attachments" : {
+ "MCP Servers" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld allegati"
+ "value" : "MCP-servers"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld Anhänge"
+ "value" : "Serveurs MCP"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "添付ファイル %lld 個"
+ "value" : "MCP Servers"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld anexos"
+ "value" : "Servidores MCP",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld archivos adjuntos"
+ "value" : "Διακομιστές MCP"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld bijlagen"
+ "value" : "MCPサーバー"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld συνημμένα"
+ "value" : "Servidores MCP"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld pièces jointes"
+ "value" : "MCP-servrar"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld bilagor"
+ "value" : "Server MCP"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld attachments"
+ "value" : "MCP-Server"
}
}
- }
+ },
+ "comment" : "A button that dismisses the MCP Tools sheet."
},
- "Purple" : {
- "comment" : "Name of a tag color.",
+ "Back" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Viola"
+ "value" : "Πίσω",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Lila"
+ "value" : "Tillbaka",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "パープル"
+ "value" : "戻る"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Roxo"
+ "value" : "Terug"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Púrpura"
+ "value" : "Atrás",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Paars"
+ "value" : "Retour",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μωβ"
+ "value" : "Zurück",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Violet"
+ "value" : "Voltar"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lila"
+ "value" : "Indietro"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Purple"
+ "value" : "Back"
}
}
}
},
- "Tap the Share button in any app." : {
+ "Your synchronized data could not be safely inspected." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tocca il pulsante Condividi in qualsiasi app."
+ "value" : "Ihre synchronisierten Daten konnten nicht sicher überprüft werden."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tippen Sie in einer beliebigen App auf die Teilen-Taste."
+ "value" : "Your synchronized data could not be safely inspected.",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "任意のアプリで共有ボタンをタップしてください。"
+ "value" : "同期データを安全に検査できませんでした。",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toque no botão Partilhar em qualquer aplicação."
+ "value" : "No se pudieron inspeccionar de forma segura tus datos sincronizados.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toca el botón Compartir en cualquier app."
+ "value" : "Não foi possível inspecionar os seus dados sincronizados em segurança.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tik op de Deel-knop in een app."
+ "value" : "Non è stato possibile esaminare in sicurezza i tuoi dati sincronizzati.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πατήστε το κουμπί Κοινή χρήση σε οποιαδήποτε εφαρμογή."
+ "value" : "Vos données synchronisées n’ont pas pu être inspectées en toute sécurité."
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appuyez sur le bouton Partager dans n’importe quelle application."
+ "value" : "Uw gesynchroniseerde gegevens konden niet veilig worden gecontroleerd."
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tryck på dela-knappen i valfri app."
+ "value" : "Dina synkroniserade data kunde inte granskas på ett säkert sätt."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tap the Share button in any app."
+ "value" : "Δεν ήταν δυνατός ο ασφαλής έλεγχος των συγχρονισμένων δεδομένων σας.",
+ "state" : "translated"
}
}
}
},
- "Manage Subscriptions" : {
- "comment" : "A link to manage user subscriptions.",
+ "Edit Template" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gestisci abbonamenti"
+ "value" : "Modifier le modèle"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abonnements verwalten"
+ "value" : "Επεξεργασία Προτύπου"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サブスクリプションを管理"
+ "value" : "Editar plantilla"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gerir subscrições"
+ "value" : "Redigera mall"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gestionar suscripciones"
+ "value" : "Modifica modello",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abonnementen beheren"
+ "value" : "Editar Modelo"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαχείριση συνδρομών"
+ "value" : "Edit Template"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gérer les abonnements"
+ "value" : "テンプレート編集",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hantera prenumerationer"
+ "value" : "Vorlage bearbeiten"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Manage Subscriptions"
+ "value" : "Sjabloon bewerken"
}
}
- }
+ },
+ "comment" : "A title for a view that allows the user to edit a prompt template."
},
- "Synchronized data deletion" : {
+ "Cancel Recording" : {
+ "comment" : "A button that cancels the current recording.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminazione dei dati sincronizzati"
+ "value" : "Annuler l’enregistrement"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchronisierte Datenlöschung"
+ "value" : "Ακύρωση εγγραφής",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "同期データの削除"
+ "value" : "Cancelar grabación"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminação de dados sincronizados"
+ "value" : "Avbryt inspelning",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminación de datos sincronizados"
+ "value" : "Annulla registrazione"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verwijdering van gesynchroniseerde gegevens"
+ "value" : "Cancelar Gravação"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suppression des données synchronisées"
+ "value" : "Cancel Recording"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαγραφή συγχρονισμένων δεδομένων"
+ "value" : "録音をキャンセル"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synkroniserad dataradering"
+ "value" : "Aufnahme abbrechen",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronized data deletion"
+ "value" : "Opname annuleren"
}
}
}
},
- "Hide Content in App Switcher" : {
- "comment" : "A toggle that hides app content when switching between apps.",
+ "Keep track of context" : {
+ "comment" : "A tip that explains how OpenClient may summarise or exclude older messages without removing them from your history.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nascondi contenuto nel selettore app"
+ "value" : "Keep track of context",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inhalt im App-Umschalter verbergen"
+ "value" : "Håll koll på sammanhanget"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appスイッチャーでコンテンツを非表示"
+ "value" : "Tieni traccia del contesto"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ocultar conteúdo no alternador de aplicações"
+ "value" : "Acompanhe o contexto",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ocultar contenido en el selector de aplicaciones"
+ "value" : "Suivez le contexte"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inhoud verbergen in app-wisselaar"
+ "value" : "コンテキストを追跡する"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Απόκρυψη περιεχομένου στον εναλλάκτη εφαρμογών"
+ "value" : "Houd de context bij"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Masquer le contenu dans le sélecteur d’applications"
+ "value" : "Mantén el seguimiento del contexto",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dölj innehåll i appväxlaren"
+ "value" : "Kontext im Blick behalten",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hide Content in App Switcher"
+ "value" : "Παρακολουθήστε το πλαίσιο"
}
}
}
},
- "Terms of Use" : {
+ "Touch and hold a conversation to pin, rename, or add tags." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Termini di utilizzo"
+ "value" : "Tryck och håll på en konversation för att fästa, byta namn eller lägga till taggar.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nutzungsbedingungen"
+ "value" : "Houd een gesprek ingedrukt om vast te zetten, hernoemen of tags toe te voegen."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "利用規約"
+ "value" : "Touchez et maintenez une conversation pour l’épingler, la renommer ou ajouter des tags.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Termos de Utilização"
+ "value" : "Mantén pulsada una conversación para anclar, renombrar o agregar etiquetas.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Términos de uso"
+ "value" : "会話を長押しして、ピン留め、名前変更、またはタグの追加を行います。",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gebruiksvoorwaarden"
+ "value" : "Tippen und halten Sie eine Unterhaltung, um sie anzuheften, umzubenennen oder Tags hinzuzufügen.",
+ "state" : "translated"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conditions d’utilisation"
+ "value" : "Πατήστε παρατεταμένα μια συνομιλία για καρφίτσωμα, μετονομασία ή προσθήκη ετικετών.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Όροι Χρήσης"
+ "value" : "Tocca e tieni premuta una conversazione per fissarla, rinominarla o aggiungere tag."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Användarvillkor"
+ "value" : "Touch and hold a conversation to pin, rename, or add tags"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Terms of Use"
+ "value" : "Toque e mantenha uma conversa para fixar, renomear ou adicionar etiquetas."
}
}
- }
+ },
+ "comment" : "A description of the action to pin, rename, or add tags to a conversation."
},
- "Getting the current date and time..." : {
- "comment" : "A message displayed when the user is requesting the current date and time.",
+ "Accepted" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Recupero della data e dell’ora correnti..."
+ "value" : "Aceite",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aktuelles Datum und aktuelle Uhrzeit werden abgerufen…"
+ "value" : "Accepté",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "現在の日付と時刻を取得中…"
+ "value" : "Akzeptiert",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A obter a data e a hora atuais..."
+ "value" : "Αποδεκτό"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Obteniendo la fecha y hora actuales..."
+ "value" : "Aceptado",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Huidige datum en tijd ophalen..."
+ "value" : "Geaccepteerd",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Obtention de la date et de l’heure actuelles…"
+ "value" : "承認済み"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Λήψη της τρέχουσας ημερομηνίας και ώρας…"
+ "value" : "Accepterad"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hämtar aktuellt datum och aktuell tid..."
+ "value" : "Accepted"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Getting the current date and time..."
+ "value" : "Accettato",
+ "state" : "translated"
}
}
}
},
- "Save to Downloads" : {
- "comment" : "A label for saving an image to the user's Downloads folder.",
+ "Custom Template" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Salva in Download"
+ "value" : "Custom Template"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "In Downloads speichern"
+ "value" : "Προσαρμοσμένο πρότυπο",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ダウンロードに保存"
+ "value" : "Benutzerdefinierte Vorlage"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Guardar em Transferências"
+ "value" : "Anpassad mall"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Guardar en Descargas"
+ "value" : "Modelo personalizado"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Opslaan in Downloads"
+ "value" : "Aangepaste sjabloon",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Enregistrer dans Téléchargements"
+ "value" : "Modello personalizzato",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αποθήκευση στους Λήψεις"
+ "value" : "カスタムテンプレート"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Spara till Hämtade filer"
+ "value" : "Modèle personnalisé"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Save to Downloads"
+ "value" : "Plantilla personalizada"
}
}
}
},
- "A synchronized conversation attachment has an invalid path." : {
- "comment" : "Error description for a missing attachment.",
+ "Current Icon" : {
+ "comment" : "A label displayed above the current app icon.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Un allegato della conversazione sincronizzata ha un percorso non valido."
+ "value" : "Aktuell ikon",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ein synchronisierter Unterhaltungsanhang enthält einen ungültigen Pfad."
+ "value" : "Icône actuelle"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期された会話の添付ファイルのパスが無効です。"
+ "value" : "Icona attuale",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Um anexo de conversa sincronizado tem um caminho inválido."
+ "value" : "Icono actual",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Un archivo adjunto sincronizado de la conversación tiene una ruta no válida."
+ "value" : "Current Icon"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Een bijlage van een gesynchroniseerd gesprek heeft een ongeldig pad."
+ "value" : "Ícone atual"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ένα συνημμένο συγχρονισμένης συνομιλίας έχει μη έγκυρη διαδρομή."
+ "value" : "Huidig pictogram",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Une pièce jointe de conversation synchronisée possède un chemin non valide."
+ "value" : "現在のアイコン"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "En synkroniserad bilaga i konversationen har en ogiltig sökväg."
+ "value" : "Aktuelles Symbol",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A synchronized conversation attachment has an invalid path."
+ "value" : "Τρέχον εικονίδιο"
}
}
}
},
- "Long-press any message and tap \"Add to Favourites\" to save it here." : {
- "comment" : "A description of the action to add a message to the favourites.",
+ "No Favourites Yet" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tieni premuto un messaggio e tocca \"Aggiungi ai Preferiti\" per salvarlo qui."
+ "value" : "Nog geen favorieten",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Halte eine Nachricht gedrückt und tippe auf „Zu Favoriten hinzufügen“, um sie hier zu speichern."
+ "value" : "Δεν υπάρχουν αγαπημένα ακόμα"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メッセージを長押しして「お気に入りに追加」をタップすると、ここに保存されます。"
+ "value" : "No Favorites Yet"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pressione longamente qualquer mensagem e toque em \"Adicionar aos Favoritos\" para guardá-la aqui."
+ "value" : "Aucun favori pour le moment",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mantén pulsado cualquier mensaje y toca \"Añadir a Favoritos\" para guardarlo aquí."
+ "value" : "Sin favoritos aún",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Houd een bericht ingedrukt en tik op \"Toevoegen aan favorieten\" om het hier op te slaan."
+ "value" : "お気に入りはまだありません",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πατήστε παρατεταμένα οποιοδήποτε μήνυμα και επιλέξτε «Προσθήκη στα Αγαπημένα» για να το αποθηκεύσετε εδώ."
+ "value" : "Sem Favoritos Ainda"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appuyez longuement sur un message et touchez « Ajouter aux favoris » pour l’enregistrer ici."
+ "value" : "Inga favoriter än"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tryck länge på ett meddelande och tryck på \"Lägg till i favoriter\" för att spara det här."
+ "value" : "Nessun preferito ancora",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Long-press any message and tap \"Add to Favorites\" to save it here."
+ "value" : "Noch keine Favoriten vorhanden",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A message displayed when a user has no favourite messages."
},
- "Renews automatically until canceled. No features are locked." : {
- "comment" : "A description of a subscription.",
+ "This iCloud data format is not supported by this version of the app." : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Si rinnova automaticamente fino alla cancellazione. Nessuna funzionalità è bloccata."
+ "value" : "Esta versión de la app no admite este formato de datos de iCloud."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verlängert sich automatisch, bis es gekündigt wird. Alle Funktionen sind verfügbar."
+ "value" : "This iCloud data format is not supported by this version of the app.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "キャンセルするまで自動更新されます。すべての機能をご利用いただけます。"
+ "value" : "Questo formato di dati iCloud non è supportato da questa versione dell’app.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Renova-se automaticamente até ser cancelada. Nenhuma funcionalidade está bloqueada."
+ "value" : "Ce format de données iCloud n’est pas pris en charge par cette version de l’app.",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Se renueva automáticamente hasta que se cancele. No hay funciones bloqueadas."
+ "value" : "Deze iCloud-gegevensindeling wordt niet ondersteund door deze versie van de app.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Wordt automatisch verlengd totdat je opzegt. Alle functies zijn beschikbaar."
+ "value" : "Dieses iCloud-Datenformat wird von dieser App-Version nicht unterstützt."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ανανεώνεται αυτόματα μέχρι να ακυρωθεί. Δεν υπάρχουν κλειδωμένες λειτουργίες."
+ "value" : "Det här iCloud-dataformatet stöds inte av den här versionen av appen.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Se renouvelle automatiquement jusqu’à annulation. Aucune fonctionnalité n’est verrouillée."
+ "value" : "このiCloudデータ形式は、このバージョンのアプリではサポートされていません。"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Förnyas automatiskt tills den sägs upp. Alla funktioner är tillgängliga."
+ "value" : "Αυτή η μορφή δεδομένων iCloud δεν υποστηρίζεται από αυτήν την έκδοση της εφαρμογής."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Renews automatically until canceled. No features are locked."
+ "value" : "Este formato de dados do iCloud não é compatível com esta versão da app.",
+ "state" : "translated"
}
}
}
},
- "The model returned an invalid agent response." : {
- "comment" : "Error message displayed when the model returns an invalid agent response.",
+ "Allow Once" : {
+ "comment" : "A button that allows a single use of a tool.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Il modello ha restituito una risposta agente non valida."
+ "value" : "Permitir uma vez",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Das Modell hat eine ungültige Agentenantwort zurückgegeben."
+ "value" : "一度だけ許可する"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "モデルが無効なエージェント応答を返しました。"
+ "value" : "Eenmalig toestaan",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O modelo devolveu uma resposta de agente inválida."
+ "value" : "Einmal erlauben"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El modelo devolvió una respuesta de agente no válida."
+ "value" : "Να επιτραπεί μία φορά",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Het model gaf een ongeldige agentrespons terug."
+ "value" : "Tillåt en gång",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le modèle a renvoyé une réponse d’agent invalide."
+ "value" : "Allow Once"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το μοντέλο επέστρεψε μη έγκυρη απάντηση πράκτορα."
+ "value" : "Consenti una volta",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modellen returnerade ett ogiltigt agent-svar."
+ "value" : "Permitir una vez"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The model returned an invalid agent response."
+ "value" : "Autoriser une fois",
+ "state" : "translated"
}
}
}
},
- "tag.JSON.mode" : {
- "comment" : "Label for a capability that uses JSON schemas.",
+ "Test Connection" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "JSON Mode"
+ "value" : "Verbindung testen"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "JSON Mode"
+ "value" : "Testa connessione",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "JSON Mode"
+ "value" : "接続をテスト"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "JSON Mode"
+ "value" : "Testar ligação"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "JSON Mode"
+ "value" : "Probar conexión"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "JSON Mode"
+ "value" : "Δοκιμή σύνδεσης"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "JSON Mode"
+ "value" : "Testa anslutning"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "JSON Mode"
+ "value" : "Tester la connexion"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "JSON Mode"
+ "value" : "Test Connection",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "JSON Mode"
+ "value" : "Verbinding testen"
}
}
}
},
- "Model" : {
- "comment" : "A label for a memory item that was generated by the model.",
+ "Version %@ (%@)" : {
+ "comment" : "A label displaying the current version of the app and its build number. The first argument is the string “CFBundleShortVersionString” or the string “—”. The second argument is the string “CFBundleVersion” or the string “—”.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modello"
+ "value" : "Versie %1$@ (%2$@)"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modell"
+ "value" : "Versão %1$@ (%2$@)",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "モデル"
+ "value" : "Versione %1$@ (%2$@)"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modelo"
+ "value" : "Version %1$@ (%2$@)"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modelo"
+ "value" : "Version %1$@ (%2$@)"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Model"
+ "value" : "Versión %1$@ (%2$@)",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modèle"
+ "value" : "バージョン %1$@(%2$@)"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μοντέλο"
+ "value" : "Version %1$@ (%2$@)",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modell"
+ "state" : "new",
+ "value" : "Version %1$@ (%2$@)"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Model"
+ "value" : "Έκδοση %1$@ (%2$@)"
}
}
}
},
- "Creative" : {
+ "Swipe left to remove a tag." : {
+ "comment" : "A footer displayed under the list of tags.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Creativo"
+ "value" : "Scorri a sinistra per rimuovere un tag."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kreativ"
+ "value" : "Desliza a la izquierda para eliminar una etiqueta",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "クリエイティブ"
+ "value" : "Faites glisser vers la gauche pour supprimer une étiquette.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Criativo"
+ "value" : "Swipe left to remove a tag",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Creativo"
+ "value" : "Nach links wischen, um ein Tag zu entfernen."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Creatief"
+ "value" : "タグを削除するには左にスワイプしてください。"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δημιουργικό"
+ "value" : "Deslize para a esquerda para remover uma etiqueta."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Créatif"
+ "value" : "Svep åt vänster för att ta bort en tagg.",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kreativ"
+ "value" : "Veeg naar links om een tag te verwijderen"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Creative"
+ "value" : "Σύρετε αριστερά για να αφαιρέσετε μια ετικέτα."
}
}
}
},
- "Message..." : {
+ "You are a professional translator. Translate the user's text accurately while preserving the original meaning, tone, and nuance. Identify the source language automatically and ask for the target language if not specified." : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Messaggio..."
+ "value" : "Sei un traduttore professionista. Traduci accuratamente il testo dell'utente preservando il significato, il tono e le sfumature originali. Identifica automaticamente la lingua di origine e chiedi la lingua di destinazione se non specificata.",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nachricht..."
+ "value" : "You are a professional translator. Translate the user's text accurately while preserving the original meaning, tone, and nuance. Identify the source language automatically and ask for the target language if not specified."
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メッセージ..."
+ "value" : "あなたはプロの翻訳者です。元の意味、トーン、ニュアンスを保ちながら、ユーザーのテキストを正確に翻訳してください。ソース言語を自動的に識別し、ターゲット言語が指定されていない場合は尋ねてください。"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mensagem..."
+ "value" : "Eres un traductor profesional. Traduce el texto del usuario con precisión, preservando el significado, tono y matiz originales. Identifica automáticamente el idioma de origen y solicita el idioma de destino si no está especificado."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mensaje..."
+ "value" : "És um tradutor profissional. Traduz o texto do utilizador com precisão, preservando o significado, tom e nuances originais. Identifica automaticamente a língua de origem e pergunta pela língua de destino se não estiver especificada.",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bericht..."
+ "value" : "Είστε επαγγελματίας μεταφραστής. Μεταφράστε το κείμενο του χρήστη με ακρίβεια διατηρώντας το αρχικό νόημα, τόνο και αποχρώσεις. Αναγνωρίστε αυτόματα τη γλώσσα προέλευσης και ζητήστε τη γλώσσα στόχο αν δεν έχει καθοριστεί."
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μήνυμα..."
+ "value" : "Sie sind ein professioneller Übersetzer. Übersetzen Sie den Text des Benutzers genau und bewahren Sie dabei die ursprüngliche Bedeutung, den Ton und die Nuancen. Erkennen Sie die Ausgangssprache automatisch und fragen Sie nach der Zielsprache, falls diese nicht angegeben ist."
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Message..."
+ "value" : "Vous êtes un traducteur professionnel. Traduisez le texte de l'utilisateur avec précision tout en préservant le sens, le ton et la nuance originaux. Identifiez automatiquement la langue source et demandez la langue cible si elle n'est pas spécifiée.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Meddelande..."
+ "value" : "Du är en professionell översättare. Översätt användarens text noggrant samtidigt som du bevarar den ursprungliga betydelsen, tonen och nyansen. Identifiera källspråket automatiskt och fråga efter målspråket om det inte är angivet.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Message..."
+ "value" : "Je bent een professionele vertaler. Vertaal de tekst van de gebruiker nauwkeurig en behoud de oorspronkelijke betekenis, toon en nuance. Identificeer automatisch de brontaal en vraag om de doeltaal als deze niet is opgegeven.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Content of the \"Translator\" built-in template."
},
- "Loading comments..." : {
+ "Use iCloud Data" : {
+ "comment" : "A button that selects iCloud data as the preferred data source.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Caricamento commenti..."
+ "value" : "Usar dados do iCloud"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kommentare werden geladen..."
+ "value" : "iCloudデータを使用",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "コメントを読み込み中..."
+ "value" : "Gebruik iCloud-gegevens",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A carregar comentários..."
+ "value" : "iCloud-Daten verwenden",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cargando comentarios..."
+ "value" : "Χρήση δεδομένων iCloud",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Reacties laden..."
+ "value" : "Använd iCloud-data",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chargement des commentaires..."
+ "value" : "Use iCloud Data"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Φόρτωση σχολίων..."
+ "value" : "Usa dati iCloud"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Läser in kommentarer..."
+ "value" : "Usar datos de iCloud"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Loading comments..."
+ "value" : "Utiliser les données iCloud",
+ "state" : "translated"
}
}
}
},
- "Searching the web..." : {
- "comment" : "A message displayed when the user is searching the web.",
+ "The local profile contains invalid data." : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ricerca sul web..."
+ "value" : "El perfil local contiene datos no válidos.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Websuche läuft..."
+ "value" : "Le profil local contient des données non valides."
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ウェブを検索中..."
+ "value" : "O perfil local contém dados inválidos."
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A pesquisar na web..."
+ "value" : "The local profile contains invalid data.",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Buscando en la web..."
+ "value" : "Το τοπικό προφίλ περιέχει μη έγκυρα δεδομένα."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Web aan het doorzoeken..."
+ "value" : "Das lokale Profil enthält ungültige Daten.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recherche sur le web..."
+ "value" : "ローカルプロフィールに無効なデータが含まれています。"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αναζήτηση στο διαδίκτυο..."
+ "value" : "Het lokale profiel bevat ongeldige gegevens.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Söker på webben..."
+ "value" : "Den lokala profilen innehåller ogiltiga data.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Searching the web..."
+ "value" : "Il profilo locale contiene dati non validi."
}
}
}
},
- "Refresh Tools" : {
- "comment" : "A button that refreshes the list of search tools.",
+ "Yesterday" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aggiorna strumenti"
+ "value" : "Yesterday",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Werkzeuge aktualisieren"
+ "value" : "Hier"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ツールを更新"
+ "value" : "Igår",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Atualizar Ferramentas"
+ "value" : "Ieri",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Actualizar herramientas"
+ "value" : "Χθες",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vernieuw Hulpmiddelen"
+ "value" : "Ayer",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ανανέωση Εργαλείων"
+ "value" : "昨日",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Actualiser les outils"
+ "value" : "Ontem",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Uppdatera verktyg"
+ "value" : "Gestern"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Refresh Tools"
+ "value" : "Gisteren"
}
}
}
},
- "Today" : {
- "comment" : "Title of a conversation section for conversations from today.",
+ "Show Feature Tips Again" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Oggi"
+ "value" : "Visa tips om funktioner igen"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Heute"
+ "value" : "Toon functietips opnieuw",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "今日"
+ "value" : "Εμφάνιση συμβουλών λειτουργίας ξανά"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hoje"
+ "value" : "Afficher à nouveau les astuces de fonctionnalité"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hoy"
+ "value" : "機能のヒントを再表示する",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vandaag"
+ "value" : "Funktionstipps erneut anzeigen",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Σήμερα"
+ "value" : "Mostrar consejos de funciones nuevamente",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aujourd’hui"
+ "value" : "Mostra di nuovo i suggerimenti sulle funzionalità"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Idag"
+ "value" : "Show Feature Tips Again"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Today"
+ "value" : "Mostrar Dicas de Funcionalidades Novamente",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A button that shows the feature tips again."
},
- "Update OpenClient" : {
- "comment" : "A button that updates the OpenClient app.",
+ "Delete All Synchronized Data" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aggiorna OpenClient"
+ "value" : "Supprimer toutes les données synchronisées"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient aktualisieren"
+ "value" : "Διαγραφή όλων των συγχρονισμένων δεδομένων"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClientをアップデート"
+ "value" : "Eliminar todos los datos sincronizados",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Atualizar o OpenClient"
+ "value" : "Radera alla synkroniserade data"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Actualizar OpenClient"
+ "value" : "Elimina tutti i dati sincronizzati"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient bijwerken"
+ "value" : "Alle synchronisierten Daten löschen"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ενημέρωση του OpenClient"
+ "value" : "Delete All Synchronized Data",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mettre à jour OpenClient"
+ "value" : "同期済みデータをすべて削除"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Uppdatera OpenClient"
+ "value" : "Eliminar todos os dados sincronizados"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Update OpenClient"
+ "value" : "Alle gesynchroniseerde gegevens verwijderen"
}
}
}
},
- "Pinned" : {
- "comment" : "Title for the section of conversations that are pinned.",
+ "Web Search" : {
+ "comment" : "A section of the settings view that allows the user to configure the web search tool.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fissate"
+ "value" : "Recherche Web"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Angeheftet"
+ "value" : "Ricerca Web"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ピン留め済み"
+ "value" : "Web Search"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fixadas"
+ "value" : "Webzoekfunctie"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fijado"
+ "value" : "Websuche"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vastgezet"
+ "value" : "Búsqueda web"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Épinglé"
+ "value" : "Webbsökning"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Καρφιτσωμένα"
+ "value" : "ウェブ検索"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fastnålad"
+ "value" : "Pesquisa Web"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pinned"
+ "value" : "Αναζήτηση στο Διαδίκτυο"
}
}
}
},
- "Use this when an OpenAI-compatible server does not provide context metadata." : {
+ "Capabilities" : {
+ "comment" : "A section that lists the capabilities of a model.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Usa questo quando un server compatibile con OpenAI non fornisce metadati di contesto."
+ "value" : "Capacidades",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verwenden Sie dies, wenn ein OpenAI-kompatibler Server keine Kontextmetadaten bereitstellt."
+ "value" : "Capacités"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenAI互換サーバーがコンテキストメタデータを提供しない場合に使用してください。"
+ "value" : "Fähigkeiten",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Utilize isto quando um servidor compatível com OpenAI não fornecer metadados de contexto."
+ "value" : "Δυνατότητες"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Usa esto cuando un servidor compatible con OpenAI no proporcione metadatos de contexto."
+ "value" : "Capacidades",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gebruik dit wanneer een OpenAI-compatibele server geen contextmetadata levert."
+ "value" : "Mogelijkheden",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Utilisez ceci lorsqu’un serveur compatible OpenAI ne fournit pas de métadonnées contextuelles."
+ "value" : "機能",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Χρησιμοποιήστε το όταν ένας διακομιστής συμβατός με OpenAI δεν παρέχει μεταδεδομένα συμφραζομένων."
+ "value" : "Capabilities"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Använd detta när en OpenAI-kompatibel server inte tillhandahåller kontextmetadata."
+ "value" : "Funktioner",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Use this when an OpenAI-compatible server does not provide context metadata"
+ "value" : "Capacità"
}
}
}
},
- "Enter your name" : {
+ "Settings changed. This call can now only be denied." : {
+ "comment" : "A warning message displayed when a user has changed their system settings, which affects the behavior of the app.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inserisci il tuo nome"
+ "value" : "Settings changed. This call can now only be denied.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Inställningarna har ändrats. Det här samtalet kan nu endast nekas.",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gib deinen Namen ein"
+ "value" : "Paramètres modifiés. Cet appel ne peut désormais qu’être refusé."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "名前を入力してください"
+ "value" : "設定が変更されました。この通話は拒否のみ可能になりました。",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Introduza o seu nome"
+ "value" : "Definições alteradas. Esta chamada só pode agora ser recusada.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Introduce tu nombre"
+ "value" : "Configuración cambiada. Esta llamada ahora solo se puede rechazar."
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voer uw naam in"
- }
- },
- "el" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Εισάγετε το όνομά σας"
+ "value" : "Instellingen gewijzigd. Dit gesprek kan nu alleen nog worden geweigerd.",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Entrez votre nom"
+ "value" : "Impostazioni modificate. Questa chiamata ora può essere solo rifiutata."
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ange ditt namn"
+ "value" : "Οι ρυθμίσεις άλλαξαν. Αυτή η κλήση μπορεί πλέον μόνο να απορριφθεί.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Enter your name"
+ "value" : "Einstellungen geändert. Dieser Anruf kann jetzt nur noch abgelehnt werden.",
+ "state" : "translated"
}
}
}
},
- "Privacy Policy" : {
+ "%lld attachment(s)" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Informativa sulla privacy"
+ "value" : "%lld bijlage(n)",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Datenschutzerklärung"
+ "value" : "%lld συνημμένο(α)",
+ "state" : "translated"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "プライバシーポリシー"
+ "value" : "%lld anexo(s)",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Política de Privacidade"
+ "value" : "%lld attachment(s)"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Política de privacidad"
+ "value" : "%lld Anhang\/Anhänge"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Privacybeleid"
+ "value" : "%lld archivo(s) adjunto(s)"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πολιτική Απορρήτου"
+ "value" : "%lld bilaga(or)"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Politique de confidentialité"
+ "value" : "%lld 件の添付ファイル"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Integritetspolicy"
+ "value" : "%lld allegato(i)",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Privacy Policy"
+ "value" : "%lld pièce(s) jointe(s)"
}
}
- }
+ },
+ "comment" : "A label that shows the number of attachments and a paperclip icon."
},
- "Document" : {
+ "Explain a complex topic simply" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Documento"
+ "value" : "Leg een complex onderwerp eenvoudig uit",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dokument"
+ "value" : "Εξήγησε ένα σύνθετο θέμα απλά"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ドキュメント"
+ "value" : "Explique um tema complexo de forma simples"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Documento"
+ "value" : "Erkläre ein komplexes Thema einfach",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Documento"
+ "value" : "Explica un tema complejo de forma sencilla"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Document"
+ "value" : "Explain a complex topic simply",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Document"
+ "value" : "Förklara ett komplext ämne enkelt"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Έγγραφο"
+ "value" : "複雑な話題を簡単に説明する"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dokument"
+ "value" : "Spiega un argomento complesso in modo semplice",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Document"
+ "value" : "Expliquer un sujet complexe simplement"
}
}
}
},
- "Invalid API key. Please check your credentials." : {
+ "The server certificate is not trusted." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chiave API non valida. Controlla le tue credenziali."
+ "value" : "The server certificate is not trusted.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ungültiger API-Schlüssel. Bitte überprüfen Sie Ihre Zugangsdaten."
+ "value" : "Serverns certifikat är inte betrott.",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "無効なAPIキーです。認証情報を確認してください。"
+ "value" : "Le certificat du serveur n’est pas fiable."
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chave API inválida. Por favor, verifique as suas credenciais."
+ "value" : "O certificado do servidor não é confiável.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Clave API no válida. Por favor, verifica tus credenciales."
+ "value" : "サーバー証明書は信頼されていません。"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ongeldige API-sleutel. Controleer uw gegevens."
+ "value" : "El certificado del servidor no es de confianza.",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Clé API invalide. Veuillez vérifier vos identifiants."
+ "value" : "Het servercertificaat wordt niet vertrouwd."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μη έγκυρο κλειδί API. Ελέγξτε τα διαπιστευτήριά σας."
+ "value" : "Il certificato del server non è attendibile.",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ogiltig API-nyckel. Kontrollera dina uppgifter."
+ "value" : "Το πιστοποιητικό διακομιστή δεν είναι αξιόπιστο.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Invalid API key. Please check your credentials."
+ "value" : "Das Serverzertifikat wird nicht vertraut."
}
}
}
},
- "Review and improve my writing" : {
+ "Ok" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rivedi e migliora il mio testo"
+ "value" : "Ok"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Überprüfen und verbessern Sie meinen Text"
+ "value" : "OK"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "私の文章を見直して改善する"
+ "value" : "OK"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rever e melhorar a minha escrita"
+ "value" : "OK",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Revisa y mejora mi redacción"
+ "value" : "OK",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beoordeel en verbeter mijn tekst"
+ "value" : "OK"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αναθεώρηση και βελτίωση της γραφής μου"
+ "value" : "OK"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Relisez et améliorez mon texte"
+ "value" : "OK"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Granska och förbättra min text"
+ "value" : "OK"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Review and improve my writing"
+ "value" : "OK",
+ "state" : "translated"
}
}
}
},
- "Prompt templates" : {
- "comment" : "A prompt template.",
+ "Enter a brief title for the issue" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modelli di prompt"
+ "value" : "Introduza um título breve para o problema",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vorlagen für Prompts"
+ "value" : "Entrez un titre bref pour le problème"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "プロンプトテンプレート"
+ "value" : "Introduce un título breve para el problema",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modelos de prompts"
+ "value" : "Enter a brief title for the issue"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Plantillas de prompts"
+ "value" : "Εισαγάγετε έναν σύντομο τίτλο για το ζήτημα",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Promptsjablonen"
+ "value" : "Geben Sie einen kurzen Titel für das Problem ein",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πρότυπα προτροπών"
+ "value" : "問題の簡単なタイトルを入力してください"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modèles d’invite"
+ "value" : "Voer een korte titel voor het probleem in",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Promptmallar"
+ "value" : "Ange en kort titel för problemet",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Prompt templates"
+ "value" : "Inserisci un titolo breve per il problema"
}
}
}
},
- "Post" : {
+ "Always Deny Selected" : {
+ "comment" : "A label that describes the selected option for a request.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pubblica"
+ "value" : "Toujours refuser la sélection",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beitrag"
+ "value" : "Ausgewählte Option „Immer ablehnen“",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "投稿"
+ "value" : "Altijd weigeren geselecteerd",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Publicar"
+ "value" : "Πάντα απόρριψη επιλεγμένη"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Publicar"
+ "value" : "Recusar sempre selecionado",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Plaatsen"
+ "value" : "Always Deny Selected",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ανάρτηση"
+ "value" : "Nega sempre i selezionati",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Publier"
+ "value" : "選択時は常に拒否する",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inlägg"
+ "value" : "Neka alltid valt"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Post"
+ "value" : "Denegar siempre seleccionado",
+ "state" : "translated"
}
}
}
},
- "This MCP server currently exposes no available tools." : {
- "comment" : "A description of the view displayed when a MCP server has no available tools.",
+ "Work" : {
+ "comment" : "A placeholder tag.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Questo server MCP attualmente non espone alcuno strumento disponibile."
+ "value" : "Εργασία",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dieser MCP-Server stellt derzeit keine verfügbaren Tools bereit."
+ "value" : "Work"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "このMCPサーバーでは現在利用可能なツールはありません。"
+ "value" : "Trabajo"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Este servidor MCP não disponibiliza atualmente quaisquer ferramentas."
+ "value" : "作業",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Este servidor MCP no ofrece ninguna herramienta disponible actualmente."
+ "value" : "Trabalho"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deze MCP-server biedt momenteel geen beschikbare tools."
+ "value" : "Travail"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αυτός ο διακομιστής MCP δεν διαθέτει επί του παρόντος διαθέσιμα εργαλεία."
+ "value" : "Lavoro"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ce serveur MCP n’expose actuellement aucun outil disponible."
+ "value" : "Werk",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Den här MCP-servern exponerar för närvarande inga tillgängliga verktyg."
+ "value" : "Arbete"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "This MCP server currently exposes no available tools."
+ "value" : "Arbeit",
+ "state" : "translated"
}
}
}
},
- "System Prompt" : {
+ "Synchronization failed for: %@. Local data was retained." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Prompt di sistema"
+ "value" : "Échec de la synchronisation pour : %@. Les données locales ont été conservées.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Systemaufforderung"
+ "value" : "Synchronisierung fehlgeschlagen für: %@. Lokale Daten wurden beibehalten."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "システムプロンプト"
+ "value" : "Synchronisatie mislukt voor: %@. Lokale gegevens zijn behouden.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Prompt do Sistema"
+ "value" : "Ο συγχρονισμός απέτυχε για: %@. Τα τοπικά δεδομένα διατηρήθηκαν."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mensaje del sistema"
+ "value" : "Synchronization failed for: %@. Local data was retained.",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Systeemprompt"
+ "value" : "Falha na sincronização de: %@. Os dados locais foram mantidos."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Προτροπή συστήματος"
+ "value" : "Sincronizzazione non riuscita per: %@. I dati locali sono stati conservati.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Invite système"
+ "value" : "同期に失敗しました:%@。ローカルデータは保持されています。"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Systemprompt"
+ "value" : "Synkroniseringen misslyckades för: %@. Lokala data har behållits."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "System Prompt"
+ "value" : "La sincronización falló para: %@. Los datos locales se conservaron.",
+ "state" : "translated"
}
}
}
},
- "Opens a new conversation in OpenClient." : {
- "comment" : "Description of the control center widget that opens a new conversation in OpenClient.",
+ "You" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apre una nuova conversazione in OpenClient"
+ "value" : "Du",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Öffnet eine neue Unterhaltung in OpenClient."
+ "value" : "Jij",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClientで新しい会話を開始します"
+ "value" : "Vous"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abre uma nova conversa no OpenClient."
+ "value" : "Tu",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abre una nueva conversación en OpenClient."
+ "value" : "You"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Opent een nieuw gesprek in OpenClient."
+ "value" : "Tú"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ouvre une nouvelle conversation dans OpenClient."
+ "value" : "Tu",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ανοίγει μια νέα συνομιλία στο OpenClient."
+ "value" : "Du"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Öppnar en ny konversation i OpenClient."
+ "value" : "あなた"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Opens a new conversation in OpenClient"
+ "value" : "Εσύ",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A name for the user."
},
- "Untitled Template" : {
+ "e.g. Coding Assistant" : {
+ "comment" : "A placeholder text for the title of a prompt template.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modello senza titolo"
+ "value" : "e.g. Coding Assistant"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Unbenannte Vorlage"
+ "value" : "π.χ. Βοηθός Κωδικοποίησης"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "無題のテンプレート"
+ "value" : "es. Assistente di Codifica"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modelo sem título"
+ "value" : "bijv. Coding Assistant",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Plantilla sin título"
+ "value" : "z. B. Coding Assistant"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Naamloze template"
+ "value" : "ex. Assistant de codage"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Πρότυπο χωρίς τίτλο"
+ "value" : "例:コーディングアシスタント",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modèle sans titre"
+ "value" : "ex. Assistente de Programação"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Namnlös mall"
+ "value" : "t.ex. Kodningsassistent",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Untitled Template"
+ "value" : "p. ej. Asistente de codificación"
}
}
}
},
- "The MCP tool permission changed before it could execute." : {
- "comment" : "Error message when the MCP tool permission changes before it can execute.",
+ "Choose the right model" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "L'autorizzazione dello strumento MCP è cambiata prima che potesse essere eseguito."
+ "value" : "適切なモデルを選択する",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die Berechtigung für das MCP-Tool wurde geändert, bevor es ausgeführt werden konnte."
+ "value" : "Επιλέξτε το σωστό μοντέλο",
+ "state" : "translated"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "実行前にMCPツールの権限が変更されました。"
+ "value" : "Escolha o modelo correto"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A permissão da ferramenta MCP foi alterada antes de esta poder ser executada."
+ "value" : "Välj rätt modell"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El permiso de la herramienta MCP cambió antes de que pudiera ejecutarse."
+ "value" : "Wähle das richtige Modell",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De MCP-toolmachtiging is gewijzigd voordat deze kon worden uitgevoerd."
+ "value" : "Kies het juiste model",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L’autorisation de l’outil MCP a changé avant son exécution."
+ "value" : "Choose the right model"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η άδεια του εργαλείου MCP άλλαξε πριν μπορέσει να εκτελεστεί."
+ "value" : "Elige el modelo correcto"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP-verktygsbehörigheten ändrades innan det kunde köras."
+ "value" : "Choisissez le bon modèle",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The MCP tool permission changed before it could execute."
+ "value" : "Scegli il modello giusto"
}
}
- }
+ },
+ "comment" : "A title for a tip that explains how to select a model for a conversation."
},
- "Your pinned conversation appears here." : {
+ "Explain quantum entanglement" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La tua conversazione fissata appare qui."
+ "value" : "Leg kwantumverstrengeling uit"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deine angeheftete Unterhaltung erscheint hier."
+ "value" : "Explicar el entrelazamiento cuántico"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ピン留めした会話がここに表示されます。"
+ "value" : "Εξήγηση της κβαντικής εμπλοκής"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A sua conversa fixada aparece aqui."
+ "value" : "量子もつれについて説明する"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tu conversación fijada aparece aquí."
+ "value" : "Quantenverschränkung erklären"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Je vastgezette gesprek verschijnt hier."
+ "value" : "Spiegare l’entanglement quantistico"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η καρφιτσωμένη συνομιλία σας εμφανίζεται εδώ."
+ "value" : "Explain quantum entanglement"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Votre conversation épinglée apparaît ici."
+ "value" : "Förklara kvantintrassling"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Din fastnålad konversation visas här."
+ "value" : "Explicar o entrelaçamento quântico",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Your pinned conversation appears here."
+ "value" : "Expliquer l’intrication quantique"
}
}
- }
+ },
+ "comment" : "Title of a conversation."
},
- "New Private Chat" : {
- "comment" : "A label for a button that opens a new private chat.",
+ "Some categories could not be inspected and are not reported as empty." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nuova chat privata"
+ "value" : "Ορισμένες κατηγορίες δεν ήταν δυνατό να ελεγχθούν και δεν αναφέρονται ως κενές."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neuer privater Chat"
+ "value" : "Vissa kategorier kunde inte inspekteras och rapporteras inte som tomma."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "新しいプライベートチャット"
+ "value" : "一部のカテゴリを確認できなかったため、空として報告されていません",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nova Conversa Privada"
+ "value" : "Sommige categorieën konden niet worden geïnspecteerd en worden niet als leeg gemeld."
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nuevo chat privado"
+ "value" : "No se pudieron inspeccionar algunas categorías y no se indican como vacías.",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nieuw privégesprek"
+ "value" : "Certaines catégories n’ont pas pu être inspectées et ne sont pas signalées comme vides."
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nouvelle discussion privée"
+ "value" : "Einige Kategorien konnten nicht überprüft werden und werden nicht als leer gemeldet.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Νέα Ιδιωτική Συνομιλία"
+ "value" : "Não foi possível inspecionar algumas categorias, pelo que não são comunicadas como vazias."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ny privatchatt"
+ "value" : "Alcune categorie non hanno potuto essere controllate e non vengono segnalate come vuote."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "New Private Chat"
+ "value" : "Some categories could not be inspected and are not reported as empty."
}
}
}
},
- "More actions for messages" : {
- "comment" : "A tip that shows when the user has enabled the message actions.",
+ "Describe your suggestion in detail..." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Altre azioni per i messaggi"
+ "value" : "Beschreiben Sie Ihren Vorschlag im Detail...",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Weitere Aktionen für Nachrichten"
+ "value" : "Describe your suggestion in detail..."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メッセージの追加操作"
+ "value" : "Περιγράψτε την πρότασή σας λεπτομερώς...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mais ações para mensagens"
+ "value" : "Beskriv ditt förslag i detalj..."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Más acciones para mensajes"
+ "value" : "Descreva a sua sugestão em detalhe..."
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Meer acties voor berichten"
+ "value" : "Beschrijf uw suggestie in detail...",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Περισσότερες ενέργειες για μηνύματα"
+ "value" : "Descrivi la tua proposta in dettaglio...",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Plus d’actions pour les messages"
+ "value" : "提案の詳細を説明してください..."
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fler åtgärder för meddelanden"
+ "value" : "Décrivez votre suggestion en détail...",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "More actions for messages"
+ "value" : "Describe tu sugerencia en detalle...",
+ "state" : "translated"
}
}
}
},
- "Permissions apply to this device and the current MCP server configuration." : {
- "comment" : "A description of the permissions that apply to this device and the current MCP server configuration.",
+ "The memory change could not be saved. Please try again." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le autorizzazioni si applicano a questo dispositivo e alla configurazione attuale del server MCP."
+ "value" : "Minnesändringen kunde inte sparas. Försök igen."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Berechtigungen gelten für dieses Gerät und die aktuelle MCP-Serverkonfiguration."
+ "value" : "La modification de la mémoire n’a pas pu être enregistrée. Veuillez réessayer.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "権限はこのデバイスと現在のMCPサーバー構成に適用されます。"
+ "value" : "Non è stato possibile salvare la modifica della memoria. Riprova.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "As permissões aplicam-se a este dispositivo e à configuração atual do servidor MCP."
+ "value" : "No se ha podido guardar el cambio de memoria. Inténtalo de nuevo.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Los permisos se aplican a este dispositivo y a la configuración actual del servidor MCP."
+ "value" : "メモリの変更を保存できませんでした。もう一度お試しください。"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Machtigingen zijn van toepassing op dit apparaat en de huidige MCP-serverconfiguratie."
+ "value" : "Não foi possível guardar a alteração da memória. Tente novamente.",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τα δικαιώματα ισχύουν για αυτήν τη συσκευή και την τρέχουσα διαμόρφωση διακομιστή MCP."
+ "value" : "De geheugenwijziging kon niet worden opgeslagen. Probeer het opnieuw.",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les autorisations s’appliquent à cet appareil et à la configuration actuelle du serveur MCP."
+ "value" : "The memory change could not be saved. Please try again."
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Behörigheterna gäller för den här enheten och den aktuella MCP-serverkonfigurationen."
+ "value" : "Die Speicheränderung konnte nicht gespeichert werden. Bitte versuchen Sie es erneut.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Permissions apply to this device and the current MCP server configuration."
+ "value" : "Δεν ήταν δυνατή η αποθήκευση της αλλαγής μνήμης. Δοκιμάστε ξανά."
}
}
- }
+ },
+ "comment" : "Error message displayed when an error occurs while saving a memory change."
},
- "Untitled" : {
+ "Reset App Data" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Senza titolo"
+ "value" : "Appgegevens resetten",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Unbenannt"
+ "value" : "Restablecer datos de la aplicación",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "名称未設定"
+ "value" : "Επαναφορά δεδομένων εφαρμογής",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sem título"
+ "value" : "アプリデータをリセット"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sin título"
+ "value" : "App-Daten zurücksetzen"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Naamloos"
+ "value" : "Reimposta dati app"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Χωρίς τίτλο"
+ "value" : "Reset App Data",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sans titre"
+ "value" : "Återställ appdata"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Namnlös"
+ "value" : "Réinitialiser les données de l’application"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Untitled"
+ "value" : "Repor Dados da App"
}
}
- }
+ },
+ "comment" : "A confirmation alert that lets the user reset all app data."
},
- "Running %lld tool calls..." : {
- "comment" : "A message indicating that multiple tools are currently running.",
+ "Deny All & Close" : {
+ "comment" : "A button that closes the current view and denies all the requests.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Esecuzione di %lld chiamate agli strumenti..."
+ "value" : "Deny All & Close",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld Tool-Aufrufe werden ausgeführt..."
+ "value" : "Neka alla och stäng",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld 件のツール呼び出しを実行中…"
+ "value" : "Rifiuta tutto e chiudi",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A executar %lld chamadas de ferramentas..."
+ "value" : "Recusar tudo e fechar",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ejecutando %lld llamadas a herramientas..."
+ "value" : "Tout refuser et fermer",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Er worden %lld toolaanroepen uitgevoerd…"
+ "value" : "すべて拒否して閉じる"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Exécution de %lld appels d’outils..."
+ "value" : "Alles weigeren en sluiten",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εκτελούνται %lld κλήσεις εργαλείων..."
+ "value" : "Denegar todo y cerrar"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kör %lld verktygsanrop..."
+ "value" : "Alle ablehnen & schließen"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Running %lld tool calls..."
+ "value" : "Απόρριψη όλων και κλείσιμο"
}
}
}
},
- "Tap + to get started" : {
+ "Solar" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tocca + per iniziare"
+ "value" : "Solar"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tippe auf +, um zu beginnen"
+ "value" : "Ηλιακός",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "開始するには+をタップしてください"
+ "value" : "Solar"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toque + para começar"
+ "value" : "Solenergi"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toca + para comenzar"
+ "value" : "Solar",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tik op + om te beginnen"
+ "value" : "Zonnewerking"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Πατήστε + για να ξεκινήσετε"
+ "value" : "Solare",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appuyez sur + pour commencer"
+ "value" : "太陽光"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tryck på + för att börja"
+ "value" : "Solaire",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tap + to get started"
+ "value" : "Solar"
}
}
- }
+ },
+ "comment" : "A solar icon."
},
- "%lld attachment(s)" : {
- "comment" : "A label that shows the number of attachments and a paperclip icon.",
+ "Always Deny This Tool" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld allegato(i)"
+ "value" : "このツールを常に拒否する"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld Anhang\/Anhänge"
+ "value" : "Denegar siempre esta herramienta",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld 件の添付ファイル"
+ "value" : "Deze tool altijd weigeren",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld anexo(s)"
+ "value" : "Neka alltid det här verktyget neka åtkomst",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld archivo(s) adjunto(s)"
+ "value" : "Recusar sempre esta ferramenta"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld bijlage(n)"
+ "value" : "Να αρνείσαι πάντα αυτό το εργαλείο"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld συνημμένο(α)"
+ "value" : "Always Deny This Tool"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld pièce(s) jointe(s)"
+ "value" : "Toujours refuser cet outil"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld bilaga(or)"
+ "value" : "Dieses Tool immer ablehnen",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld attachment(s)"
+ "value" : "Nega sempre questo strumento"
}
}
- }
+ },
+ "comment" : "A label for a menu item that permanently denies a tool."
},
- "The network connection was lost." : {
+ "Fetch the list of search tools configured in your LiteLLM server." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La connessione di rete è stata persa."
+ "value" : "Hämta listan över sökverktyg som är konfigurerade i din LiteLLM-server."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Netzwerkverbindung wurde unterbrochen."
+ "value" : "Haal de lijst met zoekhulpmiddelen op die zijn geconfigureerd in uw LiteLLM-server."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ネットワーク接続が切断されました。"
+ "value" : "Récupérer la liste des outils de recherche configurés sur votre serveur LiteLLM.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A ligação de rede foi perdida."
+ "value" : "Obtener la lista de herramientas de búsqueda configuradas en su servidor LiteLLM."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Se perdió la conexión de red."
+ "value" : "Rufe die Liste der in deinem LiteLLM-Server konfigurierten Suchwerkzeuge ab."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De netwerkverbinding is verbroken."
+ "value" : "Ανάκτηση της λίστας εργαλείων αναζήτησης που έχουν ρυθμιστεί στον διακομιστή LiteLLM σας.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La connexion réseau a été perdue."
+ "value" : "LiteLLMサーバーに設定されている検索ツールの一覧を取得します。",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η σύνδεση δικτύου διακόπηκε."
+ "value" : "Recupera l'elenco degli strumenti di ricerca configurati nel tuo server LiteLLM."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nätverksanslutningen förlorades."
+ "value" : "Fetch the list of search tools configured on your LiteLLM server."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The network connection was lost."
+ "value" : "Obter a lista de ferramentas de pesquisa configuradas no seu servidor LiteLLM.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A description of the action to fetch the list of search tools."
},
- "Open a new conversation in OpenClient." : {
- "comment" : "Description of the New Chat widget.",
+ "No suggestions yet." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apri una nuova conversazione in OpenClient"
+ "value" : "Noch keine Vorschläge.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eine neue Unterhaltung in OpenClient starten."
+ "value" : "Pas encore de suggestions.",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClientで新しい会話を開始する"
+ "value" : "Aún no hay sugerencias."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abrir uma nova conversa no OpenClient."
+ "value" : "Nog geen suggesties.",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abrir una nueva conversación en OpenClient."
+ "value" : "Nessun suggerimento ancora."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Open een nieuw gesprek in OpenClient."
+ "value" : "まだ提案はありません。"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ouvrir une nouvelle conversation dans OpenClient"
+ "value" : "Inga förslag än så länge.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Άνοιγμα νέας συνομιλίας στο OpenClient"
+ "value" : "Sem sugestões ainda."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Öppna en ny konversation i OpenClient."
+ "value" : "No suggestions yet.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Open a new conversation in OpenClient"
+ "value" : "Δεν υπάρχουν προτάσεις ακόμα.",
+ "state" : "translated"
}
}
}
},
- "The conversation summary cursor does not reference one of its messages." : {
+ "Share your idea" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il cursore del riepilogo della conversazione non fa riferimento a uno dei suoi messaggi."
+ "value" : "アイデアを共有する"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Der Zusammenfassungs-Cursor der Unterhaltung verweist nicht auf eine seiner Nachrichten."
+ "value" : "Partagez votre idée",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "会話の要約カーソルがメッセージのいずれかを参照していません。"
+ "value" : "Share your idea",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O cursor do resumo da conversa não referencia uma das suas mensagens."
+ "value" : "Deel je idee"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El cursor del resumen de la conversación no hace referencia a uno de sus mensajes."
+ "value" : "Condividi la tua idea"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De samenvattingscursor van het gesprek verwijst niet naar een van zijn berichten."
+ "value" : "Partilhe a sua ideia",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ο δείκτης περίληψης συνομιλίας δεν αναφέρεται σε κάποιο από τα μηνύματά του."
+ "value" : "Comparte tu idea",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le curseur du résumé de la conversation ne fait pas référence à l’un de ses messages."
+ "value" : "Dela din idé"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Samtalssammanfattningens markör refererar inte till ett av dess meddelanden."
+ "value" : "Μοιραστείτε την ιδέα σας",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The conversation summary cursor does not reference one of its messages."
+ "value" : "Teile deine Idee"
}
}
}
},
- "%@ tokens, %lld percent" : {
+ "Your App Store purchases have been synchronized." : {
+ "comment" : "A message displayed when the user has restored their App Store purchases.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$@ token, %2$lld percentuale"
+ "value" : "Tus compras del App Store se han sincronizado.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@ Token, %2$lld Prozent"
+ "value" : "Vos achats de l’App Store ont été synchronisés."
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@ トークン、%2$lld パーセント"
+ "value" : "As suas compras da App Store foram sincronizadas."
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$@ tokens, %2$lld por cento"
+ "value" : "Your App Store purchases have been synchronized.",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@ fichas, %2$lld por ciento"
+ "value" : "Οι αγορές σας στο App Store συγχρονίστηκαν."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@ tokens, %2$lld procent"
+ "value" : "Deine App-Store-Käufe wurden synchronisiert."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$@ jetons, %2$lld pour cent"
+ "value" : "App Storeでの購入が同期されました。",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$@ διακριτικά, %2$lld τοις εκατό"
+ "value" : "Je App Store-aankopen zijn gesynchroniseerd.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@ tokens, %2$lld procent"
+ "value" : "Dina App Store-köp har synkroniserats."
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "new",
- "value" : "%1$@ tokens, %2$lld percent"
+ "value" : "I tuoi acquisti sull’App Store sono stati sincronizzati.",
+ "state" : "translated"
}
}
}
},
- "Ongoing support" : {
- "comment" : "A heading for ongoing support.",
+ "Deleting a memory..." : {
+ "comment" : "A message displayed when a memory is being deleted.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supporto continuo"
+ "value" : "Geheugen verwijderen..."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Laufender Support"
+ "value" : "Eliminando un recuerdo..."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "継続的なサポート"
+ "value" : "Διαγραφή μνήμης..."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suporte contínuo"
+ "value" : "メモリを削除中…",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Soporte continuo"
+ "value" : "Speicher wird gelöscht...",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Doorlopende ondersteuning"
+ "value" : "Eliminazione di una memoria..."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Συνεχής υποστήριξη"
+ "value" : "Deleting a memory...",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Assistance continue"
+ "value" : "Tar bort ett minne..."
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Löpande support"
+ "value" : "Suppression d’une mémoire…"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ongoing support"
+ "value" : "A eliminar uma memória...",
+ "state" : "translated"
}
}
}
},
- "Synchronized data deleted successfully" : {
+ "Refresh to try loading this MCP server again." : {
+ "comment" : "A description of the action to be taken when the user wants to retry loading the MCP server.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dati sincronizzati eliminati correttamente"
+ "value" : "Actualiza para intentar cargar este servidor MCP de nuevo.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchronisierte Daten erfolgreich gelöscht"
+ "value" : "Vernieuw om te proberen deze MCP-server opnieuw te laden.",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期データを正常に削除しました"
+ "value" : "Uppdatera för att försöka läsa in den här MCP-servern igen.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dados sincronizados eliminados com sucesso"
+ "value" : "Aggiorna per provare a caricare di nuovo questo server MCP.",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Datos sincronizados eliminados correctamente"
+ "value" : "Refresh to try loading this MCP server again."
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gesynchroniseerde gegevens zijn verwijderd"
+ "value" : "Actualisez pour essayer de charger à nouveau ce serveur MCP."
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τα συγχρονισμένα δεδομένα διαγράφηκαν με επιτυχία"
+ "value" : "Ανανεώστε για να δοκιμάσετε να φορτώσετε ξανά αυτόν τον διακομιστή MCP.",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Données synchronisées supprimées avec succès"
+ "value" : "Atualize para tentar carregar novamente este servidor MCP.",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synkroniserade data har raderats"
+ "value" : "再読み込みして、このMCPサーバーの読み込みをもう一度お試しください。"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronized data deleted successfully"
+ "value" : "Aktualisieren, um zu versuchen, diesen MCP-Server erneut zu laden."
}
}
}
},
- "Only the listed categories failed. Retry to finish deleting them." : {
+ "Rate the App" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Solo le categorie elencate non sono state eliminate. Riprova per completare l’eliminazione."
+ "value" : "Rate the App",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nur die aufgeführten Kategorien konnten nicht gelöscht werden. Wiederholen Sie den Vorgang, um das Löschen abzuschließen."
+ "value" : "アプリを評価する",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "リストにあるカテゴリのみ削除に失敗しました。削除を完了するには再試行してください。"
+ "value" : "Valuta l’app",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apenas as categorias listadas falharam. Tente novamente para concluir a eliminação."
+ "value" : "Calificar la app"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Solo fallaron las categorías indicadas. Vuelve a intentarlo para terminar de eliminarlas."
+ "value" : "Avaliar a App"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alleen de vermelde categorieën zijn mislukt. Probeer het opnieuw om ze te verwijderen."
+ "value" : "App bewerten"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Απέτυχαν μόνο οι κατηγορίες που αναφέρονται. Δοκιμάστε ξανά για να ολοκληρωθεί η διαγραφή τους."
+ "value" : "Βαθμολογήστε την εφαρμογή"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Seules les catégories répertoriées ont échoué. Réessayez pour terminer leur suppression."
+ "value" : "Évaluer l’application",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Endast de listade kategorierna kunde inte tas bort. Försök igen för att slutföra borttagningen."
+ "value" : "Betygsätt appen"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Only the listed categories failed. Retry to finish deleting them."
+ "value" : "Beoordeel de app",
+ "state" : "translated"
}
}
}
},
- "Delete Conversation" : {
- "comment" : "A confirmation dialog title for deleting a conversation.",
+ "All synchronized data" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Elimina conversazione"
- }
- },
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Konversation löschen"
+ "value" : "Todos los datos sincronizados",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "会話を削除"
+ "value" : "同期済みのすべてのデータ",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminar Conversa"
+ "value" : "Alle synchronisierten Daten",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar conversación"
+ "value" : "Tutti i dati sincronizzati"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gesprek verwijderen"
+ "value" : "Todos os dados sincronizados"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαγραφή Συνομιλίας"
+ "value" : "All synchronized data"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supprimer la conversation"
+ "value" : "Toutes les données synchronisées"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Radera konversation"
+ "value" : "Alla synkroniserade data"
}
},
- "en" : {
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Alle gesynchroniseerde gegevens",
+ "state" : "translated"
+ }
+ },
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Delete Conversation"
+ "value" : "Όλα τα συγχρονισμένα δεδομένα"
}
}
}
},
- "%lld tools available" : {
- "comment" : "A pluralized string describing the number of tools available. The argument is the number of tools available.",
+ "Blue" : {
+ "comment" : "Name of the color blue.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld strumenti disponibili"
+ "value" : "Μπλε",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld Werkzeuge verfügbar"
+ "value" : "Blu"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "利用可能なツール:%lld個"
+ "value" : "Azul"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld ferramentas disponíveis"
+ "value" : "Blauw"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld herramientas disponibles"
+ "value" : "青"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld tools beschikbaar"
+ "value" : "Blau"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαθέσιμα εργαλεία: %lld"
+ "value" : "Bleu"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld outils disponibles"
+ "value" : "Azul",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld verktyg tillgängliga"
+ "value" : "Blue",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld tools available"
+ "value" : "Blå"
}
}
}
},
- "%lld sources" : {
- "comment" : "A label that displays the number of sources found in a search result. The argument is the number of sources.",
+ "Synchronizes conversations and their attachments, profile, memory, and prompt templates across devices. Attachments are synchronized as part of their conversations." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld fonti"
+ "value" : "Sincroniza conversas e respetivos anexos, perfil, memória e modelos de prompt entre dispositivos. Os anexos são sincronizados como parte das respetivas conversas."
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld Quellen"
+ "value" : "Synchronisiert Unterhaltungen und deren Anhänge, Profil, Speicher und Prompt-Vorlagen geräteübergreifend. Anhänge werden als Teil ihrer Unterhaltungen synchronisiert."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld 件のソース"
+ "value" : "Synchronise les conversations et leurs pièces jointes, le profil, la mémoire et les modèles de prompts entre les appareils. Les pièces jointes sont synchronisées avec leurs conversations."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld fontes"
+ "value" : "Συγχρονίζει τις συνομιλίες και τα συνημμένα τους, το προφίλ, τη μνήμη και τα πρότυπα προτροπών σε όλες τις συσκευές. Τα συνημμένα συγχρονίζονται ως μέρος των συνομιλιών τους.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld fuentes"
+ "value" : "Sincroniza las conversaciones y sus archivos adjuntos, el perfil, la memoria y las plantillas de indicaciones entre dispositivos. Los archivos adjuntos se sincronizan como parte de sus conversaciones.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld bronnen"
+ "value" : "Synchroniseert gesprekken en hun bijlagen, profiel, geheugen en promptsjablonen op al je apparaten. Bijlagen worden gesynchroniseerd als onderdeel van hun gesprekken."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld πηγές"
+ "value" : "会話とその添付ファイル、プロフィール、メモリ、プロンプトテンプレートをデバイス間で同期します。添付ファイルは会話の一部として同期されます。",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld sources"
+ "value" : "Synkroniserar konversationer och deras bilagor, profil, minne och promptmallar mellan enheter. Bilagor synkroniseras som en del av deras konversationer."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld källor"
+ "value" : "Synchronizes conversations and their attachments, profile, memory, and prompt templates across devices. Attachments are synchronized as part of their conversations."
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld sources"
+ "value" : "Sincronizza le conversazioni e i relativi allegati, il profilo, la memoria e i modelli di prompt tra i dispositivi. Gli allegati vengono sincronizzati insieme alle relative conversazioni.",
+ "state" : "translated"
}
}
}
},
- "Local" : {
+ "Pinned Conversations" : {
+ "comment" : "Title of the widget that shows pinned conversations.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Locale"
+ "value" : "Conversas Fixadas",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lokal"
+ "value" : "ピン留めされた会話"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ローカル"
+ "value" : "Vastgezette gesprekken",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Localização"
+ "value" : "Angeheftete Unterhaltungen",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Local"
+ "value" : "Καρφιτσωμένες Συνομιλίες",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lokaal"
+ "value" : "Fästa konversationer"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τοπικό"
+ "value" : "Pinned Conversations",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Local"
+ "value" : "Conversazioni fissate",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lokal"
+ "value" : "Conversaciones fijadas"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Local"
+ "value" : "Conversations épinglées",
+ "state" : "translated"
}
}
}
},
- "Any Model" : {
- "comment" : "A description of an app feature that allows users to interact with any large language model.",
+ "New chat with text" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Qualsiasi modello"
+ "value" : "Νέα συνομιλία με κείμενο",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beliebiges Modell"
+ "value" : "Ny chatt med text",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "任意のモデル"
+ "value" : "Nieuw gesprek met tekst",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Qualquer Modelo"
+ "value" : "テキストで新しいチャットを開始"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cualquier modelo"
+ "value" : "Nuevo chat con texto"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elk model"
+ "value" : "Nouvelle conversation avec texte"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "N’importe quel modèle"
+ "value" : "Neuer Chat mit Text"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Οποιοδήποτε Μοντέλο"
+ "value" : "Nova conversa com texto",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vilken modell som helst"
+ "value" : "Nuova chat con testo",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Any Model"
+ "value" : "New chat with text"
}
}
- }
+ },
+ "comment" : "A description of how to open a new chat with a text message."
},
- "%lld servers available" : {
- "comment" : "A label that shows the number of MCP servers available. The argument is the number of servers.",
+ "Suggestion" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld server disponibili"
+ "value" : "Suggestion"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld Server verfügbar"
- }
- },
- "ja" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "利用可能なサーバー数:%lld"
+ "value" : "Vorschlag",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld servidores MCP disponíveis"
+ "value" : "Sugestão"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld servidores disponibles"
+ "value" : "提案"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld servers beschikbaar"
+ "value" : "Suggestie"
}
},
"el" : {
+ "stringUnit" : {
+ "value" : "Πρόταση",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαθέσιμοι διακομιστές MCP: %lld"
+ "value" : "Förslag"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld serveurs disponibles"
+ "value" : "Suggerimento"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld tillgängliga servrar"
+ "value" : "Sugerencia"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld servers available"
+ "value" : "Suggestion",
+ "state" : "translated"
}
}
}
},
- "Apple Shortcuts" : {
- "comment" : "A heading for the Apple Shortcuts section.",
+ "Tools unavailable" : {
+ "comment" : "A message displayed when the MCP server is unavailable.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Scorciatoie Apple"
+ "value" : "Strumenti non disponibili"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apple Kurzbefehle"
+ "value" : "Herramientas no disponibles"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appleショートカット"
+ "value" : "Tools unavailable"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Atalhos Apple"
+ "value" : "Outils indisponibles"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Atajos de Apple"
+ "value" : "Tools nicht verfügbar",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apple-snelkoppelingen"
+ "value" : "ツールを利用できません",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συντομεύσεις Apple"
+ "value" : "Ferramentas indisponíveis"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Raccourcis Apple"
+ "value" : "Hulpmiddelen niet beschikbaar"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apple-genvägar"
+ "value" : "Verktyg ej tillgängliga",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apple Shortcuts"
+ "value" : "Τα εργαλεία δεν είναι διαθέσιμα"
}
}
}
},
- "Edit Tags" : {
- "comment" : "A button that opens a sheet for editing a conversation's tags.",
+ "Add a comment" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modifica tag"
+ "value" : "Add a comment"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tags bearbeiten"
+ "value" : "Kommentar hinzufügen"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "タグを編集"
+ "value" : "Aggiungi un commento"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Editar Etiquetas"
+ "value" : "Προσθήκη σχολίου"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Editar etiquetas"
+ "value" : "Een opmerking toevoegen"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tags bewerken"
+ "value" : "Ajouter un commentaire",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επεξεργασία ετικετών"
+ "value" : "コメントを追加"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modifier les tags"
+ "value" : "Adicionar um comentário"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Redigera taggar"
+ "value" : "Lägg till en kommentar",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Edit Tags"
+ "value" : "Agregar un comentario"
}
}
}
},
- "Connection successful — ready to continue" : {
- "comment" : "A message displayed when the connection to the server is successful.",
+ "Leave empty to submit anonymously" : {
"localizations" : {
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Connection successful — ready to continue"
+ "value" : "Leave empty to submit anonymously",
+ "state" : "translated"
}
},
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Connessione riuscita — pronto per continuare"
+ "value" : "Αφήστε κενό για ανώνυμη υποβολή"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conexión exitosa — listo para continuar"
+ "value" : "Lascia vuoto per inviare in modo anonimo",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verbindung erfolgreich — bereit zum Fortfahren"
+ "value" : "Laat leeg om anoniem te verzenden",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Connexion réussie — prêt à continuer"
+ "value" : "Leer lassen, um anonym zu senden",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Anslutning lyckades — redo att fortsätta"
+ "value" : "Laisser vide pour soumettre anonymement",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η σύνδεση ήταν επιτυχής — έτοιμοι για συνέχεια"
+ "value" : "匿名で送信するには空欄のままにしてください"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verbinding geslaagd — klaar om door te gaan"
+ "value" : "Lämna tomt för att skicka anonymt",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ligação bem-sucedida — pronto para continuar"
+ "value" : "Deixe vazio para enviar anonimamente"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "接続に成功しました — 続行の準備ができました"
+ "value" : "Dejar vacío para enviar de forma anónima",
+ "state" : "translated"
}
}
}
},
- "tag.audio" : {
- "comment" : "Label for the audio input capability.",
+ "The cloud deletion could not be completed." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Audio"
+ "value" : "La suppression dans le cloud n’a pas pu être effectuée."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Audio"
+ "value" : "Impossibile completare l’eliminazione dal cloud.",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Audio"
+ "value" : "Het verwijderen uit de cloud kon niet worden voltooid.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Audio"
+ "value" : "The cloud deletion could not be completed.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Audio"
+ "value" : "No se pudo completar la eliminación en la nube."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Audio"
+ "value" : "Δεν ήταν δυνατή η ολοκλήρωση της διαγραφής από το cloud."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Audio"
+ "value" : "Não foi possível concluir a eliminação da nuvem.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Audio"
+ "value" : "クラウドからの削除を完了できませんでした。"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Audio"
+ "value" : "Das Löschen aus der Cloud konnte nicht abgeschlossen werden."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Audio"
+ "value" : "Det gick inte att slutföra borttagningen från molnet."
}
}
- }
+ },
+ "comment" : "Error message when the cloud deletion fails."
},
- "Media & Files" : {
- "comment" : "A button that displays a sheet for selecting and viewing media files and attachments.",
+ "Earlier" : {
+ "comment" : "Title for a section of conversation data that includes conversations older than a week.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Media e file"
+ "value" : "Più vecchio"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Medien & Dateien"
+ "value" : "Eerder"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メディアとファイル"
+ "value" : "Προηγούμενα",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Média e Ficheiros"
+ "value" : "Earlier"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Medios y archivos"
+ "value" : "Anteriormente",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Media en bestanden"
+ "value" : "Plus tôt"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μέσα & Αρχεία"
+ "value" : "Mais antigo",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Médias et fichiers"
+ "value" : "以前",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Media och filer"
+ "value" : "Früher",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Media & Files"
+ "value" : "Tidigare",
+ "state" : "translated"
}
}
}
},
- "Response interrupted" : {
- "comment" : "Text displayed in a notification when the response to a prompt was cut short.",
+ "Explain why this feature would be useful" : {
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Risposta interrotta"
+ "value" : "Spiega perché questa funzione sarebbe utile"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Antwort unterbrochen"
+ "value" : "Explica por qué esta función sería útil",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "応答が中断されました"
+ "value" : "Explain why this feature would be useful",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Resposta interrompida"
+ "value" : "Erklären Sie, warum diese Funktion nützlich wäre",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Respuesta interrumpida"
+ "value" : "Expliquez pourquoi cette fonctionnalité serait utile"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Reactie onderbroken"
+ "value" : "Εξηγήστε γιατί αυτή η λειτουργία θα ήταν χρήσιμη",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η απάντηση διακόπηκε"
+ "value" : "Leg uit waarom deze functie nuttig zou zijn"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Réponse interrompue"
+ "value" : "この機能が役立つ理由を説明してください"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Svar avbrutet"
+ "value" : "Förklara varför denna funktion skulle vara användbar"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Response interrupted"
+ "value" : "Explique por que esta funcionalidade seria útil"
}
}
}
},
- "Memory Item %lld" : {
+ "Output" : {
+ "comment" : "A label for the cost of output tokens.",
+ "shouldTranslate" : false
+ },
+ "MCP servers are configured in your LiteLLM server. Fetch to see what's available, enable tools, and choose their execution permissions." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elemento di memoria %lld"
+ "value" : "Les serveurs MCP sont configurés sur votre serveur LiteLLM. Récupérez-les pour voir ce qui est disponible, activer les outils et choisir leurs autorisations d’exécution.",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Speichereintrag %lld"
+ "value" : "Los servidores MCP están configurados en tu servidor de LiteLLM. Obtén la lista para ver qué hay disponible, habilita las herramientas y elige sus permisos de ejecución."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メモリー項目 %lld"
+ "value" : "Οι διακομιστές MCP έχουν ρυθμιστεί στον διακομιστή LiteLLM. Κάντε ανάκτηση για να δείτε τι είναι διαθέσιμο, ενεργοποιήστε τα εργαλεία και επιλέξτε τα δικαιώματα εκτέλεσής τους."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Item de memória %lld"
+ "value" : "MCP-servrar konfigureras på din LiteLLM-server. Hämta för att se vad som är tillgängligt, aktivera verktyg och välja deras körningsbehörigheter."
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elemento de memoria %lld"
+ "value" : "I server MCP sono configurati nel tuo server LiteLLM. Recuperali per vedere cosa è disponibile, abilitare gli strumenti e scegliere le relative autorizzazioni di esecuzione."
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geheugenitem %lld"
+ "value" : "Os servidores MCP estão configurados no seu servidor LiteLLM. Obtenha a lista para ver o que está disponível, ative as ferramentas e escolha as respetivas permissões de execução.",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Élément mémoire %lld"
+ "value" : "MCP-Server sind auf Ihrem LiteLLM-Server konfiguriert. Rufen Sie sie ab, um zu sehen, was verfügbar ist, Tools zu aktivieren und deren Ausführungsberechtigungen auszuwählen.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Στοιχείο μνήμης %lld"
+ "value" : "MCPサーバーはLiteLLMサーバーで設定されています。利用可能なサーバーを確認するには取得し、ツールを有効にして、実行権限を選択してください。",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Minnesobjekt %lld"
+ "value" : "MCP servers are configured in your LiteLLM server. Fetch to see what's available, enable tools, and choose their execution permissions.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Memory Item %lld"
+ "value" : "MCP-servers zijn geconfigureerd in je LiteLLM-server. Haal ze op om te zien wat er beschikbaar is, tools in te schakelen en hun uitvoeringsrechten te kiezen.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A description of MCP servers."
},
- "All synchronized data" : {
+ "Sign in to iCloud, then retry. Sync remains enabled." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tutti i dati sincronizzati"
+ "value" : "Melde dich bei iCloud an und versuche es erneut. Die Synchronisierung bleibt aktiviert."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alle synchronisierten Daten"
+ "value" : "Accedi a iCloud, quindi riprova. La sincronizzazione rimane abilitata."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期済みのすべてのデータ"
+ "value" : "iCloudにサインインしてから、もう一度お試しください。同期は有効のままです。",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Todos os dados sincronizados"
+ "value" : "Inicie sessão no iCloud e tente novamente. A sincronização continua ativada."
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Todos los datos sincronizados"
+ "value" : "Inicia sesión en iCloud y vuelve a intentarlo. La sincronización sigue activada.",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle gesynchroniseerde gegevens"
+ "value" : "Συνδεθείτε στο iCloud και δοκιμάστε ξανά. Ο συγχρονισμός παραμένει ενεργοποιημένος.",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toutes les données synchronisées"
+ "value" : "Logga in på iCloud och försök igen. Synkronisering är fortfarande aktiverad.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Όλα τα συγχρονισμένα δεδομένα"
+ "value" : "Connectez-vous à iCloud, puis réessayez. La synchronisation reste activée."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alla synkroniserade data"
+ "value" : "Sign in to iCloud, then retry. Sync remains enabled.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "All synchronized data"
+ "value" : "Log in bij iCloud en probeer het opnieuw. Synchronisatie blijft ingeschakeld."
}
}
}
},
- "You're all set!" : {
- "comment" : "A title displayed in the onboarding view when the server is ready.",
+ "Refresh" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tutto pronto!"
+ "value" : "Actualizar",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alles bereit!"
+ "value" : "Vernieuwen",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "準備完了です!"
+ "value" : "Uppdatera",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Está tudo pronto!"
+ "value" : "Aggiorna",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "¡Todo listo!"
+ "value" : "Refresh"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je bent helemaal klaar!"
+ "value" : "Actualiser",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Είστε έτοιμοι!"
+ "value" : "Ανανέωση"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tout est prêt !"
+ "value" : "Atualizar"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Allt är klart!"
+ "value" : "更新"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "You're all set!"
+ "value" : "Aktualisieren",
+ "state" : "translated"
}
}
}
},
- "Refresh" : {
+ "Creative Writer" : {
+ "comment" : "Name of the creative writing assistant prompt template.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aggiorna"
+ "value" : "Creatief Schrijver",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktualisieren"
+ "value" : "Écrivain créatif"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "更新"
+ "value" : "Creative Writer"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Atualizar"
+ "value" : "Scrittore Creativo",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Actualizar"
+ "value" : "Δημιουργικός Συγγραφέας",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vernieuwen"
+ "value" : "Escritor Creativo",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Actualiser"
+ "value" : "Escritor Criativo"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ανανέωση"
+ "value" : "クリエイティブライター"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Uppdatera"
+ "value" : "Kreativautor"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Refresh"
+ "value" : "Kreativ författare"
}
}
}
},
- "Rename" : {
- "comment" : "A button that renames a conversation.",
+ "Voice" : {
+ "comment" : "A label displayed above a list of available voices.",
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rinomina"
+ "value" : "Voce",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Umbenennen"
+ "value" : "Voz",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "名前を変更"
+ "value" : "Voice"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Renomear"
+ "value" : "Stimme",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Renombrar"
+ "value" : "Voix"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hernoemen"
+ "value" : "Röst"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μετονομασία"
+ "value" : "Stem",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Renommer"
+ "value" : "Vozes"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Byt namn"
+ "value" : "音声",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rename"
+ "value" : "Φωνή",
+ "state" : "translated"
}
}
}
},
- "Profile synchronization needs a decision" : {
+ "Add images and documents" : {
+ "comment" : "A description of how to add images and documents to a conversation.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "È necessario decidere sulla sincronizzazione del profilo"
+ "value" : "Agregar imágenes y documentos",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Für die Profilsynchronisierung ist eine Entscheidung erforderlich"
+ "value" : "Lägg till bilder och dokument"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "プロフィールの同期には決定が必要です"
+ "value" : "Ajouter des images et des documents",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A sincronização do perfil requer uma decisão"
+ "value" : "Add images and documents",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La sincronización del perfil requiere una decisión"
+ "value" : "Προσθήκη εικόνων και εγγράφων"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voor profilsynchronisatie is een beslissing nodig"
+ "value" : "Aggiungi immagini e documenti"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Απαιτείται απόφαση για τον συγχρονισμό του προφίλ"
+ "value" : "画像とドキュメントを追加"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La synchronisation du profil nécessite une décision"
+ "value" : "Bilder und Dokumente hinzufügen",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synkronisering av profilen kräver ett beslut"
+ "value" : "Afbeeldingen en documenten toevoegen"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profile synchronization needs a decision"
+ "value" : "Adicionar imagens e documentos"
}
}
}
},
- "Tap + to create your first custom prompt template." : {
- "comment" : "A description of the action to create a custom prompt template.",
+ "Enter a new name for this conversation." : {
+ "comment" : "A message displayed in an alert when renaming a conversation.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tocca + per creare il tuo primo modello di prompt personalizzato."
+ "value" : "Inserisci un nuovo nome per questa conversazione"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tippe auf +, um deine erste benutzerdefinierte Eingabevorlage zu erstellen."
+ "value" : "Entrez un nouveau nom pour cette conversation.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "+ をタップして最初のカスタムプロンプトテンプレートを作成してください。"
+ "value" : "Enter a new name for this conversation",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toque em + para criar o seu primeiro modelo de prompt personalizado."
+ "value" : "Voer een nieuwe naam in voor dit gesprek.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toca + para crear tu primera plantilla de indicación personalizada."
+ "value" : "Introduce un nuevo nombre para esta conversación."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tik op + om je eerste aangepaste promptsjabloon te maken."
+ "value" : "Εισαγάγετε ένα νέο όνομα για αυτή τη συνομιλία.",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πατήστε + για να δημιουργήσετε το πρώτο σας προσαρμοσμένο πρότυπο προτροπής."
+ "value" : "Geben Sie einen neuen Namen für diese Unterhaltung ein."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Touchez + pour créer votre premier modèle d’invite personnalisé."
+ "value" : "この会話の新しい名前を入力してください",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tryck på + för att skapa din första anpassade promptmall."
+ "value" : "Introduza um novo nome para esta conversa.",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tap + to create your first custom prompt template"
+ "value" : "Ange ett nytt namn för den här konversationen.",
+ "state" : "translated"
}
}
}
},
- "Green" : {
- "comment" : "Name of the color green.",
+ "Image File..." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verde"
+ "value" : "画像ファイル...",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Grün"
+ "value" : "Bilddatei..."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "緑"
+ "value" : "Afbeeldingsbestand..."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verde"
+ "value" : "Bildfil...",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verde"
+ "value" : "Ficheiro de Imagem...",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Groen"
+ "value" : "Image File...",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πράσινο"
+ "value" : "Archivo de imagen..."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vert"
+ "value" : "File immagine..."
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Grön"
+ "value" : "Αρχείο εικόνας..."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Green"
+ "value" : "Fichier image...",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label for selecting an image file."
},
- "Rename Conversation" : {
- "comment" : "A dialog box title that appears when renaming a conversation.",
+ "MCP server" : {
+ "comment" : "Default name for a MCP server.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rinomina conversazione"
+ "value" : "Διακομιστής MCP",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Konversation umbenennen"
+ "value" : "MCP server",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "会話の名前を変更"
+ "value" : "Servidor MCP",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Renomear Conversa"
+ "value" : "MCPサーバー",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Renombrar conversación"
+ "value" : "Servidor MCP"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gesprek hernoemen"
+ "value" : "Serveur MCP"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Renommer la conversation"
+ "value" : "Server MCP"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μετονομασία Συνομιλίας"
+ "value" : "MCP-server"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Byt namn på konversation"
+ "value" : "MCP-server",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rename Conversation"
+ "value" : "MCP-Server",
+ "state" : "translated"
}
}
}
},
- "Use iCloud Data" : {
- "comment" : "A button that selects iCloud data as the preferred data source.",
+ "Save to Downloads" : {
+ "comment" : "A label for saving an image to the user's Downloads folder.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Usa dati iCloud"
+ "value" : "Enregistrer dans Téléchargements",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-Daten verwenden"
+ "value" : "Guardar em Transferências",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudデータを使用"
+ "value" : "In Downloads speichern"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Usar dados do iCloud"
+ "value" : "ダウンロードに保存"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Usar datos de iCloud"
+ "value" : "Opslaan in Downloads"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gebruik iCloud-gegevens"
+ "value" : "Αποθήκευση στους Λήψεις",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Χρήση δεδομένων iCloud"
+ "value" : "Spara till Hämtade filer",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Utiliser les données iCloud"
+ "value" : "Save to Downloads"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Använd iCloud-data"
+ "value" : "Guardar en Descargas",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Use iCloud Data"
+ "value" : "Salva in Download"
}
}
}
},
- "tag.web.search" : {
- "comment" : "Label for a capability that allows the model to perform web searches.",
+ "Find conversation settings, favourites, files, and export options in this menu." : {
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Web Search"
+ "value" : "Trova impostazioni della conversazione, preferiti, file e opzioni di esportazione in questo menu."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Web Search"
+ "value" : "Find conversation settings, favorites, files, and export options in this menu.",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Web Search"
+ "value" : "このメニューで会話設定、お気に入り、ファイル、エクスポートオプションを見つけられます。",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Web Search"
+ "value" : "Encuentra la configuración de conversación, favoritos, archivos y opciones de exportación en este menú.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Web Search"
+ "value" : "Encontre definições de conversa, favoritos, ficheiros e opções de exportação neste menu."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Web Search"
+ "value" : "Finde Konversationseinstellungen, Favoriten, Dateien und Exportoptionen in diesem Menü.",
+ "state" : "translated"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Web Search"
+ "value" : "Βρείτε τις ρυθμίσεις συνομιλίας, τα αγαπημένα, τα αρχεία και τις επιλογές εξαγωγής σε αυτό το μενού."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Web Search"
+ "value" : "Trouvez les paramètres de conversation, favoris, fichiers et options d’exportation dans ce menu."
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Web Search"
+ "value" : "Hitta konversationsinställningar, favoriter, filer och exportalternativ i den här menyn."
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Web Search"
+ "value" : "Vind gespreksinstellingen, favorieten, bestanden en exportopties in dit menu.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A description of the chat options tip."
},
- "Web Search" : {
- "comment" : "A section of the settings view that allows the user to configure the web search tool.",
+ "You are an expert software engineer. Help with code, explain concepts clearly, suggest best practices, and provide working code examples. Always prefer readable and maintainable solutions." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ricerca Web"
+ "value" : "Je bent een expert software-engineer. Help met code, leg concepten duidelijk uit, stel best practices voor en geef werkende codevoorbeelden. Geef altijd de voorkeur aan leesbare en onderhoudbare oplossingen.",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Websuche"
+ "value" : "Είστε έμπειρος μηχανικός λογισμικού. Βοηθήστε με κώδικα, εξηγήστε έννοιες με σαφήνεια, προτείνετε βέλτιστες πρακτικές και παρέχετε λειτουργικά παραδείγματα κώδικα. Προτιμήστε πάντα λύσεις που είναι ευανάγνωστες και εύκολες στη συντήρηση.",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ウェブ検索"
+ "value" : "Eres un ingeniero de software experto. Ayuda con el código, explica conceptos claramente, sugiere las mejores prácticas y proporciona ejemplos de código funcionales. Siempre prefiere soluciones legibles y mantenibles.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pesquisa Web"
+ "value" : "Sie sind ein erfahrener Softwareingenieur. Helfen Sie bei Code, erklären Sie Konzepte klar, schlagen Sie Best Practices vor und liefern Sie funktionierende Codebeispiele. Bevorzugen Sie stets lesbare und wartbare Lösungen.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Búsqueda web"
+ "value" : "És um engenheiro de software especialista. Ajuda com código, explica conceitos claramente, sugere as melhores práticas e fornece exemplos de código funcionais. Prefere sempre soluções legíveis e fáceis de manter."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Webzoekfunctie"
+ "value" : "You are an expert software engineer. Help with code, explain concepts clearly, suggest best practices, and provide working code examples. Always prefer readable and maintainable solutions."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αναζήτηση στο Διαδίκτυο"
+ "value" : "Du är en expertprogrammerare. Hjälp till med kod, förklara koncept tydligt, föreslå bästa praxis och ge fungerande kodexempel. Föredra alltid läsbara och underhållbara lösningar.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Recherche Web"
+ "value" : "あなたは熟練のソフトウェアエンジニアです。コードの支援、概念の明確な説明、ベストプラクティスの提案、動作するコード例の提供を行います。常に読みやすく保守しやすい解決策を優先してください。",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Webbsökning"
+ "value" : "Sei un esperto ingegnere del software. Aiuta con il codice, spiega i concetti chiaramente, suggerisci le migliori pratiche e fornisci esempi di codice funzionanti. Preferisci sempre soluzioni leggibili e manutenibili."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Web Search"
+ "value" : "Vous êtes un ingénieur logiciel expert. Aidez avec le code, expliquez clairement les concepts, suggérez les meilleures pratiques et fournissez des exemples de code fonctionnels. Privilégiez toujours des solutions lisibles et maintenables."
}
}
- }
+ },
+ "comment" : "Prompt template content for each role type"
},
- "This is separate from Reset App Data, which only resets local app data." : {
+ "Keep it short and descriptive" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Questo è separato da «Reimposta dati dell’app», che reimposta solo i dati locali dell’app."
+ "value" : "Seja breve e descritivo"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dies ist unabhängig von „App-Daten zurücksetzen“, wodurch nur die lokalen App-Daten zurückgesetzt werden."
+ "value" : "短く分かりやすく",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "これは、アプリのローカルデータのみをリセットする「アプリデータをリセット」とは別の機能です。"
+ "value" : "Houd het kort en duidelijk",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Isto é separado de Repor os dados da aplicação, que apenas repõe os dados locais da aplicação."
+ "value" : "Kurz und prägnant"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esto es independiente de Restablecer datos de la app, que solo restablece los datos locales de la app."
+ "value" : "Κρατήστε το σύντομο και περιγραφικό"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dit staat los van ‘Appgegevens opnieuw instellen’, waarmee alleen lokale appgegevens worden gereset."
+ "value" : "Håll det kort och beskrivande"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αυτό είναι ξεχωριστό από την Επαναφορά δεδομένων εφαρμογής, η οποία επαναφέρει μόνο τα τοπικά δεδομένα της εφαρμογής."
+ "value" : "Keep it short and descriptive",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cette option est distincte de Réinitialiser les données de l’app, qui réinitialise uniquement les données locales de l’app."
+ "value" : "Mantienilo breve e descrittivo",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Detta är separat från Återställ appdata, som endast återställer lokala appdata."
+ "value" : "Sé breve y descriptivo"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "This is separate from Reset App Data, which only resets local app data."
+ "value" : "Soyez bref et descriptif",
+ "state" : "translated"
}
}
}
},
- "Completion" : {
- "comment" : "A description of a completion LLM model.",
+ "App icon changes are unavailable on this device." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Completamento"
+ "value" : "App icon changes are unavailable on this device."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abschluss"
+ "value" : "Η αλλαγή του εικονιδίου της εφαρμογής δεν είναι διαθέσιμη σε αυτήν τη συσκευή."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "完了"
+ "value" : "Änderungen am App-Symbol sind auf diesem Gerät nicht verfügbar."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conclusão"
+ "value" : "Det går inte att ändra appsymbolen på den här enheten.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Finalización"
+ "value" : "Não é possível alterar o ícone da aplicação neste dispositivo."
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voltooiing"
+ "value" : "Het wijzigen van het apppictogram is niet beschikbaar op dit apparaat.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ολοκλήρωση"
+ "value" : "Le modifiche all’icona dell’app non sono disponibili su questo dispositivo.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Achèvement"
+ "value" : "このデバイスではアプリアイコンを変更できません。"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Slutförande"
+ "value" : "Les changements d’icône de l’app sont indisponibles sur cet appareil."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Completion"
+ "value" : "Los cambios del icono de la app no están disponibles en este dispositivo."
}
}
- }
+ },
+ "comment" : "A warning message displayed when the app icon cannot be changed on the current device."
},
- "Share Extension" : {
- "comment" : "A section that describes how to use the share extension to share content with the app.",
+ "MCP tool settings changed. Affected allow decisions were cleared. Deny those calls or close this review." : {
+ "comment" : "Error message displayed when the MCP tool settings have changed.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Estensione di condivisione"
+ "value" : "De MCP-toolinstellingen zijn gewijzigd. De betreffende toestemmingsbeslissingen zijn gewist. Weiger die aanroepen of sluit deze beoordeling.",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Freigabeerweiterung"
+ "value" : "MCP tool settings changed. Affected allow decisions were cleared. Deny those calls or close this review."
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "共有エクステンション"
+ "value" : "Le impostazioni dello strumento MCP sono cambiate. Le decisioni di autorizzazione interessate sono state cancellate. Nega queste chiamate o chiudi questa revisione.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Extensão de Partilha"
+ "value" : "MCP-verktygsinställningarna har ändrats. Berörda tillåtelsebeslut har rensats. Neka dessa anrop eller stäng den här granskningen."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Extensión para compartir"
+ "value" : "Οι ρυθμίσεις του εργαλείου MCP άλλαξαν. Οι επηρεαζόμενες αποφάσεις έγκρισης διαγράφηκαν. Απορρίψτε αυτές τις κλήσεις ή κλείστε αυτήν την αξιολόγηση."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deeluitbreiding"
+ "value" : "La configuración de la herramienta MCP ha cambiado. Se borraron las decisiones de autorización afectadas. Deniega esas llamadas o cierra esta revisión."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Extension de partage"
+ "value" : "As definições da ferramenta MCP foram alteradas. As decisões de permissão afetadas foram eliminadas. Negue essas chamadas ou feche esta revisão.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επέκταση Κοινοποίησης"
+ "value" : "MCPツールの設定が変更されました。影響を受ける許可の判断はクリアされました。これらの呼び出しを拒否するか、このレビューを閉じてください。"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dela-tillägg"
+ "value" : "Les réglages de l’outil MCP ont changé. Les décisions d’autorisation concernées ont été effacées. Refusez ces appels ou fermez cet examen.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Share Extension"
+ "value" : "Die MCP-Tool-Einstellungen wurden geändert. Betroffene Zulassungsentscheidungen wurden gelöscht. Lehnen Sie diese Aufrufe ab oder schließen Sie diese Überprüfung."
}
}
}
},
- "You" : {
- "comment" : "A name for the user.",
+ "Select a model to start chatting" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tu"
+ "value" : "Sélectionnez un modèle pour commencer la conversation",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "You"
+ "value" : "Επιλέξτε ένα μοντέλο για να ξεκινήσετε τη συνομιλία"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tú"
+ "value" : "Selecciona un modelo para empezar a chatear"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Du"
+ "value" : "Välj en modell för att börja chatta",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vous"
+ "value" : "Seleziona un modello per iniziare a chattare",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Du"
+ "value" : "Selecione um modelo para começar a conversar"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εσύ"
+ "value" : "Select a model to start chatting"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Jij"
+ "value" : "チャットを始めるモデルを選択してください"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tu"
+ "value" : "Wähle ein Modell, um das Gespräch zu beginnen"
}
},
- "ja" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "あなた"
- }
- }
- }
- },
- "%lld" : {
- "shouldTranslate" : false,
- "comment" : "A label displaying the number of search results. The argument is the number of search results.",
- "localizations" : {
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld"
+ "value" : "Selecteer een model om te beginnen met chatten"
}
}
}
},
- "Open in App" : {
- "comment" : "A button that opens the app.",
+ "Synchronized data deleted successfully" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apri nell’app"
+ "value" : "Synchronisierte Daten erfolgreich gelöscht"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "In App öffnen"
+ "value" : "Τα συγχρονισμένα δεδομένα διαγράφηκαν με επιτυχία"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アプリで開く"
+ "value" : "Synchronized data deleted successfully",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abrir na App"
+ "value" : "Synkroniserade data har raderats",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abrir en la app"
+ "value" : "Dados sincronizados eliminados com sucesso"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Openen in app"
+ "value" : "Gesynchroniseerde gegevens zijn verwijderd",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ouvrir dans l’app"
+ "value" : "Dati sincronizzati eliminati correttamente",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Άνοιγμα στην εφαρμογή"
+ "value" : "同期データを正常に削除しました",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Öppna i appen"
+ "value" : "Données synchronisées supprimées avec succès"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Open in App"
+ "value" : "Datos sincronizados eliminados correctamente",
+ "state" : "translated"
}
}
}
},
- "The profile changed or was deleted before this save completed." : {
- "comment" : "Error description when a profile change or deletion occurred before the save operation completed.",
+ "Pick an OpenClient icon that matches your style." : {
+ "comment" : "A tip to choose an icon for the app.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Il profilo è stato modificato o eliminato prima del completamento del salvataggio."
+ "value" : "Επιλέξτε ένα εικονίδιο του OpenClient που ταιριάζει στο στιλ σας.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Das Profil wurde geändert oder gelöscht, bevor dieser Speichervorgang abgeschlossen wurde."
+ "value" : "Välj en OpenClient-ikon som passar din stil.",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "この保存が完了する前に、プロファイルが変更されたか削除されました。"
+ "value" : "自分のスタイルに合うOpenClientのアイコンを選択してください。",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O perfil foi alterado ou eliminado antes de esta gravação ser concluída."
+ "value" : "Kies een OpenClient-pictogram dat bij je stijl past.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El perfil cambió o se eliminó antes de que se completara este guardado."
+ "value" : "Elige un icono de OpenClient que vaya con tu estilo."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het profiel is gewijzigd of verwijderd voordat deze opslag was voltooid."
+ "value" : "Wähle ein OpenClient-Symbol, das zu deinem Stil passt."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το προφίλ άλλαξε ή διαγράφηκε πριν ολοκληρωθεί αυτή η αποθήκευση."
+ "value" : "Choisissez une icône OpenClient qui correspond à votre style."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le profil a été modifié ou supprimé avant la fin de l’enregistrement."
+ "value" : "Escolha um ícone do OpenClient que combine com o seu estilo."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profilen ändrades eller raderades innan den här sparningen slutfördes."
+ "value" : "Scegli un’icona di OpenClient in linea con il tuo stile."
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The profile changed or was deleted before this save completed."
+ "value" : "Pick an OpenClient icon that matches your style.",
+ "state" : "translated"
}
}
}
},
- "Opens OpenClient with the conversation search field active." : {
+ "Pin" : {
+ "comment" : "A pin icon.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apre OpenClient con il campo di ricerca conversazioni attivo."
+ "value" : "ピン",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Öffnet OpenClient mit aktivem Suchfeld für Konversationen."
+ "value" : "Stift"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClientを会話検索フィールドがアクティブな状態で開く。"
+ "value" : "Καρφίτσωμα",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abre o OpenClient com o campo de pesquisa da conversa ativo."
+ "value" : "Alfinete"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abre OpenClient con el campo de búsqueda de conversación activo."
+ "value" : "Anheften"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Opent OpenClient met het zoekveld voor gesprekken actief."
+ "value" : "Vastzetten",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ανοίγει το OpenClient με ενεργό το πεδίο αναζήτησης συνομιλίας."
+ "value" : "Pin"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ouvre OpenClient avec le champ de recherche de conversation actif."
+ "value" : "Fijar",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Öppnar OpenClient med sökfältet för konversation aktivt."
+ "value" : "Épingler"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Opens OpenClient with the conversation search field active."
+ "value" : "Fissa",
+ "state" : "translated"
}
}
}
},
- "Import Conversations" : {
+ "Help us fix it by describing the issue you encountered." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Importa conversazioni"
+ "value" : "Hjälp oss att åtgärda det genom att beskriva problemet du stötte på.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konversationen importieren"
+ "value" : "Aidez-nous à le corriger en décrivant le problème rencontré."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会話をインポート"
+ "value" : "Ayúdanos a solucionarlo describiendo el problema que encontraste."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Importar Conversas"
+ "value" : "Help ons het op te lossen door het probleem dat je bent tegengekomen te beschrijven.",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Importar conversaciones"
+ "value" : "Help us fix it by describing the issue you encountered."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gesprekken importeren"
+ "value" : "Hilf uns, das Problem zu beheben, indem du das aufgetretene Problem beschreibst.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εισαγωγή Συνομιλιών"
+ "value" : "Aiutaci a risolverlo descrivendo il problema riscontrato.",
+ "state" : "translated"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Importer les conversations"
+ "value" : "Βοηθήστε μας να το διορθώσουμε περιγράφοντας το πρόβλημα που αντιμετωπίσατε."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Importera konversationer"
+ "value" : "Ajude-nos a corrigir descrevendo o problema que encontrou."
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Import Conversations"
+ "value" : "発生した問題について説明して、修正にご協力ください。",
+ "state" : "translated"
}
}
}
},
- "Save to Photos" : {
- "comment" : "A label for a context menu item that saves an image to the user's photo library.",
+ "No Synchronized Data" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Salva in Foto"
+ "value" : "同期されたデータはありません",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "In Fotos speichern"
+ "value" : "Aucune donnée synchronisée"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "写真に保存"
+ "value" : "No Synchronized Data"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Guardar nas Fotografias"
+ "value" : "Nessun dato sincronizzato"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Guardar en Fotos"
+ "value" : "Geen gesynchroniseerde gegevens"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Opslaan in Foto's"
+ "value" : "Sem dados sincronizados"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αποθήκευση στις Φωτογραφίες"
+ "value" : "No hay datos sincronizados",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enregistrer dans Photos"
+ "value" : "Inga synkroniserade data"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Spara till Foton"
+ "value" : "Δεν υπάρχουν συγχρονισμένα δεδομένα"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Save to Photos"
+ "value" : "Keine synchronisierten Daten",
+ "state" : "translated"
}
}
}
},
- "Stop" : {
+ "You are a creative writing assistant. Help craft engaging stories, characters, dialogue, and descriptions. Offer imaginative ideas, vivid imagery, and compelling narrative structure tailored to the user's style and genre." : {
+ "comment" : "Description of the creative writing assistant role.",
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Interrompi"
+ "value" : "Sei un assistente di scrittura creativa. Aiuta a creare storie coinvolgenti, personaggi, dialoghi e descrizioni. Offri idee immaginative, immagini vivide e una struttura narrativa avvincente, adattata allo stile e al genere dell’utente.",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Stopp"
+ "value" : "Eres un asistente de escritura creativa. Ayuda a crear historias, personajes, diálogos y descripciones atractivas. Ofrece ideas imaginativas, imágenes vívidas y una estructura narrativa convincente adaptada al estilo y género del usuario."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "停止"
+ "value" : "You are a creative writing assistant. Help craft engaging stories, characters, dialogue, and descriptions. Offer imaginative ideas, vivid imagery, and compelling narrative structure tailored to the user's style and genre.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Parar"
+ "value" : "Du bist ein kreativer Schreibassistent. Hilf dabei, fesselnde Geschichten, Charaktere, Dialoge und Beschreibungen zu gestalten. Biete einfallsreiche Ideen, lebendige Bilder und eine überzeugende Erzählstruktur, die auf den Stil und das Genre des Nutzers zugeschnitten sind.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Detener"
+ "value" : "Vous êtes un assistant d’écriture créative. Aidez à concevoir des histoires captivantes, des personnages, des dialogues et des descriptions. Proposez des idées imaginatives, des images vivantes et une structure narrative convaincante adaptée au style et au genre de l’utilisateur."
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Stoppen"
+ "value" : "Du är en kreativ skrivassistent. Hjälp till att skapa engagerande berättelser, karaktärer, dialoger och beskrivningar. Erbjud fantasifulla idéer, levande bilder och en fängslande berättarstruktur anpassad efter användarens stil och genre.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διακοπή"
+ "value" : "あなたはクリエイティブライティングアシスタントです。魅力的な物語、キャラクター、対話、描写の作成を支援します。ユーザーのスタイルやジャンルに合わせて、想像力豊かなアイデア、生き生きとしたイメージ、説得力のある物語構成を提供します。",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Arrêter"
+ "value" : "Je bent een assistent voor creatief schrijven. Help bij het bedenken van boeiende verhalen, personages, dialogen en beschrijvingen. Bied fantasierijke ideeën, levendige beelden en een meeslepende verhaallijn die aansluit bij de stijl en het genre van de gebruiker."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Stoppa"
+ "value" : "És um assistente de escrita criativa. Ajuda a criar histórias envolventes, personagens, diálogos e descrições. Oferece ideias imaginativas, imagens vívidas e uma estrutura narrativa cativante adaptada ao estilo e género do utilizador.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Stop"
+ "value" : "Είστε βοηθός δημιουργικής γραφής. Βοηθήστε στη δημιουργία συναρπαστικών ιστοριών, χαρακτήρων, διαλόγων και περιγραφών. Προσφέρετε φανταστικές ιδέες, ζωντανές εικόνες και ελκυστική δομή αφήγησης προσαρμοσμένη στο ύφος και το είδος του χρήστη."
}
}
}
},
- "Edit Message" : {
- "comment" : "A label for the view that appears when editing a message.",
+ "Model" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modifica messaggio"
+ "value" : "Modelo",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nachricht bearbeiten"
+ "value" : "モデル"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メッセージを編集"
+ "value" : "Model",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Editar Mensagem"
+ "value" : "Modell",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Editar mensaje"
+ "value" : "Μοντέλο",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bericht bewerken"
+ "value" : "Modell"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modifier le message"
+ "value" : "Model"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Επεξεργασία μηνύματος"
+ "value" : "Modello",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Redigera meddelande"
+ "value" : "Modelo"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Edit Message"
+ "value" : "Modèle"
}
}
- }
+ },
+ "comment" : "A label for a memory item that was generated by the model."
},
- "%lld search tool(s) available on your server." : {
- "comment" : "A footer that shows the number of search tools available on the user's server. The argument is the number of search tools.",
+ "iCloud is unavailable" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "%lld strumento\/i di ricerca disponibili sul tuo server."
- }
- },
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld Suchwerkzeug(e) auf Ihrem Server verfügbar."
+ "value" : "iCloud ist nicht verfügbar",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サーバーに %lld 個の検索ツールが利用可能です。"
+ "value" : "iCloud is unavailable"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld ferramenta(s) de pesquisa disponíveis no seu servidor."
+ "value" : "iCloud non è disponibile",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld herramienta(s) de búsqueda disponibles en su servidor."
+ "value" : "Το iCloud δεν είναι διαθέσιμο"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld zoekhulpmiddel(en) beschikbaar op uw server."
+ "value" : "iCloud is niet beschikbaar"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld outil(s) de recherche disponible(s) sur votre serveur."
+ "value" : "iCloud est indisponible",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld διαθέσιμο(α) εργαλείο(α) αναζήτησης στον διακομιστή σας."
+ "value" : "iCloudは利用できません"
}
},
"sv" : {
+ "stringUnit" : {
+ "value" : "iCloud är inte tillgängligt",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld sökverktyg tillgängliga på din server."
+ "value" : "O iCloud está indisponível"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld search tool(s) available on your server."
+ "value" : "iCloud no está disponible"
}
}
}
},
- "Reset App Data" : {
- "comment" : "A confirmation alert that lets the user reset all app data.",
+ "No cloud changes will be written until required downloads finish." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Reimposta dati app"
+ "value" : "No cloud changes will be written until required downloads finish.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "App-Daten zurücksetzen"
+ "value" : "Cloud-Änderungen werden erst geschrieben, wenn die erforderlichen Downloads abgeschlossen sind.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アプリデータをリセット"
+ "value" : "Δεν θα καταγραφούν αλλαγές στο cloud μέχρι να ολοκληρωθούν οι απαιτούμενες λήψεις.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Repor Dados da App"
+ "value" : "No se escribirán cambios en la nube hasta que finalicen las descargas requeridas.",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Restablecer datos de la aplicación"
+ "value" : "Inga ändringar i molnet skrivs förrän nödvändiga nedladdningar är klara.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Appgegevens resetten"
+ "value" : "Er worden geen wijzigingen in de cloud opgeslagen totdat de vereiste downloads zijn voltooid.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επαναφορά δεδομένων εφαρμογής"
+ "value" : "Aucune modification du cloud ne sera écrite avant la fin des téléchargements requis."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Réinitialiser les données de l’application"
+ "value" : "Nessuna modifica al cloud verrà scritta finché i download richiesti non saranno terminati."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Återställ appdata"
+ "value" : "Não serão guardadas alterações na nuvem até que as transferências necessárias terminem."
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Reset App Data"
+ "value" : "必要なダウンロードが完了するまで、クラウドの変更は書き込まれません。",
+ "state" : "translated"
}
}
}
},
- "Configure your personal context and memory items to personalise model responses." : {
- "comment" : "A description of the personalization section.",
+ "Suggestions" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Configura il tuo contesto personale e gli elementi di memoria per personalizzare le risposte del modello."
+ "value" : "Suggesties"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konfigurieren Sie Ihre persönlichen Kontext- und Speicherobjekte, um die Modellantworten zu personalisieren."
+ "value" : "Προτάσεις"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "モデルの応答をパーソナライズするために、個人のコンテキストとメモリ項目を設定してください。"
+ "value" : "Suggestions"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Configure o seu contexto pessoal e itens de memória para personalizar as respostas do modelo."
+ "value" : "Sugerencias"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Configura tu contexto personal y elementos de memoria para personalizar las respuestas del modelo."
+ "value" : "Suggestions",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Configureer je persoonlijke context- en geheugenitems om modelantwoorden te personaliseren."
+ "value" : "提案"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Configurez votre contexte personnel et vos éléments de mémoire pour personnaliser les réponses du modèle."
+ "value" : "Sugestões",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαμορφώστε το προσωπικό σας πλαίσιο και τα στοιχεία μνήμης για να εξατομικεύσετε τις απαντήσεις του μοντέλου."
+ "value" : "Förslag",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konfigurera din personliga kontext och minnesobjekt för att anpassa modellens svar."
+ "value" : "Suggerimenti"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Configure your personal context and memory items to personalize model responses."
+ "value" : "Vorschläge",
+ "state" : "translated"
}
}
}
},
- "Deletes this item from iCloud and all synchronized devices. This action cannot be undone." : {
+ "Server Configuration Wasn't Saved" : {
+ "comment" : "A message displayed when the user's server settings weren't saved.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina questo elemento da iCloud e da tutti i dispositivi sincronizzati. Questa azione non può essere annullata."
+ "value" : "No se guardó la configuración del servidor"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Löscht dieses Objekt aus iCloud und von allen synchronisierten Geräten. Diese Aktion kann nicht rückgängig gemacht werden."
+ "value" : "Η διαμόρφωση του διακομιστή δεν αποθηκεύτηκε",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "この項目をiCloudおよび同期済みのすべてのデバイスから削除します。この操作は取り消せません。"
+ "value" : "Serverkonfigurationen sparades inte",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elimina este item do iCloud e de todos os dispositivos sincronizados. Esta ação não pode ser anulada."
+ "value" : "Server Configuration Wasn't Saved",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elimina este elemento de iCloud y de todos los dispositivos sincronizados. Esta acción no se puede deshacer."
+ "value" : "La configuration du serveur n’a pas été enregistrée",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verwijdert dit item uit iCloud en alle gesynchroniseerde apparaten. Deze actie kan niet ongedaan worden gemaakt."
+ "value" : "La configurazione del server non è stata salvata",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supprime cet élément d’iCloud et de tous les appareils synchronisés. Cette action est irréversible."
+ "value" : "サーバー設定を保存できませんでした"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαγράφει αυτό το στοιχείο από το iCloud και όλες τις συγχρονισμένες συσκευές. Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
+ "value" : "Serverkonfiguration wurde nicht gespeichert",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Raderar detta objekt från iCloud och alla synkroniserade enheter. Åtgärden kan inte ångras."
+ "value" : "Serverconfiguratie is niet opgeslagen",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deletes this item from iCloud and all synchronized devices. This action cannot be undone."
+ "value" : "A configuração do servidor não foi guardada"
}
}
}
},
- "Saving a memory..." : {
- "comment" : "A message displayed when saving a memory.",
+ "Delete %@?" : {
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Salvataggio di un ricordo..."
+ "value" : "Eliminare %@?"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Speichere eine Erinnerung …"
+ "value" : "¿Eliminar %@?"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メモリーを保存中…"
+ "value" : "%@ löschen?",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A guardar uma memória..."
+ "value" : "Supprimer %@ ?"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Guardando un recuerdo..."
+ "value" : "Apagar %@?",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geheugen opslaan…"
+ "value" : "Delete %@?"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αποθήκευση μνήμης..."
+ "value" : "%@を削除しますか?"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enregistrement d’un souvenir…"
+ "value" : "Radera %@?"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sparar ett minne..."
+ "value" : "%@ verwijderen?",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Saving a memory..."
+ "value" : "Διαγραφή του %@;"
}
}
}
},
- "Help" : {
- "comment" : "The title of the help screen.",
+ "The app icon could not be changed. Please try again." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aiuto"
+ "value" : "Das App-Symbol konnte nicht geändert werden. Bitte versuchen Sie es erneut."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hilfe"
+ "value" : "Non è stato possibile modificare l’icona dell’app. Riprova."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ヘルプ"
+ "value" : "アプリアイコンを変更できませんでした。もう一度お試しください。",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ajuda"
+ "value" : "Não foi possível alterar o ícone da aplicação. Tente novamente.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ayuda"
+ "value" : "No se ha podido cambiar el icono de la app. Inténtalo de nuevo."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Help"
+ "value" : "Δεν ήταν δυνατή η αλλαγή του εικονιδίου της εφαρμογής. Δοκιμάστε ξανά."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aide"
+ "value" : "Appikonen kunde inte ändras. Försök igen."
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Βοήθεια"
+ "value" : "Het appicoon kon niet worden gewijzigd. Probeer het opnieuw.",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hjälp"
+ "value" : "The app icon could not be changed. Please try again.",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Help"
+ "value" : "L’icône de l’app n’a pas pu être modifiée. Veuillez réessayer."
}
}
- }
- },
- "·" : {
- "shouldTranslate" : false
+ },
+ "comment" : "Error message displayed when the app icon cannot be changed."
},
- "This chat is not saved or added to memory." : {
- "comment" : "A description of a private chat.",
+ "App Data Reset Failed" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Questa chat non viene salvata né aggiunta alla memoria."
+ "value" : "アプリデータのリセットに失敗しました"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dieser Chat wird nicht gespeichert oder im Speicher abgelegt."
+ "value" : "Zurücksetzen der App-Daten fehlgeschlagen",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "このチャットは保存されず、記憶にも追加されません。"
+ "value" : "Resetten van appgegevens mislukt"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Esta conversa não é guardada nem adicionada à memória."
+ "value" : "Återställning av appdata misslyckades",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Este chat no se guarda ni se añade a la memoria."
+ "value" : "Falha ao repor os dados da aplicação"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deze chat wordt niet opgeslagen of toegevoegd aan het geheugen."
+ "value" : "Η επαναφορά των δεδομένων της εφαρμογής απέτυχε"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αυτή η συνομιλία δεν αποθηκεύεται ούτε προστίθεται στη μνήμη."
+ "value" : "Ripristino dei dati dell’app non riuscito",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cette conversation n’est pas enregistrée ni ajoutée à la mémoire."
+ "value" : "App Data Reset Failed"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Den här chatten sparas inte eller läggs till i minnet."
+ "value" : "Échec de la réinitialisation des données de l’appuite"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "This chat is not saved or stored in memory."
+ "value" : "No se pudo restablecer los datos de la app",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A title for a view that indicates that app data reset failed."
},
- "Unable to Load MCP Tools" : {
- "comment" : "A title for a view that indicates that MCP tools cannot be loaded.",
+ "Sync" : {
+ "comment" : "A heading for the sync settings.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossibile caricare gli strumenti MCP"
+ "value" : "Synchronisation",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-Tools konnten nicht geladen werden"
+ "value" : "Synchronisation"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPツールを読み込めませんサム、】【analysis (empty) "
+ "value" : "Sincronizar"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível carregar as ferramentas MCP"
+ "value" : "Sincronización"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pueden cargar las herramientas de MCP"
+ "value" : "Συγχρονισμός"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kan MCP-tools niet laden"
+ "value" : "Synchroniseren",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossible de charger les outils MCP"
+ "value" : "Synkronisering"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αδυναμία φόρτωσης εργαλείων MCP"
+ "value" : "Sync",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kunde inte läsa in MCP-verktyg"
+ "value" : "同期"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Unable to Load MCP Tools"
+ "value" : "Sincronizzazione"
}
}
}
},
- "tag.vision" : {
- "comment" : "Label for the \"Vision\" capability.",
+ "Disable Web Search" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vision"
+ "value" : "Webzoekfunctie uitschakelen"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vision"
+ "value" : "Desactivar búsqueda web",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vision"
+ "value" : "Απενεργοποίηση Αναζήτησης Ιστού",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vision"
+ "value" : "ウェブ検索を無効にする"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vision"
+ "value" : "Websuche deaktivieren",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vision"
+ "value" : "Disattiva ricerca web",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vision"
+ "value" : "Disable Web Search",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vision"
+ "value" : "Inaktivera webbsökning"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vision"
+ "value" : "Desativar Pesquisa Web",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vision"
+ "value" : "Désactiver la recherche Web"
}
}
- }
+ },
+ "comment" : "A button that disables the web search feature."
},
- "Tags" : {
- "comment" : "A heading displayed above the user's tags.",
+ "Cyan" : {
+ "comment" : "Name of the color cyan.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tag"
+ "value" : "Cyan"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tags"
+ "value" : "Cyan"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "タグ"
+ "value" : "Cian"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Etiquetas"
+ "value" : "Cyaan"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Etiquetas"
+ "value" : "Cyan",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tags"
+ "value" : "Cyan"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ετικέτες"
+ "value" : "Ciano",
+ "state" : "translated"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Étiquettes"
+ "value" : "Κυανό"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Taggar"
+ "value" : "Ciano"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tags"
+ "value" : "シアン",
+ "state" : "translated"
}
}
}
},
- "Add" : {
- "comment" : "A button that adds a tag.",
+ "Profile synchronization needs a decision" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aggiungi"
+ "value" : "Synkronisering av profilen kräver ett beslut"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hinzufügen"
+ "value" : "La synchronisation du profil nécessite une décision",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "追加"
+ "value" : "La sincronización del perfil requiere una decisión",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Adicionar"
+ "value" : "Voor profilsynchronisatie is een beslissing nodig"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Añadir"
+ "value" : "Profile synchronization needs a decision"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toevoegen"
+ "value" : "Für die Profilsynchronisierung ist eine Entscheidung erforderlich"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσθήκη"
+ "value" : "È necessario decidere sulla sincronizzazione del profilo"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ajouter"
+ "value" : "Απαιτείται απόφαση για τον συγχρονισμό του προφίλ"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Lägg till"
+ "value" : "A sincronização do perfil requer uma decisão",
+ "state" : "translated"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Add"
+ "value" : "プロフィールの同期には決定が必要です"
}
}
}
},
- "Edit & Resend" : {
- "comment" : "A label for editing and resending a chat message.",
+ "Image" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modifica e rinvia"
+ "value" : "画像"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bearbeiten & erneut senden"
+ "value" : "Bild"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "編集して再送信"
+ "value" : "Εικόνα",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Editar e Reenviar"
+ "value" : "Afbeelding"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Editar y reenviar"
+ "value" : "Bild"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bewerken & Opnieuw verzenden"
+ "value" : "Imagen"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modifier et renvoyer"
+ "value" : "Image"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επεξεργασία & Αποστολή ξανά"
+ "value" : "Immagine"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Redigera och skicka igen"
+ "value" : "Imagem"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Edit & Resend"
+ "value" : "Image"
}
}
}
},
- "No Model" : {
+ "Today" : {
+ "comment" : "Title of a conversation section for conversations from today.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nessun modello"
+ "value" : "Heute",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kein Modell"
+ "value" : "Aujourd’hui"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "モデルなし"
+ "value" : "Hoy"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sem modelo"
+ "value" : "Vandaag"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sin modelo"
+ "value" : "Oggi",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geen model"
+ "value" : "今日"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aucun modèle"
+ "value" : "Hoje"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Χωρίς μοντέλο"
+ "value" : "Idag",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ingen modell"
+ "value" : "Today"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No Model"
+ "value" : "Σήμερα"
}
}
}
},
- "Help me with my code" : {
+ "Yellow" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aiutami con il mio codice"
+ "value" : "Amarelo"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hilf mir bei meinem Code"
+ "value" : "Jaune",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "コードの助けをしてください"
+ "value" : "Amarillo"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ajuda-me com o meu código"
+ "value" : "Yellow"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ayúdame con mi código"
+ "value" : "Κίτρινο",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Help me met mijn code"
+ "value" : "Gelb",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Βοήθησέ με με τον κώδικά μου"
+ "value" : "黄色",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aide-moi avec mon code"
+ "value" : "Geel"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hjälp mig med min kod"
+ "value" : "Gul",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Help me with my code"
+ "value" : "Giallo"
}
}
- }
+ },
+ "comment" : "Name of the color yellow."
},
- "Warning" : {
+ "Ready to synchronize" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Avviso"
+ "value" : "Prêt à synchroniser"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Warnung"
+ "value" : "Pronto per la sincronizzazione"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "警告"
+ "value" : "Ready to synchronize"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aviso"
+ "value" : "Klaar om te synchroniseren"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Advertencia"
+ "value" : "Bereit zur Synchronisierung",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Waarschuwing"
+ "value" : "Listo para sincronizar"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Προειδοποίηση"
+ "value" : "Klar att synkronisera",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Avertissement"
+ "value" : "同期の準備完了"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Varning"
+ "value" : "Pronto para sincronizar"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Warning"
+ "value" : "Έτοιμο για συγχρονισμό"
}
}
}
},
- "Enter a URL such as `openclient:\/\/chat?text=Summarise this`." : {
- "comment" : "Step 3 in the process of creating a shortcut to open the OpenClient app with a specific URL.",
+ "Import Conversations" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inserisci un URL come `openclient:\/\/chat?text=Summarise this`"
+ "value" : "会話をインポート"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geben Sie eine URL ein, z. B. `openclient:\/\/chat?text=Summarise this`."
+ "value" : "Gesprekken importeren",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "`openclient:\/\/chat?text=Summarise this` のようなURLを入力してください"
+ "value" : "Importer les conversations"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Introduza um URL como `openclient:\/\/chat?text=Summarise this`"
+ "value" : "Import Conversations"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Introduce una URL como `openclient:\/\/chat?text=Summarise this`."
+ "value" : "Importa conversazioni"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voer een URL in zoals `openclient:\/\/chat?text=Summarise this`."
+ "value" : "Importar conversaciones",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εισαγάγετε μια διεύθυνση URL όπως `openclient:\/\/chat?text=Summarise this`"
+ "value" : "Importar Conversas"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Entrez une URL telle que `openclient:\/\/chat?text=Summarise this`."
+ "value" : "Importera konversationer",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ange en URL som `openclient:\/\/chat?text=Summarise this`"
+ "value" : "Εισαγωγή Συνομιλιών"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Enter a URL such as `openclient:\/\/chat?text=Summarise this`"
+ "value" : "Konversationen importieren",
+ "state" : "translated"
}
}
}
},
- "Organise your conversations" : {
- "comment" : "A label displayed in the chat interface that allows the user to organise their conversations.",
+ "Arctic" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Organizza le tue conversazioni"
+ "value" : "Arctic"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Organisiere deine Unterhaltungen"
+ "value" : "Artico",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会話を整理する"
+ "value" : "Arctic"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Organize as suas conversas"
+ "value" : "Ártico",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Organiza tus conversaciones"
+ "value" : "Ártico"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Organiseer je gesprekken"
+ "value" : "Αρκτική",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Οργάνωσε τις συνομιλίες σου"
+ "value" : "Arctic"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Organisez vos conversations"
+ "value" : "Arctic"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Organisera dina konversationer"
+ "value" : "Arctique",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Organize your conversations"
+ "value" : "Arctic"
}
}
- }
+ },
+ "comment" : "Name of the icon theme."
},
- "%lld messages excluded from this request" : {
- "comment" : "A message indicating that a certain number of messages have been excluded from a request. The argument is the number of messages that have been excluded.",
+ "Getting the current date and time..." : {
+ "comment" : "A message displayed when the user is requesting the current date and time.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld messaggi esclusi da questa richiesta"
+ "value" : "Huidige datum en tijd ophalen...",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld Nachrichten von dieser Anfrage ausgeschlossen"
+ "value" : "Obteniendo la fecha y hora actuales...",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "このリクエストから %lld 件のメッセージが除外されました"
+ "value" : "Obtention de la date et de l’heure actuelles…",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld mensagens excluídas deste pedido"
+ "value" : "Aktuelles Datum und aktuelle Uhrzeit werden abgerufen…",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld mensajes excluidos de esta solicitud"
+ "value" : "現在の日付と時刻を取得中…",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld berichten uitgesloten van dit verzoek"
+ "value" : "Getting the current date and time..."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld μηνύματα εξαιρέθηκαν από αυτό το αίτημα"
+ "value" : "A obter a data e a hora atuais...",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld messages exclus de cette requête"
+ "value" : "Hämtar aktuellt datum och aktuell tid...",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld meddelanden uteslutna från denna förfrågan"
+ "value" : "Recupero della data e dell’ora correnti...",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld messages excluded from this request"
+ "value" : "Λήψη της τρέχουσας ημερομηνίας και ώρας…",
+ "state" : "translated"
}
}
}
},
- "No conversations yet" : {
- "comment" : "A message displayed when the user has no conversations.",
+ "Start Chatting" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nessuna conversazione ancora"
+ "value" : "Ξεκινήστε τη συνομιλία",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Noch keine Unterhaltungen vorhanden"
+ "value" : "Start Chatting"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "まだ会話はありません"
+ "value" : "Comenzar a chatear"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ainda sem conversas"
+ "value" : "Commencer la discussion"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No hay conversaciones aún"
+ "value" : "Begin met chatten"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nog geen gesprekken"
+ "value" : "Chat starten"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν υπάρχουν συνομιλίες ακόμα"
+ "value" : "Börja chatta"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucune conversation pour le moment"
+ "value" : "チャットを始める",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga konversationer än så länge"
+ "value" : "Inizia a chattare"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No conversations yet"
+ "value" : "Iniciar Conversa"
}
}
}
},
- "This iCloud data format is not supported by this version of the app." : {
+ "Update" : {
+ "comment" : "A button that updates the app.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Questo formato di dati iCloud non è supportato da questa versione dell’app."
+ "value" : "Actualizar"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dieses iCloud-Datenformat wird von dieser App-Version nicht unterstützt."
+ "value" : "Bijwerken"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "このiCloudデータ形式は、このバージョンのアプリではサポートされていません。"
+ "value" : "Uppdatera"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Este formato de dados do iCloud não é compatível com esta versão da app."
+ "value" : "Aggiorna"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esta versión de la app no admite este formato de datos de iCloud."
+ "value" : "Mettre à jour"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deze iCloud-gegevensindeling wordt niet ondersteund door deze versie van de app."
+ "value" : "Update",
+ "state" : "translated"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ce format de données iCloud n’est pas pris en charge par cette version de l’app."
+ "value" : "Ενημέρωση",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αυτή η μορφή δεδομένων iCloud δεν υποστηρίζεται από αυτήν την έκδοση της εφαρμογής."
+ "value" : "Atualizar"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Det här iCloud-dataformatet stöds inte av den här versionen av appen."
+ "value" : "アップデート",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "This iCloud data format is not supported by this version of the app."
+ "value" : "Aktualisieren",
+ "state" : "translated"
}
}
}
},
- "Send" : {
+ "In progress" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Invia"
+ "value" : "En curso",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Senden"
+ "value" : "Σε εξέλιξη"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "送信"
+ "value" : "En cours"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enviar"
+ "value" : "In progress"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Enviar"
+ "value" : "Pågår",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verzenden"
+ "value" : "In corso",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αποστολή"
+ "value" : "進行中"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Envoyer"
+ "value" : "In Bearbeitung"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Skicka"
+ "value" : "Bezig",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Send"
+ "value" : "Em curso",
+ "state" : "translated"
}
}
}
},
- "Fork from here" : {
- "comment" : "A label for a button that forks a message.",
+ "Sent when a response finishes while the app is in the background." : {
+ "comment" : "A description of the notification that is sent when a response finishes while the app is in the background.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Crea fork da qui"
+ "value" : "Sent when a response completes while the app is in the background.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Skickas när ett svar slutförs medan appen är i bakgrunden.",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abzweigen von hier"
+ "value" : "Envoyé lorsqu’une réponse se termine alors que l’application est en arrière-plan."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ここからフォーク"
+ "value" : "アプリがバックグラウンドにある間に応答が完了したときに送信されます。",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Criar bifurcação daqui"
+ "value" : "Enviado quando uma resposta termina enquanto a aplicação está em segundo plano.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bifurcar desde aquí"
+ "value" : "Enviado cuando una respuesta termina mientras la aplicación está en segundo plano.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vertakking vanaf hier"
+ "value" : "Inviato quando una risposta termina mentre l’app è in background."
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Créer une branche ici"
+ "value" : "Verzonden wanneer een reactie is voltooid terwijl de app op de achtergrond draait.",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δημιουργία αντιγράφου από εδώ"
- }
- },
- "sv" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Gaffla härifrån"
+ "value" : "Αποστέλλεται όταν ολοκληρώνεται μια απάντηση ενώ η εφαρμογή είναι στο παρασκήνιο.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fork from here"
+ "value" : "Gesendet, wenn eine Antwort abgeschlossen wird, während die App im Hintergrund läuft."
}
}
}
},
- "Estimated cost" : {
- "comment" : "A label for the estimated cost of a conversation.",
+ "iCloud Unavailable" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Costo stimato"
+ "value" : "iCloud Unavailable"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geschätzte Kosten"
+ "value" : "iCloud är inte tillgängligt",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "推定費用"
+ "value" : "iCloud indisponible"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Custo estimado"
+ "value" : "iCloud indisponível"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Costo estimado"
+ "value" : "iCloudを利用できません"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geschatte kosten"
+ "value" : "iCloud no disponible",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Coût estimé"
+ "value" : "iCloud non disponibile"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εκτιμώμενο κόστος"
+ "value" : "iCloud niet beschikbaar",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beräknad kostnad"
+ "value" : "Το iCloud δεν είναι διαθέσιμο"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Estimated cost"
+ "value" : "iCloud nicht verfügbar",
+ "state" : "translated"
}
}
}
},
- "$%.4f \/ 1K tokens" : {
- "shouldTranslate" : false,
- "comment" : "A label that shows the cost of input in USD per 1K tokens."
- },
- "Unsupported data format" : {
+ "Indigo" : {
+ "comment" : "Name of the color indigo.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Formato dati non supportato"
+ "value" : "Indigo"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nicht unterstütztes Datenformat"
+ "value" : "Indigo"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サポートされていないデータ形式"
+ "value" : "Indaco"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Formato de dados não suportado"
+ "value" : "Indigo",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Formato de datos no compatible"
+ "value" : "Ινδικό"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Niet-ondersteunde gegevensindeling"
+ "value" : "Índigo"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μη υποστηριζόμενη μορφή δεδομένων"
+ "value" : "Índigo"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Format de données non pris en charge"
+ "value" : "インディゴ",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Datformatet stöds inte"
+ "value" : "Indigo",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Unsupported data format"
+ "value" : "Indigo"
}
}
}
},
- "1 tool available" : {
- "comment" : "A description of the number of available tools.",
+ "Turn on iCloud synchronization before deleting synchronized data." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 strumento disponibile"
+ "value" : "Activez la synchronisation iCloud avant de supprimer les données synchronisées."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 Tool verfügbar"
+ "value" : "Attiva la sincronizzazione iCloud prima di eliminare i dati sincronizzati."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "利用可能なツール 1 個"
+ "value" : "Aktiviere die iCloud-Synchronisierung, bevor du synchronisierte Daten löschst."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 ferramenta disponível"
+ "value" : "Activa la sincronización de iCloud antes de eliminar los datos sincronizados."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 herramienta disponible"
+ "value" : "同期データを削除する前に、iCloud同期をオンにしてください。"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 tool beschikbaar"
+ "value" : "Turn on iCloud synchronization before deleting synchronized data."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 διαθέσιμο εργαλείο"
+ "value" : "Ative a sincronização do iCloud antes de apagar os dados sincronizados.",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 outil disponible"
+ "value" : "Aktivera iCloud-synkronisering innan du raderar synkroniserade data."
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 verktyg tillgängligt"
+ "value" : "Schakel iCloud-synchronisatie in voordat je gesynchroniseerde gegevens verwijdert."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 tool available"
+ "value" : "Ενεργοποιήστε τον συγχρονισμό iCloud πριν διαγράψετε τα συγχρονισμένα δεδομένα."
}
}
}
},
- "The iCloud account changed during synchronization." : {
- "comment" : "Error description when the iCloud account changes during synchronization.",
+ "Deletion failed for %@" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "L’account iCloud è cambiato durante la sincronizzazione."
+ "value" : "Falha ao eliminar %@",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Der iCloud-Account wurde während der Synchronisierung geändert."
+ "value" : "Échec de la suppression de %@",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期中にiCloudアカウントが変更されました。"
+ "value" : "No se pudo eliminar %@",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A conta do iCloud mudou durante a sincronização."
+ "value" : "Deletion failed for %@"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La cuenta de iCloud cambió durante la sincronización."
+ "value" : "Η διαγραφή απέτυχε για το %@"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het iCloud-account is tijdens de synchronisatie gewijzigd."
+ "value" : "Löschen von %@ fehlgeschlagen"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ο λογαριασμός iCloud άλλαξε κατά τον συγχρονισμό."
+ "value" : "%@の削除に失敗しました",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le compte iCloud a changé pendant la synchronisation."
+ "value" : "Verwijderen van %@ mislukt",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-kontot ändrades under synkroniseringen."
+ "value" : "Det gick inte att radera %@",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The iCloud account changed during synchronization."
+ "value" : "Eliminazione non riuscita per %@",
+ "state" : "translated"
}
}
}
},
- "Are you sure you want to delete this conversation? This action cannot be undone." : {
- "comment" : "A confirmation dialog message for deleting a conversation.",
+ "Your server is ready. Let's start a conversation." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sei sicuro di voler eliminare questa conversazione? Questa azione non può essere annullata."
+ "value" : "Votre serveur est prêt. Commençons une conversation.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Möchten Sie diese Unterhaltung wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden."
+ "value" : "Ihr Server ist bereit. Beginnen wir ein Gespräch.",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "この会話を削除してもよろしいですか?この操作は元に戻せません。"
+ "value" : "Je server is klaar. Laten we een gesprek beginnen.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tem a certeza de que pretende eliminar esta conversa? Esta ação não pode ser desfeita."
+ "value" : "Ο διακομιστής σας είναι έτοιμος. Ας ξεκινήσουμε μια συνομιλία.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "¿Seguro que quieres eliminar esta conversación? Esta acción no se puede deshacer."
+ "value" : "O seu servidor está pronto. Vamos começar uma conversa.",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Weet u zeker dat u dit gesprek wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt."
+ "value" : "Your server is ready. Let's start a conversation.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή τη συνομιλία; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
+ "value" : "Il tuo server è pronto. Iniziamo una conversazione.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voulez-vous vraiment supprimer cette conversation ? Cette action est irréversible."
+ "value" : "サーバーの準備ができました。会話を始めましょう。",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Är du säker på att du vill radera den här konversationen? Denna åtgärd kan inte ångras."
+ "value" : "Din server är redo. Låt oss börja en konversation."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Are you sure you want to delete this conversation? This action cannot be undone."
+ "value" : "Tu servidor está listo. Comencemos una conversación."
}
}
- }
+ },
+ "comment" : "A description of the onboarding screen when the server is ready."
},
- "Cyan" : {
- "comment" : "Name of the color cyan.",
+ "Context Window" : {
+ "comment" : "A section that displays the maximum number of tokens that can be processed in a single request.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ciano"
+ "value" : "Context Window"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cyan"
+ "value" : "Παράθυρο Συμφραζομένων"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "シアン"
+ "value" : "Kontextfenster"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ciano"
+ "value" : "Kontextfönster"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cian"
+ "value" : "Janela de Contexto"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cyaan"
+ "value" : "Contextvenster",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Κυανό"
+ "value" : "Finestra di contesto",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cyan"
+ "value" : "コンテキストウィンドウ"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cyan"
+ "value" : "Fenêtre de contexte",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cyan"
+ "value" : "Ventana de contexto"
}
}
}
},
- "Name" : {
- "comment" : "A label displayed above the user's name.",
+ "Connect Your Server" : {
+ "comment" : "A heading for the server configuration step of the onboarding flow.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nome"
+ "value" : "Connetti il tuo server"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Name"
+ "value" : "Conecta tu servidor",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "名前"
+ "value" : "Connect Your Server"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nome"
+ "value" : "Connectez votre serveur",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nombre"
+ "value" : "Verbinden Sie Ihren Server",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Naam"
+ "value" : "Συνδέστε τον διακομιστή σας"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nom"
+ "value" : "Verbind uw server",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Όνομα"
+ "value" : "Anslut din server",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Namn"
+ "value" : "サーバーを接続する"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Name"
+ "value" : "Ligue o Seu Servidor"
}
}
}
},
- "Suggestions" : {
+ "No Templates" : {
+ "comment" : "A title that describes the absence of templates.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suggerimenti"
+ "value" : "テンプレートなし",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vorschläge"
+ "value" : "Keine Vorlagen",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "提案"
+ "value" : "Geen sjablonen",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sugestões"
+ "value" : "Sin plantillas"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sugerencias"
+ "value" : "Inga mallar"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggesties"
+ "value" : "Χωρίς Πρότυπα"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suggestions"
+ "value" : "Aucun modèle",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προτάσεις"
+ "value" : "Nessun modello"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Förslag"
+ "value" : "Sem Modelos"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggestions"
+ "value" : "No Templates"
}
}
}
},
- "Estimated context" : {
- "comment" : "A label that describes the context usage.",
+ "Running %@..." : {
+ "comment" : "A label indicating that a tool is currently running. The argument is the name of the tool.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contesto stimato"
+ "value" : "Esecuzione di %@..."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geschätzter Kontext"
+ "value" : "Ejecutando %@...",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "推定コンテキスト"
+ "value" : "Running %@…",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contexto estimado"
+ "value" : "Exécution de %@…"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Contexto estimado"
+ "value" : "%@ wird ausgeführt …",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geschatte context"
+ "value" : "%@を実行中…"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εκτιμώμενο πλαίσιο"
+ "value" : "A executar %@...",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contexte estimé"
+ "value" : "Kör %@..."
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Uppskattad kontext"
+ "value" : "%@ wordt uitgevoerd..."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Estimated context"
+ "value" : "Εκτελείται το %@...",
+ "state" : "translated"
}
}
}
},
- "Continue your latest chat" : {
- "comment" : "Title of a placeholder conversation.",
+ "Very creative" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Continua la tua ultima chat"
+ "value" : "Very creative"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Führe deinen letzten Chat fort"
+ "value" : "Mycket kreativ"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "最新のチャットを続ける"
+ "value" : "Molto creativo",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Continue a sua última conversa"
+ "value" : "Muito criativo",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Continúa tu último chat"
+ "value" : "Très créatif"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ga door met je laatste gesprek"
+ "value" : "とても創造的",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συνέχισε την τελευταία σου συνομιλία"
+ "value" : "Zeer creatief"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Poursuivre votre dernière conversation"
+ "value" : "Muy creativo",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fortsätt din senaste chatt"
+ "value" : "Sehr kreativ"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Continue your latest chat"
+ "value" : "Πολύ δημιουργικό"
}
}
}
},
- "Comments" : {
+ "Approximate cost of this conversation based on token usage and model pricing." : {
+ "comment" : "A description of the cost of a conversation.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Commenti"
+ "value" : "Custo aproximado desta conversa com base no uso de tokens e preços do modelo."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kommentare"
+ "value" : "Approximate cost of this conversation based on token usage and model pricing."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "コメント"
+ "value" : "Ungefärlig kostnad för denna konversation baserat på tokenanvändning och modellpriser."
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Comentários"
+ "value" : "Coût approximatif de cette conversation basé sur l’utilisation des tokens et la tarification du modèle."
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Comentarios"
+ "value" : "Geschatte kosten van dit gesprek op basis van tokengebruik en modelprijzen.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reacties"
+ "value" : "Ungefähre Kosten dieses Gesprächs basierend auf Tokenverbrauch und Modellpreisen."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Σχόλια"
+ "value" : "Costo approssimativo di questa conversazione basato sull’uso dei token e sul prezzo del modello."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Commentaires"
+ "value" : "この会話の概算コスト(トークン使用量とモデル料金に基づく)",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kommentarer"
+ "value" : "Προσεγγιστικό κόστος αυτής της συνομιλίας βάσει χρήσης tokens και τιμολόγησης μοντέλου."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Comments"
+ "value" : "Costo aproximado de esta conversación basado en el uso de tokens y la tarifa del modelo.",
+ "state" : "translated"
}
}
}
},
- "tag.thinking" : {
- "comment" : "Label for a capability that allows the LLM to think and generate complex responses.",
+ "Existing tags keep their assigned color." : {
+ "comment" : "A description of the behavior of existing tags.",
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Thinking"
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Thinking"
+ "value" : "Vorhandene Tags behalten ihre zugewiesene Farbe."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Thinking"
+ "value" : "Les tags existants conservent leur couleur attribuée."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Thinking"
+ "value" : "Bestaande tags behouden hun toegewezen kleur.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Thinking"
+ "value" : "Las etiquetas existentes mantienen su color asignado."
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Thinking"
+ "value" : "I tag esistenti mantengono il colore assegnato.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Thinking"
+ "value" : "既存のタグは割り当てられた色を保持します。"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Thinking"
+ "value" : "As etiquetas existentes mantêm a sua cor atribuída.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Thinking"
+ "value" : "Befintliga taggar behåller sin tilldelade färg.",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Thinking"
+ "value" : "Existing tags keep their assigned color",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Οι υπάρχες ετικέτες διατηρούν το εκχωρημένο τους χρώμα.",
+ "state" : "translated"
}
}
}
},
- "Potential Impact" : {
+ "New Template" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "value" : "Impatto potenziale",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "New Template"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "value" : "Mögliche Auswirkungen",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "新しいテンプレート"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "value" : "潜在的な影響",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Nuovo Modello"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impacto potencial"
+ "value" : "Nueva plantilla"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "value" : "Impacto potencial",
+ "value" : "Novo Modelo",
"state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "value" : "Mogelijke impact",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Neue Vorlage"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "value" : "Impact potentiel",
+ "value" : "Νέο Πρότυπο",
"state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Πιθανός αντίκτυπος"
+ "value" : "Nouveau modèle",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "value" : "Potentiell påverkan",
+ "value" : "Ny mall",
"state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Potential Impact"
+ "value" : "Nieuwe sjabloon"
}
}
},
- "comment" : "A label that describes the potential impact of a request."
+ "comment" : "A title for a view that creates or edits a prompt template."
},
- "Arguments" : {
- "comment" : "A label displayed above the arguments of a request.",
+ "You are a concise summarizer. Extract the key points from any text the user provides. Present summaries in clear bullet points. Focus on the most important information and omit redundant details." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Argomenti"
+ "value" : "- Concise summarizer \n- Extracts key points from user-provided text \n- Presents summaries in clear bullet points \n- Focuses on most important information \n- Omits redundant details"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Argumente"
+ "value" : "Du bist ein prägnanter Zusammenfasser. Extrahiere die wichtigsten Punkte aus jedem vom Nutzer bereitgestellten Text. Präsentiere Zusammenfassungen in klaren Aufzählungspunkten. Konzentriere dich auf die wichtigsten Informationen und lasse redundante Details weg.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "引数"
+ "value" : "Sei un riassuntore conciso. Estrai i punti chiave da qualsiasi testo fornito dall’utente. Presenta i riassunti in elenchi puntati chiari. Concentrati sulle informazioni più importanti ed elimina i dettagli ridondanti."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Argumentos"
+ "value" : "Είστε συνοπτικός περιληπτής. Εξάγετε τα βασικά σημεία από οποιοδήποτε κείμενο παρέχει ο χρήστης. Παρουσιάζετε τις περιλήψεις με σαφή κουκκίδες. Επικεντρωθείτε στις πιο σημαντικές πληροφορίες και παραλείψτε τις επαναλαμβανόμενες λεπτομέρειες.",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Argumentos"
+ "value" : "Je bent een beknopte samenvatter. Haal de belangrijkste punten uit elke tekst die de gebruiker aanlevert. Presenteer samenvattingen in duidelijke opsommingstekens. Richt je op de belangrijkste informatie en laat overbodige details weg."
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Argumenten"
+ "value" : "Vous êtes un résumé concis. Extrait les points clés de tout texte fourni par l’utilisateur. Présente les résumés sous forme de puces claires. Concentre-toi sur l’information la plus importante et omets les détails redondants."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Παράμετροι"
+ "value" : "簡潔な要約者です。 \nユーザーが提供するテキストから重要なポイントを抽出します。 \n要約は明確な箇条書きで提示します。 \n最も重要な情報に焦点を当て、冗長な詳細は省きます。",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Arguments"
+ "value" : "Du är en kortfattad sammanfattare. Extrahera nyckelpunkterna från all text användaren tillhandahåller. Presentera sammanfattningar i tydliga punktlistor. Fokusera på den viktigaste informationen och utelämna överflödiga detaljer.",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Argument"
+ "value" : "És um resumidor conciso. Extrai os pontos-chave de qualquer texto fornecido pelo utilizador. Apresenta os resumos em tópicos claros. Foca-te na informação mais importante e omite detalhes redundantes."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Arguments"
+ "value" : "Eres un resumidor conciso. Extrae los puntos clave de cualquier texto que el usuario proporcione. Presenta resúmenes en viñetas claras. Enfócate en la información más importante y omite detalles redundantes."
}
}
- }
+ },
+ "comment" : "Description of the summarizer assistant."
},
- "Maximum number of tokens in the response." : {
+ "Transcribing..." : {
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Numero massimo di token nella risposta."
+ "value" : "Trascrizione in corso..."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Maximale Anzahl der Tokens in der Antwort."
+ "value" : "Transcribing...",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "応答の最大トークン数"
+ "value" : "文字起こし中...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Número máximo de tokens na resposta."
+ "value" : "Transcribiendo...",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Número máximo de tokens en la respuesta."
+ "value" : "A transcrever..."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Maximaal aantal tokens in het antwoord"
+ "value" : "Transkribiere..."
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nombre maximal de jetons dans la réponse."
+ "value" : "Μεταγραφή σε εξέλιξη..."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μέγιστος αριθμός συμβόλων στην απάντηση."
+ "value" : "Transcription en cours..."
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Maximalt antal tecken i svaret."
+ "value" : "Transkriberar...",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Maximum number of tokens in the response"
+ "value" : "Bezig met transcriberen...",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A placeholder text displayed when the user is recording audio."
},
- "Only active" : {
+ "Too many requests. Please try again later." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Solo attivi"
+ "value" : "Trop de requêtes. Veuillez réessayer plus tard."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nur aktiv"
+ "value" : "Te veel verzoeken. Probeer het later opnieuw.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "アクティブのみ"
+ "value" : "Too many requests. Please try again later."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apenas ativo"
+ "value" : "Demasiadas solicitudes. Por favor, inténtalo de nuevo más tarde.",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Solo activos"
+ "value" : "Πάρα πολλά αιτήματα. Παρακαλώ δοκιμάστε ξανά αργότερα.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alleen actief"
+ "value" : "Troppe richieste. Riprova più tardi."
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μόνο ενεργά"
+ "value" : "Zu viele Anfragen. Bitte versuchen Sie es später erneut."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Uniquement actif"
+ "value" : "リクエストが多すぎます。後でもう一度お試しください。",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Endast aktiva"
+ "value" : "Demasiados pedidos. Por favor, tente novamente mais tarde."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Only active"
+ "value" : "För många förfrågningar. Försök igen senare.",
+ "state" : "translated"
}
}
}
},
- "The server is not reachable." : {
+ "The model finished responding. Tap to continue." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il server non è raggiungibile."
+ "value" : "モデルの応答が完了しました。タップして続行してください。"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Der Server ist nicht erreichbar."
+ "value" : "Modellen har slutat svara. Tryck för att fortsätta.",
+ "state" : "translated"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サーバーに接続できません。"
+ "value" : "O modelo terminou de responder. Toque para continuar."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O servidor não está acessível."
+ "value" : "Το μοντέλο ολοκλήρωσε την απάντηση. Πατήστε για συνέχεια."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El servidor no es accesible."
+ "value" : "Das Modell hat die Antwort beendet. Tippen, um fortzufahren."
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De server is niet bereikbaar."
+ "value" : "Het model is klaar met antwoorden. Tik om door te gaan."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ο διακομιστής δεν είναι προσβάσιμος."
+ "value" : "The model finished responding. Tap to continue.",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le serveur est inaccessible."
+ "value" : "El modelo terminó de responder. Toca para continuar."
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Servern är inte nåbar."
+ "value" : "Le modèle a terminé de répondre. Touchez pour continuer.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The server is not reachable."
+ "value" : "Il modello ha terminato la risposta. Tocca per continuare.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Text displayed in a notification when the LLM has finished responding."
},
- "This Week" : {
- "comment" : "Title of a conversation section for conversations from the current week.",
+ "The latest message and its attachments exceed this context window. Increase the context window or shorten the message." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Questa settimana"
+ "value" : "Det senaste meddelandet och dess bilagor överskrider detta kontextfönster. Öka kontextfönstret eller förkorta meddelandet."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Diese Woche"
+ "value" : "Het nieuwste bericht en de bijlagen overschrijden dit contextvenster. Vergroot het contextvenster of verkort het bericht.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "今週"
+ "value" : "Το πιο πρόσφατο μήνυμα και τα συνημμένα του υπερβαίνουν το παράθυρο συμφραζομένων. Αυξήστε το παράθυρο συμφραζομένων ή συντομεύστε το μήνυμα."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Esta Semana"
+ "value" : "El último mensaje y sus archivos adjuntos superan esta ventana de contexto. Aumenta la ventana de contexto o acorta el mensaje.",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esta semana"
+ "value" : "Die neueste Nachricht und ihre Anhänge überschreiten dieses Kontextfenster. Erhöhen Sie das Kontextfenster oder kürzen Sie die Nachricht."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deze week"
+ "value" : "最新のメッセージと添付ファイルがこのコンテキストウィンドウの容量を超えています。コンテキストウィンドウを拡大するか、メッセージを短くしてください。"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cette semaine"
+ "value" : "Le dernier message et ses pièces jointes dépassent cette fenêtre de contexte. Agrandissez la fenêtre de contexte ou raccourcissez le message."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αυτή την εβδομάδα"
+ "value" : "L'ultimo messaggio e i suoi allegati superano questa finestra di contesto. Aumenta la finestra di contesto o riduci il messaggio.",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Den här veckan"
+ "value" : "The latest message and its attachments exceed this context window. Increase the context window or shorten the message."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "This Week"
+ "value" : "A última mensagem e os seus anexos excedem esta janela de contexto. Aumente a janela de contexto ou reduza a mensagem."
}
}
- }
+ },
+ "comment" : "Error message when the latest message and its attachments exceed the context window."
},
- "Suggestion" : {
+ "Add an **Open URLs** action." : {
+ "comment" : "Step 2 of creating a shortcut using the Shortcuts app.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suggerimento"
+ "value" : "Προσθέστε μια ενέργεια **Άνοιγμα URL**.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vorschlag"
+ "value" : "Lägg till en åtgärd för **Öppna URL:er**.",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "提案"
+ "value" : "**URLを開く**アクションを追加してください。",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sugestão"
+ "value" : "Voeg een **Open URL's**-actie toe."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sugerencia"
+ "value" : "Agregar una acción **Abrir URLs**."
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suggestie"
+ "value" : "Ajouter une action **Ouvrir des URL**.",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggestion"
+ "value" : "Füge eine Aktion **URLs öffnen** hinzu."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Πρόταση"
+ "value" : "Adicionar uma ação **Abrir URLs**.",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Förslag"
+ "value" : "Aggiungi un’azione **Apri URL**."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggestion"
+ "value" : "Add an **Open URLs** action"
}
}
}
},
- "Buy me a coffee · One-time purchase · Doesn't unlock any features" : {
- "comment" : "A description of a one-time purchase option for supporting the app.",
+ "Checking iCloud availability..." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Offrimi un caffè · Acquisto una tantum · Non sblocca alcuna funzionalità"
+ "value" : "Beschikbaarheid van iCloud controleren...",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kauf mir einen Kaffee · Einmaliger Kauf · Schaltet keine Funktionen frei"
+ "value" : "Έλεγχος διαθεσιμότητας του iCloud..."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "コーヒーをおごる · 1回限りの購入 · 機能はアンロックされません"
+ "value" : "iCloud-Verfügbarkeit wird geprüft …"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ofereça-me um café · Compra única · Não desbloqueia nenhuma funcionalidade"
+ "value" : "A verificar a disponibilidade do iCloud..."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cómprame un café · Compra única · No desbloquea ninguna función"
+ "value" : "Checking iCloud availability...",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Koop een koffie voor me · Eenmalige aankoop · Ontgrendelt geen functies"
+ "value" : "Comprobando la disponibilidad de iCloud..."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κέρασέ μου έναν καφέ · Εφάπαξ αγορά · Δεν ξεκλειδώνει καμία λειτουργία"
+ "value" : "Kontrollerar iCloud-tillgänglighet..."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Offrez-moi un café · Achat unique · Ne débloque aucune fonctionnalité"
+ "value" : "iCloudの利用状況を確認中…",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Köp en kaffe åt mig · Engångsköp · Låser inte upp några funktioner"
+ "value" : "Verifica della disponibilità di iCloud..."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Buy me a coffee · One-time purchase · Doesn't unlock any features"
+ "value" : "Vérification de la disponibilité d’iCloud…"
}
}
}
},
- "Information" : {
+ "Profile conflict" : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Informazioni"
+ "value" : "Conflitto del profilo",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Information"
+ "value" : "プロフィールの競合"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "情報"
+ "value" : "Conflicto de perfil"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Informação"
+ "value" : "Conflit de profil",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Información"
+ "value" : "Profilkonflikt",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Informatie"
+ "value" : "Profile conflict"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πληροφορίες"
+ "value" : "Conflito de perfil"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Informations"
+ "value" : "Profilkonflikt",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Information"
+ "value" : "Profielconflict",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Information"
+ "value" : "Σύγκρουση προφίλ"
}
}
}
},
- "Update OpenClient to version %@ to continue using the app." : {
- "comment" : "A description of the update process.",
+ "Midnight" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aggiorna OpenClient alla versione %@ per continuare a utilizzare l’app."
+ "value" : "Medianoche",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktualisieren Sie OpenClient auf Version %@, um die App weiterhin zu verwenden."
+ "value" : "Midnight"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "アプリを引き続き使用するには、OpenClientをバージョン%@にアップデートしてください。"
+ "value" : "Μεσάνυχτα"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Atualize o OpenClient para a versão %@ para continuar a utilizar a aplicação."
+ "value" : "Minuit"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Actualiza OpenClient a la versión %@ para seguir usando la aplicación."
+ "value" : "Middernacht",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Werk OpenClient bij naar versie %@ om de app te blijven gebruiken."
+ "value" : "Mitternacht"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mettez OpenClient à jour vers la version %@ pour continuer à utiliser l’app."
+ "value" : "Midnatt",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ενημερώστε το OpenClient στην έκδοση %@ για να συνεχίσετε να χρησιμοποιείτε την εφαρμογή."
+ "value" : "Mezzanotte"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Uppdatera OpenClient till version %@ för att fortsätta använda appen."
+ "value" : "ミッドナイト"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Update OpenClient to version %@ to continue using the app."
+ "value" : "Meia-noite"
}
}
- }
+ },
+ "comment" : "Name of the icon with a midnight theme."
},
- "Context Window" : {
- "comment" : "A section that displays the maximum number of tokens that can be processed in a single request.",
+ "A synchronized conversation contains invalid data." : {
+ "comment" : "Error message when a conversation in the cloud has invalid data.",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Context Window"
+ "value" : "A synchronized conversation contains invalid data."
}
},
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Finestra di contesto"
+ "value" : "Une conversation synchronisée contient des données non valides."
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ventana de contexto"
+ "value" : "Een gesynchroniseerd gesprek bevat ongeldige gegevens."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kontextfenster"
+ "value" : "Una conversazione sincronizzata contiene dati non validi.",
+ "state" : "translated"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fenêtre de contexte"
+ "value" : "Μια συγχρονισμένη συνομιλία περιέχει μη έγκυρα δεδομένα."
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Παράθυρο Συμφραζομένων"
+ "value" : "Una conversación sincronizada contiene datos no válidos."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kontextfönster"
+ "value" : "Uma conversa sincronizada contém dados inválidos.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Contextvenster"
+ "value" : "同期された会話に無効なデータが含まれています。",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "コンテキストウィンドウ"
+ "value" : "Eine synchronisierte Unterhaltung enthält ungültige Daten."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Janela de Contexto"
+ "value" : "En synkroniserad konversation innehåller ogiltiga data.",
+ "state" : "translated"
}
}
}
},
- "Enter a new name for this conversation." : {
- "comment" : "A message displayed in an alert when renaming a conversation.",
+ "App data could not be completely reset. Your remaining data was not discarded." : {
+ "comment" : "Error message displayed when app data reset fails.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inserisci un nuovo nome per questa conversazione"
+ "value" : "Δεν ήταν δυνατή η πλήρης επαναφορά των δεδομένων της εφαρμογής. Τα υπόλοιπα δεδομένα σας δεν απορρίφθηκαν.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geben Sie einen neuen Namen für diese Unterhaltung ein."
+ "value" : "Appdata kunde inte återställas helt. Dina återstående data kasserades inte."
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "この会話の新しい名前を入力してください"
+ "value" : "Appのデータを完全にリセットできませんでした。残りのデータは破棄されていません。"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Introduza um novo nome para esta conversa."
+ "value" : "Não foi possível repor completamente os dados da aplicação. Os dados restantes não foram eliminados.",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Introduce un nuevo nombre para esta conversación."
+ "value" : "Die App-Daten konnten nicht vollständig zurückgesetzt werden. Ihre verbleibenden Daten wurden nicht verworfen."
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voer een nieuwe naam in voor dit gesprek."
+ "value" : "Appgegevens konden niet volledig worden gereset. De resterende gegevens zijn niet verwijderd.",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εισαγάγετε ένα νέο όνομα για αυτή τη συνομιλία."
+ "value" : "App data could not be completely reset. Your remaining data was not discarded.",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Entrez un nouveau nom pour cette conversation."
+ "value" : "Los datos de la app no se pudieron restablecer por completo. Los datos restantes no se descartaron.",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ange ett nytt namn för den här konversationen."
+ "value" : "Les données de l’app n’ont pas pu être complètement réinitialisées. Les données restantes n’ont pas été supprimées."
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Enter a new name for this conversation"
+ "value" : "Impossibile reimpostare completamente i dati dell’app. I dati rimanenti non sono stati eliminati.",
+ "state" : "translated"
}
}
}
},
- "Some MCP servers could not be loaded: %@." : {
- "comment" : "A message that describes which MCP servers failed to load.",
+ "Title" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alcuni server MCP non sono stati caricati: %@."
+ "value" : "Título",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Einige MCP-Server konnten nicht geladen werden: %@."
+ "value" : "Titel"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "一部のMCPサーバーを読み込めませんでした: %@"
+ "value" : "Titre",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alguns servidores MCP não puderam ser carregados: %@."
+ "value" : "Title"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudieron cargar algunos servidores MCP: %@."
+ "value" : "Τίτλος",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sommige MCP-servers konden niet worden geladen: %@."
+ "value" : "Titolo",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Certains serveurs MCP n'ont pas pu être chargés : %@."
+ "value" : "タイトル",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ορισμένοι διακομιστές MCP δεν μπόρεσαν να φορτωθούν: %@."
+ "value" : "Titel"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vissa MCP-servrar kunde inte laddas: %@."
+ "value" : "Titel",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Some MCP servers could not be loaded: %@."
+ "value" : "Título"
}
}
- }
+ },
+ "comment" : "A label displayed above the title field."
},
- "Unable to Load Models" : {
+ "tag.text" : {
+ "comment" : "Label for a text-related capability of an LLM model.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile caricare i modelli"
+ "value" : "Text"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modelle können nicht geladen werden"
+ "value" : "Text",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "モデルを読み込めません"
+ "value" : "Text"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Incapaz de carregar modelos"
+ "value" : "Text",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pueden cargar los modelos"
+ "value" : "Text"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kan modellen niet laden"
+ "value" : "Text",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossible de charger les modèles"
+ "value" : "Text"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αδυναμία φόρτωσης μοντέλων"
+ "value" : "Text",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kan inte ladda modeller"
+ "value" : "Text",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Unable to Load Models"
+ "value" : "Text",
+ "state" : "translated"
}
}
}
},
- "URL Scheme" : {
- "comment" : "A label that describes the URL scheme feature.",
+ "Not Now" : {
+ "comment" : "A button that dismisses an alert.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Schema URL"
+ "value" : "Niet nu",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "URL-Schema"
+ "value" : "Not Now"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "URLスキーム"
+ "value" : "Pas maintenant"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esquema URL"
+ "value" : "Ahora no"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esquema de URL"
+ "value" : "Όχι τώρα"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "URL-schema"
+ "value" : "今はしない",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Σχήμα URL"
+ "value" : "Agora não",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Schéma d’URL"
+ "value" : "Inte nu"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "URL-schema"
+ "value" : "Non ora",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "URL Scheme"
+ "value" : "Nicht jetzt"
}
}
}
},
- "Browse Library" : {
- "comment" : "A button that opens a library of pre-made system prompts.",
+ "Waiting for iCloud download" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sfoglia Libreria"
+ "value" : "Waiting for iCloud download"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bibliothek durchsuchen"
+ "value" : "Väntar på iCloud-nedladdning"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "En attente du téléchargement depuis iCloud",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ライブラリを参照"
+ "value" : "iCloudからのダウンロードを待機中",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Explorar Biblioteca"
+ "value" : "A aguardar a transferência do iCloud"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Explorar biblioteca"
+ "value" : "Esperando la descarga de iCloud"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bibliotheek bladeren"
- }
- },
- "el" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Περιήγηση στη Βιβλιοθήκη"
+ "value" : "Wachten op download uit iCloud"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Parcourir la bibliothèque"
+ "value" : "In attesa del download da iCloud",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bläddra i biblioteket"
+ "value" : "Αναμονή για λήψη από το iCloud"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Browse Library"
+ "value" : "Warten auf den iCloud-Download",
+ "state" : "translated"
}
}
}
},
- "Retry Inventory" : {
+ "Media & Files" : {
+ "comment" : "A button that displays a sheet for selecting and viewing media files and attachments.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Riprova inventario"
+ "value" : "Media & Files"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inventar erneut versuchen"
+ "value" : "Media en bestanden"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "インベントリを再試行"
+ "value" : "Media e file",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tentar novamente o inventário"
+ "value" : "Media och filer",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Reintentar inventario"
+ "value" : "Μέσα & Αρχεία",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inventaris opnieuw proberen"
+ "value" : "Medios y archivos"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Réessayer l’inventaire"
+ "value" : "Médias et fichiers"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Επανάληψη αποθέματος"
+ "value" : "メディアとファイル",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Försök igen med inventariet"
+ "value" : "Média e Ficheiros"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Retry Inventory"
+ "value" : "Medien & Dateien",
+ "state" : "translated"
}
}
}
},
- "Server error (code %lld)." : {
+ "No complete synchronization has succeeded yet." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Errore del server (codice %lld)."
+ "value" : "Er is nog geen volledige synchronisatie geslaagd."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serverfehler (Code %lld)."
+ "value" : "Δεν έχει ολοκληρωθεί ακόμη με επιτυχία κανένας συγχρονισμός.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "サーバーエラー(コード %lld)"
+ "value" : "No complete synchronization has succeeded yet.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Erro do servidor (código %lld)."
+ "value" : "Aucune synchronisation complète n’a encore réussi."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Error del servidor (código %lld)."
+ "value" : "Aún no se ha completado correctamente ninguna sincronización."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serverfout (code %lld)."
+ "value" : "同期が完全に成功したことはまだありません。",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Σφάλμα διακομιστή (κωδικός %lld)."
+ "value" : "Ainda não foi concluída nenhuma sincronização.",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Erreur serveur (code %lld)."
+ "value" : "Ingen fullständig synkronisering har lyckats ännu.",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serverfel (kod %lld)."
+ "value" : "Nessuna sincronizzazione completa è ancora riuscita.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Server error (code %lld)."
+ "value" : "Noch keine vollständige Synchronisierung war erfolgreich.",
+ "state" : "translated"
}
}
}
},
- "Issue" : {
+ "Some local data could not be reset. No remaining data was discarded." : {
+ "comment" : "A description of the error that occurs when the user tries to reset the app's data.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Problema"
+ "value" : "一部のローカルデータをリセットできませんでした。残りのデータは破棄されていません。"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Problem"
+ "value" : "No se pudieron restablecer algunos datos locales. No se descartaron datos restantes."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "問題"
+ "value" : "Sommige lokale gegevens konden niet worden teruggezet. Er zijn geen resterende gegevens verwijderd."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Problema"
+ "value" : "Vissa lokala data kunde inte återställas. Inga kvarvarande data kasserades."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Problema"
+ "value" : "Não foi possível repor alguns dados locais. Não foram eliminados dados restantes.",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Probleem"
+ "value" : "Some local data could not be reset. No remaining data was discarded.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πρόβλημα"
+ "value" : "Non è stato possibile reimpostare alcuni dati locali. Nessun dato rimanente è stato eliminato."
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Problème"
+ "value" : "Certaines données locales n’ont pas pu être réinitialisées. Aucune donnée restante n’a été supprimée.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Problem"
+ "value" : "Einige lokale Daten konnten nicht zurückgesetzt werden. Es wurden keine verbleibenden Daten verworfen."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Issue"
+ "value" : "Δεν ήταν δυνατή η επαναφορά ορισμένων τοπικών δεδομένων. Δεν απορρίφθηκαν δεδομένα που απέμειναν.",
+ "state" : "translated"
}
}
}
},
- "Your AI, Your Way" : {
- "comment" : "The title of the onboarding screen.",
+ "Maximum number of tokens in the response." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La tua IA, a modo tuo"
+ "value" : "応答の最大トークン数",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deine KI, Dein Weg"
+ "value" : "Nombre maximal de jetons dans la réponse."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "あなたのAI、あなたのスタイル"
+ "value" : "Maximaal aantal tokens in het antwoord"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A sua IA, à sua maneira"
+ "value" : "Maximalt antal tecken i svaret.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tu IA, a tu manera"
+ "value" : "Número máximo de tokens na resposta.",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Jouw AI, Jouw Manier"
+ "value" : "Μέγιστος αριθμός συμβόλων στην απάντηση."
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Votre IA, à votre façon"
+ "value" : "Número máximo de tokens en la respuesta.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η Τεχνητή Νοημοσύνη Σας, Με Τον Τρόπο Σας"
+ "value" : "Numero massimo di token nella risposta.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Din AI, på ditt sätt"
+ "value" : "Maximale Anzahl der Tokens in der Antwort.",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Your AI, Your Way"
+ "value" : "Maximum number of tokens in the response",
+ "state" : "translated"
}
}
}
},
- "More Options" : {
- "comment" : "A label for the \"More Options\" button.",
+ "Fork from here" : {
+ "comment" : "A label for a button that forks a message.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Altre opzioni"
+ "value" : "Fork from here"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Weitere Optionen"
+ "value" : "Créer une branche ici",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "その他のオプション"
+ "value" : "Vertakking vanaf hier",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mais Opções"
+ "value" : "Crea fork da qui"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Más opciones"
+ "value" : "Δημιουργία αντιγράφου από εδώ"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Meer opties"
+ "value" : "Bifurcar desde aquí",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Plus d’options"
+ "value" : "ここからフォーク"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Περισσότερες επιλογές"
+ "value" : "Criar bifurcação daqui"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fler alternativ"
+ "value" : "Abzweigen von hier"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "More Options"
+ "value" : "Gaffla härifrån"
}
}
}
},
- "e.g. Coding Assistant" : {
- "comment" : "A placeholder text for the title of a prompt template.",
+ "The model returned an invalid agent response." : {
+ "comment" : "Error message displayed when the model returns an invalid agent response.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "es. Assistente di Codifica"
+ "value" : "O modelo devolveu uma resposta de agente inválida.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "z. B. Coding Assistant"
+ "value" : "Le modèle a renvoyé une réponse d’agent invalide."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "例:コーディングアシスタント"
+ "value" : "El modelo devolvió una respuesta de agente no válida."
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ex. Assistente de Programação"
+ "value" : "The model returned an invalid agent response.",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "p. ej. Asistente de codificación"
+ "value" : "Το μοντέλο επέστρεψε μη έγκυρη απάντηση πράκτορα."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "bijv. Coding Assistant"
+ "value" : "Das Modell hat eine ungültige Agentenantwort zurückgegeben."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "π.χ. Βοηθός Κωδικοποίησης"
+ "value" : "モデルが無効なエージェント応答を返しました。"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ex. Assistant de codage"
+ "value" : "Het model gaf een ongeldige agentrespons terug."
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "t.ex. Kodningsassistent"
+ "value" : "Modellen returnerade ett ogiltigt agent-svar.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "e.g. Coding Assistant"
+ "value" : "Il modello ha restituito una risposta agente non valida.",
+ "state" : "translated"
}
}
}
},
- "Load Available Tools" : {
- "comment" : "A button that fetches the list of search tools configured in the user's LiteLLM server.",
+ "1 server available" : {
+ "comment" : "A label that indicates that 1 MCP server is available.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Carica strumenti disponibili"
+ "value" : "1 server beschikbaar",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verfügbare Werkzeuge laden"
+ "value" : "1 server available"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "利用可能なツールを読み込む"
+ "value" : "1 server tillgänglig"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Carregar Ferramentas Disponíveis"
+ "value" : "1 server disponibile"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cargar herramientas disponibles"
+ "value" : "1 διαθέσιμος διακομιστής",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beschikbare tools laden"
+ "value" : "1 servidor disponível"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Φόρτωση Διαθέσιμων Εργαλείων"
+ "value" : "1 servidor disponible",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Charger les outils disponibles"
+ "value" : "利用可能なサーバー 1 台",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ladda tillgängliga verktyg"
+ "value" : "1 serveur disponible",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Load Available Tools"
+ "value" : "1 Server verfügbar"
}
}
}
},
- "Copy" : {
+ "This will be injected into every conversation's system prompt." : {
+ "comment" : "A description of the content of a memory.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Copia"
+ "value" : "Esto se añadirá en el prompt del sistema de cada conversación."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kopieren"
+ "value" : "Dit wordt in de systeemopdracht van elk gesprek geïnjecteerd."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "コピー"
+ "value" : "Detta kommer att injiceras i systemprompten för varje konversation."
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Copiar"
+ "value" : "Questo verrà inserito nel prompt di sistema di ogni conversazione.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Copiar"
+ "value" : "Ceci sera injecté dans l’invite système de chaque conversation.",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kopiëren"
+ "value" : "This will be injected into every conversation's system prompt."
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αντιγραφή"
+ "value" : "Αυτό θα εισαχθεί στην προτροπή συστήματος κάθε συνομιλίας."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Copier"
+ "value" : "Isto será inserido no prompt do sistema de cada conversa."
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kopiera"
+ "value" : "これはすべての会話のシステムプロンプトに挿入されます。"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Copy"
+ "value" : "Dies wird in die Systemaufforderung jedes Gesprächs eingefügt."
}
}
}
},
- "Prompt" : {
- "comment" : "A label displayed above the prompt text field.",
+ "Profile Sync Conflict" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Prompt"
+ "value" : "Conflicto de sincronización del perfil"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eingabeaufforderung"
+ "value" : "Conflit de synchronisation du profil"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "プロンプト"
+ "value" : "Conflito de sincronização do perfil",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Indicação"
+ "value" : "Profile Sync Conflict"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Prompt"
+ "value" : "Σύγκρουση συγχρονισμού προφίλ",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Prompt"
+ "value" : "Konflikt bei der Profilsynchronisierung",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ερώτημα"
+ "value" : "プロフィール同期の競合"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Invite"
+ "value" : "Profielsynchronisatieconflict"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anvisning"
+ "value" : "Konflikt vid profilsynkronisering"
}
},
- "en" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Prompt"
- }
- }
- }
- },
- "%.2f" : {
- "shouldTranslate" : false,
- "comment" : "A label displaying the current value of the topP parameter.",
- "localizations" : {
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%.2f"
+ "value" : "Conflitto di sincronizzazione del profilo"
}
}
}
},
- "Speech to Text" : {
- "comment" : "A section title for speech-to-text models.",
+ "Important conversation" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Da voce a testo"
+ "value" : "Conversación importante",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sprache zu Text"
+ "value" : "Σημαντική συνομιλία"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "音声認識"
+ "value" : "Viktig konversation"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fala para Texto"
+ "value" : "Important conversation"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voz a texto"
+ "value" : "Conversation importante",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Spraak naar tekst"
+ "value" : "Conversazione importante",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ομιλία σε κείμενο"
+ "value" : "重要な会話",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Parole en texte"
+ "value" : "Wichtige Unterhaltung"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tal till text"
+ "value" : "Belangrijk gesprek"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Speech to Text"
+ "value" : "Conversa importante"
}
}
- }
+ },
+ "comment" : "Title of a placeholder pinned conversation."
},
- "Cloud" : {
+ "OpenClient is under maintenance" : {
+ "comment" : "A message displayed when the app is under maintenance.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cloud"
+ "value" : "OpenClient está en mantenimiento"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cloud"
+ "value" : "OpenClient è in manutenzione",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "クラウド"
+ "value" : "OpenClient is under maintenance",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nuvem"
+ "value" : "OpenClient est en maintenance"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cloud"
+ "value" : "OpenClient wordt onderhouden",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cloud"
+ "value" : "OpenClient wird gewartet",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Νέφος"
+ "value" : "Το OpenClient βρίσκεται υπό συντήρηση",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cloud"
+ "value" : "OpenClient genomgår underhållarbeiten",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Moln"
+ "value" : "OpenClientはメンテナンス中です"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cloud"
+ "value" : "O OpenClient está em manutenção"
}
}
}
},
- "Open a conversation by ID" : {
- "comment" : "A description of how to open a conversation by its ID using the URL scheme.",
+ "New Chat" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apri una conversazione tramite ID"
+ "value" : "Nova Conversa"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eine Unterhaltung über die ID öffnen"
+ "value" : "Nouveau chat",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "IDで会話を開く"
+ "value" : "Neuer Chat",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abrir uma conversa pelo ID"
+ "value" : "Νέα Συνομιλία",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abrir una conversación por ID"
+ "value" : "Nuevo chat",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Open een gesprek via ID"
+ "value" : "Nieuw gesprek",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ouvrir une conversation par ID"
+ "value" : "新しいチャット",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Άνοιγμα συνομιλίας με βάση το αναγνωριστικό"
+ "value" : "Ny chatt"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Öppna en konversation med ID"
+ "value" : "New Chat",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Open a conversation by ID"
+ "value" : "Nuova chat",
+ "state" : "translated"
}
}
}
},
- "iCloud files could not be accessed for: %@." : {
+ "Listen" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossibile accedere ai file iCloud per: %@."
+ "value" : "Écouter",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Auf iCloud-Dateien konnte nicht zugegriffen werden für: %@."
+ "value" : "Ascolta",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "次の iCloud ファイルにアクセスできませんでした:%@。"
+ "value" : "Listen"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível aceder aos ficheiros do iCloud para: %@."
+ "value" : "Luisteren"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudo acceder a los archivos de iCloud para: %@."
+ "value" : "Anhören",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-bestanden konden niet worden geopend voor: %@."
+ "value" : "Escuchar",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν ήταν δυνατή η πρόσβαση στα αρχεία iCloud για: %@."
+ "value" : "Lyssna",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossible d’accéder aux fichiers iCloud pour : %@."
+ "value" : "聞く"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Det gick inte att komma åt iCloud-filer för: %@."
+ "value" : "Ouvir",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud files could not be accessed for: %@."
+ "value" : "Άκουσμα"
}
}
- }
+ },
+ "comment" : "A button that triggers the speech-to-text feature."
},
- "iCloud container unavailable" : {
+ "Local prompt template deletion metadata is invalid and was preserved." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contenitore iCloud non disponibile"
+ "value" : "Les métadonnées de suppression du modèle d’invite local ne sont pas valides et ont été conservées."
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-Container nicht verfügbar"
+ "value" : "Die Löschmetadaten der lokalen Prompt-Vorlage sind ungültig und wurden beibehalten.",
+ "state" : "translated"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudコンテナを利用できません"
+ "value" : "Os metadados de eliminação do modelo de pedido local são inválidos e foram preservados."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Contentor do iCloud indisponível"
+ "value" : "ローカルプロンプトテンプレートの削除メタデータが無効なため、保持されました。",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contenedor de iCloud no disponible"
+ "value" : "De verwijderingsmetagegevens van de lokale promptsjabloon zijn ongeldig en zijn behouden."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-container niet beschikbaar"
+ "value" : "Τα μεταδεδομένα διαγραφής του τοπικού προτύπου προτροπής δεν είναι έγκυρα και διατηρήθηκαν."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το κοντέινερ iCloud δεν είναι διαθέσιμο"
+ "value" : "Local prompt template deletion metadata is invalid and was preserved."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conteneur iCloud indisponible"
+ "value" : "I metadati per l’eliminazione del modello di prompt locale non sono validi e sono stati conservati."
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-behållaren är inte tillgänglig"
+ "value" : "Metadata för borttagning av lokal promptmall är ogiltiga och har bevarats.",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud container unavailable"
+ "value" : "Los metadatos de eliminación de la plantilla de indicaciones local no son válidos y se conservaron.",
+ "state" : "translated"
}
}
}
},
- "A synchronized conversation attachment is missing." : {
- "comment" : "Error message when a required attachment for a synchronized conversation is missing.",
+ "Default" : {
+ "comment" : "Name of the default app icon.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Manca un allegato della conversazione sincronizzata."
+ "value" : "Default",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ein Anhang für eine synchronisierte Unterhaltung fehlt."
+ "value" : "Standard"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期された会話の添付ファイルがありません。"
+ "value" : "Predefinita",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Falta um anexo da conversa sincronizada."
+ "value" : "Predefinido"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Falta un archivo adjunto de la conversación sincronizada."
+ "value" : "Par défaut",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Er ontbreekt een bijlage voor een gesynchroniseerd gesprek."
+ "value" : "デフォルト"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Λείπει ένα συνημμένο από συγχρονισμένη συνομιλία."
+ "value" : "Standaard",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Une pièce jointe requise pour une conversation synchronisée est introuvable."
+ "value" : "Predeterminado"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "En bilaga till den synkroniserade konversationen saknas."
+ "value" : "Standard",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A synchronized conversation attachment is missing."
+ "value" : "Προεπιλογή"
}
}
}
},
- "Type" : {
- "comment" : "A label that describes the type of a model.",
+ "Deleted from memory: %@" : {
+ "comment" : "A notification that a memory item has been deleted. The argument is the content of the memory item.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tipo"
+ "value" : "Διαγράφηκε από τη μνήμη: %@",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Typ"
+ "value" : "メモリから削除しました: %@"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "タイプ"
+ "value" : "Aus dem Speicher gelöscht: %@",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tipo"
+ "value" : "Eliminado da memória: %@"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tipo"
+ "value" : "Eliminado de la memoria: %@",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Type"
+ "value" : "Borttaget från minnet: %@",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Τύπος"
+ "value" : "Supprimé de la mémoire : %@"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Type"
+ "value" : "Eliminato dalla memoria: %@",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Typ"
+ "value" : "Verwijderd uit geheugen: %@",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Type"
+ "value" : "Deleted from memory: %@",
+ "state" : "translated"
}
}
}
},
- "Sign in to iCloud, then retry. Sync remains enabled." : {
+ "Could not establish a secure connection to the server." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Accedi a iCloud, quindi riprova. La sincronizzazione rimane abilitata."
+ "value" : "Er kon geen beveiligde verbinding met de server worden gemaakt."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "value" : "Melde dich bei iCloud an und versuche es erneut. Die Synchronisierung bleibt aktiviert.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "No se pudo establecer una conexión segura con el servidor."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "value" : "iCloudにサインインしてから、もう一度お試しください。同期は有効のままです。",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Δεν ήταν δυνατή η δημιουργία ασφαλούς σύνδεσης με τον διακομιστή."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "value" : "Inicie sessão no iCloud e tente novamente. A sincronização continua ativada.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "サーバーへの安全な接続を確立できませんでした。"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "value" : "Inicia sesión en iCloud y vuelve a intentarlo. La sincronización sigue activada.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Es konnte keine sichere Verbindung zum Server hergestellt werden."
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Log in bij iCloud en probeer het opnieuw. Synchronisatie blijft ingeschakeld."
+ "value" : "Impossibile stabilire una connessione sicura con il server."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "value" : "Συνδεθείτε στο iCloud και δοκιμάστε ξανά. Ο συγχρονισμός παραμένει ενεργοποιημένος.",
+ "value" : "Could not establish a secure connection to the server.",
"state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "value" : "Connectez-vous à iCloud, puis réessayez. La synchronisation reste activée.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Kunde inte upprätta en säker anslutning till servern."
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "value" : "Logga in på iCloud och försök igen. Synkronisering är fortfarande aktiverad.",
+ "value" : "Impossible d’établir une connexion sécurisée avec le serveur.",
"state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sign in to iCloud, then retry. Sync remains enabled."
+ "value" : "Não foi possível estabelecer uma ligação segura ao servidor.",
+ "state" : "translated"
}
}
}
},
- "Synchronization failed for: %@. Local data was retained." : {
+ "All Synchronized Data" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sincronizzazione non riuscita per: %@. I dati locali sono stati conservati."
+ "value" : "Todos los datos sincronizados"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronisierung fehlgeschlagen für: %@. Lokale Daten wurden beibehalten."
+ "value" : "Alle synchronisierten Daten"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "同期に失敗しました:%@。ローカルデータは保持されています。"
+ "value" : "すべての同期済みデータ"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Falha na sincronização de: %@. Os dados locais foram mantidos."
+ "value" : "Tutti i dati sincronizzati",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La sincronización falló para: %@. Los datos locales se conservaron."
+ "value" : "Todos os dados sincronizados"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronisatie mislukt voor: %@. Lokale gegevens zijn behouden."
+ "value" : "All Synchronized Data"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ο συγχρονισμός απέτυχε για: %@. Τα τοπικά δεδομένα διατηρήθηκαν."
+ "value" : "Toutes les données synchronisées"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Échec de la synchronisation pour : %@. Les données locales ont été conservées."
+ "value" : "All synkroniserade data",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synkroniseringen misslyckades för: %@. Lokala data har behållits."
+ "value" : "Όλα τα συγχρονισμένα δεδομένα",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchronization failed for: %@. Local data was retained."
+ "value" : "Alle gesynchroniseerde gegevens",
+ "state" : "translated"
}
}
}
},
- "Stop Response" : {
- "comment" : "A button that stops the current response.",
+ "Close" : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Interrompi risposta"
+ "value" : "Chiudi",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Antwort stoppen"
+ "value" : "Cerrar"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "応答を停止"
+ "value" : "Close",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Parar resposta"
+ "value" : "Schließen",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Detener respuesta"
+ "value" : "Fermer",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Antwoord stoppen"
+ "value" : "Stäng"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διακοπή απάντησης"
+ "value" : "Fechar"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Arrêter la réponse"
+ "value" : "Κλείσιμο"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Stoppa svaret"
+ "value" : "閉じる",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Stop Response"
+ "value" : "Sluiten"
}
}
- }
+ },
+ "comment" : "A button that dismisses the current view."
},
- "Start Chatting" : {
+ "" : {
+ "shouldTranslate" : false
+ },
+ "The request timed out. The server may be slow or unreachable." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inizia a chattare"
+ "value" : "リクエストがタイムアウトしました。サーバーが遅いか、接続できません。",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chat starten"
+ "value" : "De aanvraag is verlopen. De server is mogelijk traag of niet bereikbaar.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "チャットを始める"
+ "value" : "The request timed out. The server may be slow or unreachable."
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Iniciar Conversa"
+ "value" : "La requête a expiré. Le serveur peut être lent ou inaccessible."
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Comenzar a chatear"
+ "value" : "La richiesta è scaduta. Il server potrebbe essere lento o non raggiungibile."
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Begin met chatten"
+ "value" : "O pedido expirou. O servidor pode estar lento ou inacessível."
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ξεκινήστε τη συνομιλία"
+ "value" : "La solicitud agotó el tiempo de espera. El servidor puede estar lento o inaccesible.",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Commencer la discussion"
+ "value" : "Förfrågan tog för lång tid. Servern kan vara långsam eller otillgänglig.",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Börja chatta"
+ "value" : "Η αίτηση έληξε λόγω χρόνου αναμονής. Ο διακομιστής μπορεί να είναι αργός ή μη προσβάσιμος."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Start Chatting"
+ "value" : "Die Anfrage hat ein Zeitlimit überschritten. Der Server ist möglicherweise langsam oder nicht erreichbar.",
+ "state" : "translated"
}
}
}
},
- "Always Allow This Tool" : {
+ "All local settings and credentials will be deleted. iCloud data will not be affected." : {
+ "comment" : "A confirmation alert message.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Consenti sempre a questo strumento"
+ "value" : "All local settings and credentials will be deleted. iCloud data will not be affected."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dieses Tool immer erlauben"
+ "value" : "Tous les paramètres locaux et identifiants seront supprimés. Les données iCloud ne seront pas affectées."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "このツールを常に許可する"
+ "value" : "Alla lokala inställningar och inloggningsuppgifter kommer att raderas. iCloud-data påverkas inte."
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Permitir sempre esta ferramenta"
+ "value" : "Tutte le impostazioni locali e le credenziali verranno eliminate. I dati di iCloud non saranno interessati."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Permitir siempre esta herramienta"
+ "value" : "Όλες οι τοπικές ρυθμίσεις και τα διαπιστευτήρια θα διαγραφούν. Τα δεδομένα iCloud δεν θα επηρεαστούν.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deze tool altijd toestaan"
+ "value" : "Se eliminarán todas las configuraciones y credenciales locales. Los datos de iCloud no se verán afectados.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Να επιτρέπεται πάντα αυτό το εργαλείο"
+ "value" : "Todas as definições locais e credenciais serão eliminadas. Os dados do iCloud não serão afetados.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toujours autoriser cet outil"
+ "value" : "すべてのローカル設定と認証情報が削除されます。iCloudのデータには影響しません。"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tillåt alltid det här verktyget"
+ "value" : "Alle lokalen Einstellungen und Anmeldedaten werden gelöscht. iCloud-Daten bleiben unberührt."
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Always Allow This Tool"
+ "value" : "Alle lokale instellingen en inloggegevens worden verwijderd. iCloud-gegevens blijven ongewijzigd."
}
}
}
},
- "The server configuration could not be saved." : {
- "comment" : "Error message displayed when the server configuration cannot be saved.",
+ "%lld compacted · %lld excluded" : {
+ "comment" : "A description of the number of messages that were compacted or excluded from the context. The first argument is the number of compacted messages. The second argument is the number of excluded messages.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile salvare la configurazione del server."
- }
- },
- "de" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Die Serverkonfiguration konnte nicht gespeichert werden."
+ "value" : "%1$lld compattati · %2$lld esclusi"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サーバー設定を保存できませんでした。"
+ "value" : "%1$lld 件を圧縮 · %2$lld 件を除外"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível guardar a configuração do servidor."
+ "value" : "%1$lld compacted · %2$lld excluded",
+ "state" : "new"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pudo guardar la configuración del servidor."
+ "value" : "%1$lld compactados · %2$lld excluidos"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De serverconfiguratie kon niet worden opgeslagen."
+ "value" : "%1$lld compactados · %2$lld excluídos"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν ήταν δυνατή η αποθήκευση της διαμόρφωσης του διακομιστή."
+ "value" : "%1$lld συμπιεσμένα · %2$lld εξαιρέθηκαν",
+ "state" : "translated"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "%1$lld komprimiert · %2$lld ausgeschlossen",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La configuration du serveur n’a pas pu être enregistrée."
+ "value" : "%1$lld compactés · %2$lld exclus"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Serverkonfigurationen kunde inte sparas."
+ "value" : "%1$lld komprimerade · %2$lld uteslutna"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The server configuration could not be saved."
+ "value" : "%1$lld gecomprimeerd · %2$lld uitgesloten"
}
}
}
},
- "Red" : {
- "comment" : "Name of the color red.",
+ "External tool" : {
+ "comment" : "Display name for an external tool.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rosso"
+ "value" : "Εξωτερικό εργαλείο",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rot"
+ "value" : "Externt verktyg"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "赤"
+ "value" : "Externe tool"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vermelho"
+ "value" : "外部ツール",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rojo"
+ "value" : "Herramienta externa",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rood"
+ "value" : "Externes Tool",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κόκκινο"
+ "value" : "Outil externe"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rouge"
+ "value" : "Ferramenta externa",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Röd"
+ "value" : "Strumento esterno",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Red"
+ "value" : "External tool",
+ "state" : "translated"
}
}
}
},
- "Important conversation" : {
- "comment" : "Title of a placeholder pinned conversation.",
+ "Loading iCloud data..." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conversazione importante"
+ "value" : "Φόρτωση δεδομένων iCloud...",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Wichtige Unterhaltung"
+ "value" : "Läser in iCloud-data..."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "重要な会話"
+ "value" : "iCloudデータを読み込み中…",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversa importante"
+ "value" : "iCloud-gegevens worden geladen..."
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conversación importante"
+ "value" : "Cargando datos de iCloud...",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Belangrijk gesprek"
+ "value" : "Chargement des données iCloud…",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Σημαντική συνομιλία"
+ "value" : "iCloud-Daten werden geladen...",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversation importante"
+ "value" : "A carregar dados do iCloud..."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Viktig konversation"
+ "value" : "Caricamento dei dati di iCloud...",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Important conversation"
+ "value" : "Loading iCloud data...",
+ "state" : "translated"
}
}
}
},
- "Search Conversations" : {
+ "Invalid synchronized data" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cerca conversazioni"
+ "value" : "Μη έγκυρα συγχρονισμένα δεδομένα",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konversationen suchen"
+ "value" : "Dati sincronizzati non validi"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "会話を検索"
+ "value" : "Datos sincronizados no válidos",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pesquisar Conversas"
+ "value" : "Ongeldige gesynchroniseerde gegevens"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Buscar conversaciones"
+ "value" : "同期されたデータが無効です"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gesprekken zoeken"
+ "value" : "Ungültige synchronisierte Daten",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αναζήτηση συνομιλιών"
+ "value" : "Données synchronisées non valides"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rechercher des conversations"
+ "value" : "Dados sincronizados inválidos"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sök konversationer"
+ "value" : "Invalid synchronized data"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Search Conversations"
+ "value" : "Ogiltiga synkroniserade data",
+ "state" : "translated"
}
}
}
},
- "Open the search screen in OpenClient." : {
- "comment" : "Description of the Search widget.",
+ "Stop Response" : {
+ "comment" : "A button that stops the current response.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apri la schermata di ricerca in OpenClient"
+ "value" : "Διακοπή απάντησης"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Öffne den Suchbildschirm in OpenClient."
+ "value" : "Stop Response",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClientで検索画面を開く"
+ "value" : "応答を停止"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abrir o ecrã de pesquisa no OpenClient."
+ "value" : "Detener respuesta",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abrir la pantalla de búsqueda en OpenClient."
+ "value" : "Parar resposta",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Open het zoekscherm in OpenClient."
+ "value" : "Arrêter la réponse"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ouvrir l’écran de recherche dans OpenClient."
+ "value" : "Interrompi risposta"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Άνοιγμα της οθόνης αναζήτησης στο OpenClient"
+ "value" : "Antwoord stoppen"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Öppna sökskärmen i OpenClient."
+ "value" : "Stoppa svaret"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Open the search screen in OpenClient"
+ "value" : "Antwort stoppen"
}
}
}
},
- "Your name (optional)" : {
+ "e.g. User prefers concise answers" : {
+ "comment" : "A placeholder text for a memory item's content.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il tuo nome (opzionale)"
+ "value" : "π.χ. Ο χρήστης προτιμά σύντομες απαντήσεις"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ihr Name (optional)"
+ "value" : "例:ユーザーは簡潔な回答を好む",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "あなたの名前(任意)"
+ "value" : "z. B. Nutzer bevorzugt kurze Antworten",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O seu nome (opcional)"
+ "value" : "ex. O utilizador prefere respostas concisas",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tu nombre (opcional)"
+ "value" : "p. ej. El usuario prefiere respuestas concisas"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je naam (optioneel)"
+ "value" : "t.ex. Användaren föredrar korta svar",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το όνομά σας (προαιρετικό)"
+ "value" : "ex. L’utilisateur préfère des réponses concises",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Votre nom (optionnel)"
+ "value" : "es. L’utente preferisce risposte concise"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ditt namn (valfritt)"
+ "value" : "e.g. User prefers concise answers"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Your name (optional)"
+ "value" : "Bijv. gebruiker geeft de voorkeur aan beknopte antwoorden",
+ "state" : "translated"
}
}
}
},
- "No pinned conversations" : {
- "comment" : "A message displayed when the user has no pinned conversations.",
+ "Your support keeps development and updates going!" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nessuna conversazione fissata"
+ "value" : "Votre soutien permet de poursuivre le développement et les mises à jour !",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keine angehefteten Unterhaltungen"
+ "value" : "Deine Unterstützung ermöglicht die weitere Entwicklung und Updates!",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ピン留めされた会話はありません"
+ "value" : "Jouw steun houdt de ontwikkeling en updates gaande!",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sem conversas fixadas"
+ "value" : "Η υποστήριξή σας βοηθά να συνεχίζονται η ανάπτυξη και οι ενημερώσεις!",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No hay conversaciones fijadas"
+ "value" : "O seu apoio permite dar continuidade ao desenvolvimento e às atualizações!",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geen vastgezette gesprekken"
+ "value" : "Your support keeps development and updates going!"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aucune conversation épinglée"
+ "value" : "Il tuo supporto permette di continuare lo sviluppo e gli aggiornamenti!"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν υπάρχουν καρφιτσωμένες συνομιλίες"
+ "value" : "皆さまのご支援が、開発とアップデートの継続につながります!"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inga fastnålda konversationer"
+ "value" : "Ditt stöd håller utvecklingen och uppdateringarna igång!",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No pinned conversations"
+ "value" : "¡Tu apoyo permite continuar con el desarrollo y las actualizaciones!",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A description of the benefits of supporting OpenClient."
},
- "The request timed out. The server may be slow or unreachable." : {
+ "Search Conversations" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La richiesta è scaduta. Il server potrebbe essere lento o non raggiungibile."
+ "value" : "Search Conversations",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Anfrage hat ein Zeitlimit überschritten. Der Server ist möglicherweise langsam oder nicht erreichbar."
+ "value" : "Sök konversationer"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "リクエストがタイムアウトしました。サーバーが遅いか、接続できません。"
+ "value" : "Cerca conversazioni"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O pedido expirou. O servidor pode estar lento ou inacessível."
+ "value" : "Pesquisar Conversas",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La solicitud agotó el tiempo de espera. El servidor puede estar lento o inaccesible."
+ "value" : "Rechercher des conversations"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De aanvraag is verlopen. De server is mogelijk traag of niet bereikbaar."
+ "value" : "会話を検索",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La requête a expiré. Le serveur peut être lent ou inaccessible."
+ "value" : "Gesprekken zoeken",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η αίτηση έληξε λόγω χρόνου αναμονής. Ο διακομιστής μπορεί να είναι αργός ή μη προσβάσιμος."
+ "value" : "Buscar conversaciones"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Förfrågan tog för lång tid. Servern kan vara långsam eller otillgänglig."
+ "value" : "Konversationen suchen"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The request timed out. The server may be slow or unreachable."
+ "value" : "Αναζήτηση συνομιλιών"
}
}
}
},
- "iCloud Data Is Downloading" : {
+ "Retry Inventory" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "I dati di iCloud sono in fase di download"
+ "value" : "Επανάληψη αποθέματος",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-Daten werden heruntergeladen"
+ "value" : "Försök igen med inventariet",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloudデータをダウンロード中"
+ "value" : "Inventaris opnieuw proberen",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Os dados do iCloud estão a ser descarregados"
+ "value" : "インベントリを再試行",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Los datos de iCloud se están descargando"
+ "value" : "Reintentar inventario",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-gegevens worden gedownload"
+ "value" : "Inventar erneut versuchen",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Les données iCloud sont en cours de téléchargement"
+ "value" : "Réessayer l’inventaire",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Γίνεται λήψη δεδομένων από το iCloud"
+ "value" : "Tentar novamente o inventário"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-data laddas ned"
+ "value" : "Riprova inventario"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud Data Is Downloading"
+ "value" : "Retry Inventory"
}
}
}
},
- "Plan the next project" : {
- "comment" : "Title of a conversation.",
+ "Completion" : {
+ "comment" : "A description of a completion LLM model.",
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Pianifica il prossimo progetto"
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Das nächste Projekt planen"
+ "value" : "Abschluss"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "次のプロジェクトを計画する"
+ "value" : "Ολοκλήρωση"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Planear o próximo projeto"
+ "value" : "Completamento"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Planificar el próximo proyecto"
+ "value" : "Voltooiing",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Plan het volgende project"
+ "value" : "Completion"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Planifier le prochain projet"
+ "value" : "Achèvement",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Σχεδίαση του επόμενου έργου"
+ "value" : "完了",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Planera nästa projekt"
+ "value" : "Slutförande"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Plan the next project"
+ "value" : "Conclusão"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Finalización",
+ "state" : "translated"
}
}
}
},
- "Blocked" : {
+ "Review and delete data stored in iCloud." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bloccato"
+ "value" : "Review and delete data stored in iCloud.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Blockiert"
+ "value" : "Bekijk en verwijder gegevens die in iCloud zijn opgeslagen.",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ブロック済み"
+ "value" : "Granska och radera data som lagras i iCloud.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bloqueado"
+ "value" : "Esamina ed elimina i dati archiviati su iCloud."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bloqueado"
+ "value" : "Ελέγξτε και διαγράψτε δεδομένα που είναι αποθηκευμένα στο iCloud.",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geblokkeerd"
+ "value" : "Reveja e elimine os dados armazenados no iCloud."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αποκλεισμένο"
+ "value" : "iCloudに保存されているデータを確認して削除する",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bloqué"
+ "value" : "Revisa y elimina los datos almacenados en iCloud.",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Blockerad"
+ "value" : "Consultez et supprimez les données stockées dans iCloud."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Blocked"
+ "value" : "In iCloud gespeicherte Daten überprüfen und löschen.",
+ "state" : "translated"
}
}
}
},
- "This will be injected into every conversation's system prompt." : {
- "comment" : "A description of the content of a memory.",
+ "Max Tokens" : {
+ "comment" : "A slider that lets the user adjust the maximum number of tokens.",
"localizations" : {
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "This will be injected into every conversation's system prompt."
+ "value" : "Token massimi"
}
},
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Questo verrà inserito nel prompt di sistema di ogni conversazione."
+ "value" : "Máximo de tokens"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Esto se añadirá en el prompt del sistema de cada conversación."
+ "value" : "Max Tokens",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dies wird in die Systemaufforderung jedes Gesprächs eingefügt."
+ "value" : "Maximale Tokenanzahl",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ceci sera injecté dans l’invite système de chaque conversation."
+ "value" : "Nombre maximal de jetons",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Detta kommer att injiceras i systemprompten för varje konversation."
+ "value" : "Μέγιστοι χαρακτήρες"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αυτό θα εισαχθεί στην προτροπή συστήματος κάθε συνομιλίας."
+ "value" : "Maximaal aantal tokens"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dit wordt in de systeemopdracht van elk gesprek geïnjecteerd."
+ "value" : "Tokens Máximos",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "これはすべての会話のシステムプロンプトに挿入されます。"
+ "value" : "Maximalt antal token",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Isto será inserido no prompt do sistema de cada conversa."
+ "value" : "最大トークン数",
+ "state" : "translated"
}
}
}
},
- "Only images and PDFs are supported" : {
+ "Tagged Conversations" : {
+ "comment" : "Title of the widget configuration intent.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sono supportate solo immagini e PDF"
+ "value" : "Conversations étiquetées"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nur Bilder und PDFs werden unterstützt"
+ "value" : "Markierte Unterhaltungen"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "画像とPDFのみ対応しています"
+ "value" : "Conversas Marcadas",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apenas imagens e PDFs são suportados"
+ "value" : "Conversaciones Etiquetadas"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Solo se admiten imágenes y PDFs"
+ "value" : "Επισημασμένες Συνομιλίες",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alleen afbeeldingen en PDF's worden ondersteund"
+ "value" : "Gemerkt Gesprekken"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Υποστηρίζονται μόνο εικόνες και αρχεία PDF"
+ "value" : "タグ付き会話",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Seules les images et les PDF sont pris en charge"
+ "value" : "Tagged Conversations",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Endast bilder och PDF-filer stöds"
+ "value" : "Taggade konversationer"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Only images and PDFs are supported"
+ "value" : "Conversazioni taggate",
+ "state" : "translated"
}
}
}
},
- "Search Chats" : {
+ "Answer a tricky question" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cerca chat"
+ "value" : "Répondre à une question délicate",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chats durchsuchen"
+ "value" : "Rispondi a una domanda difficile"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "チャットを検索"
+ "value" : "Answer a tricky question",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pesquisar Conversas"
+ "value" : "Beantwoord een lastige vraag",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Buscar chats"
+ "value" : "Beantworte eine knifflige Frage"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Zoek chats"
+ "value" : "Responder una pregunta difícil",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rechercher dans les discussions"
+ "value" : "Svara på en klurig fråga"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αναζήτηση συνομιλιών"
+ "value" : "難しい質問に答える",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sök chattar"
+ "value" : "Responder a uma pergunta difícil",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Search Chats"
+ "value" : "Απάντησε σε μια δύσκολη ερώτηση"
}
}
}
},
- "Notifications enabled" : {
- "comment" : "A label that indicates that notifications are enabled.",
+ "Memory Content" : {
+ "comment" : "A label displayed above the text field for the memory content.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Notifiche attivate"
+ "value" : "Conteúdo da Memória"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Benachrichtigungen aktiviert"
+ "value" : "Contenu de la mémoire"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "通知が有効です"
+ "value" : "Contenido de la memoria"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Notificações ativadas"
+ "value" : "Memory Content",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Notificaciones activadas"
+ "value" : "Περιεχόμενο μνήμης"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Meldingen ingeschakeld"
+ "value" : "Speicherinhalt",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Notifications activées"
+ "value" : "メモリ内容"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ειδοποιήσεις ενεργοποιημένες"
+ "value" : "Geheugeninhoud",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aviseringar aktiverade"
+ "value" : "Minnesinnehåll",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Notifications enabled"
+ "value" : "Contenuto della memoria"
}
}
}
},
- "Deny All & Close" : {
- "comment" : "A button that closes the current view and denies all the requests.",
+ "Tag" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rifiuta tutto e chiudi"
+ "value" : "Label",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle ablehnen & schließen"
+ "value" : "Etiqueta",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "すべて拒否して閉じる"
+ "value" : "Ετικέτα"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Recusar tudo e fechar"
+ "value" : "タグ",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Denegar todo y cerrar"
+ "value" : "Tag"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alles weigeren en sluiten"
+ "value" : "Tag",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Απόρριψη όλων και κλείσιμο"
+ "value" : "Tag"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tout refuser et fermer"
+ "value" : "Tagg"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neka alla och stäng"
+ "value" : "Etiqueta"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deny All & Close"
+ "value" : "Étiquette"
}
}
- }
+ },
+ "comment" : "Label for the tag selection in the conversations widget."
},
- "OpenClient is free and open source" : {
- "comment" : "A description of the OpenClient app.",
+ "Use Local Data" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient è gratuito e open source"
+ "value" : "Χρήση τοπικών δεδομένων"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient ist kostenlos und Open Source"
+ "value" : "Utiliser les données locales"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClientは無料のオープンソースです"
+ "value" : "Use Local Data",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O OpenClient é gratuito e de código aberto"
+ "value" : "Usa dati locali",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient es gratuito y de código abierto"
+ "value" : "Gebruik lokale gegevens"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient is gratis en open source"
+ "value" : "Usar datos locales",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το OpenClient είναι δωρεάν και ανοιχτού κώδικα"
+ "value" : "Usar Dados Locais",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient est gratuit et open source"
+ "value" : "Använd lokal data",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient är gratis och öppen källkod"
+ "value" : "ローカルデータを使用"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient is free and open source"
+ "value" : "Lokale Daten verwenden"
}
}
- }
+ },
+ "comment" : "A button that uses the local data."
},
- "Connect Your Server" : {
- "comment" : "A heading for the server configuration step of the onboarding flow.",
+ "Control what the model remembers" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Connetti il tuo server"
+ "value" : "Contrôlez ce que le modèle retient"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verbinden Sie Ihren Server"
+ "value" : "Έλεγχος του τι θυμάται το μοντέλο",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サーバーを接続する"
+ "value" : "Controla lo que el modelo recuerda"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ligue o Seu Servidor"
+ "value" : "Styr vad modellen kommer ihåg"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conecta tu servidor"
+ "value" : "Controlla ciò che il modello ricorda"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verbind uw server"
+ "value" : "Control what the model remembers"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Connectez votre serveur"
+ "value" : "Steuern, was das Modell sich merkt",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Συνδέστε τον διακομιστή σας"
+ "value" : "モデルの記憶を制御する",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anslut din server"
+ "value" : "Controle o que o modelo recorda"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Connect Your Server"
+ "value" : "Beheer wat het model onthoudt",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A tip that explains how to control the user's memory."
},
- "The conversation changed or was deleted before this save completed." : {
- "comment" : "Error message when a conversation has changed or been deleted before the save completed.",
+ "Continue your latest chat" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La conversazione è cambiata o è stata eliminata prima del completamento del salvataggio."
+ "value" : "Fortsätt din senaste chatt"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Unterhaltung wurde geändert oder gelöscht, bevor das Speichern abgeschlossen war."
+ "value" : "Poursuivre votre dernière conversation"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "この保存が完了する前に会話が変更または削除されました。"
+ "value" : "Continua la tua ultima chat"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A conversa foi alterada ou eliminada antes de esta gravação ser concluída."
+ "value" : "Continúa tu último chat"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La conversación cambió o se eliminó antes de que se completara este guardado."
+ "value" : "Continue your latest chat"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Het gesprek is gewijzigd of verwijderd voordat deze opslag was voltooid."
+ "value" : "最新のチャットを続ける",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η συνομιλία άλλαξε ή διαγράφηκε πριν ολοκληρωθεί η αποθήκευση."
+ "value" : "Continue a sua última conversa",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La conversation a été modifiée ou supprimée avant la fin de l’enregistrement."
+ "value" : "Ga door met je laatste gesprek"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konversationen ändrades eller raderades innan den här sparningen slutfördes."
+ "value" : "Führe deinen letzten Chat fort"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The conversation changed or was deleted before this save completed."
+ "value" : "Συνέχισε την τελευταία σου συνομιλία"
}
}
- }
+ },
+ "comment" : "Title of a placeholder conversation."
},
- "iCloud file access failed" : {
+ "Waiting for iCloud downloads" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Accesso al file iCloud non riuscito"
+ "value" : "iCloudからのダウンロードを待機中"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Der Zugriff auf die iCloud-Datei ist fehlgeschlagen"
+ "value" : "In attesa dei download da iCloud",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudファイルへのアクセスに失敗しました"
+ "value" : "Waiting for iCloud downloads"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Falha no acesso ao ficheiro do iCloud"
+ "value" : "Esperando las descargas de iCloud",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudo acceder al archivo de iCloud"
+ "value" : "A aguardar as transferências do iCloud",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toegang tot iCloud-bestand mislukt"
+ "value" : "Αναμονή για λήψεις από το iCloud",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αποτυχία πρόσβασης στο αρχείο iCloud"
+ "value" : "Warten auf iCloud-Downloads",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Échec de l’accès au fichier iCloud"
+ "value" : "En attente des téléchargements iCloud"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Åtkomst till iCloud-filen misslyckades"
+ "value" : "Väntar på iCloud-nedladdningar"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud file access failed"
+ "value" : "Wachten op iCloud-downloads"
}
}
}
},
- "Input tokens" : {
- "shouldTranslate" : false,
- "comment" : "A label for the maximum number of input tokens for a model."
- },
- "Disable Web Search" : {
- "comment" : "A button that disables the web search feature.",
+ "Voice ID" : {
+ "comment" : "A label for the voice ID field.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Disattiva ricerca web"
+ "value" : "ID de voz",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Websuche deaktivieren"
+ "value" : "Ταυτότητα φωνής",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ウェブ検索を無効にする"
+ "value" : "Röst-ID",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Desativar Pesquisa Web"
+ "value" : "Voice ID"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Desactivar búsqueda web"
+ "value" : "ID vocal",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Webzoekfunctie uitschakelen"
+ "value" : "ID voce",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Désactiver la recherche Web"
+ "value" : "音声ID",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Απενεργοποίηση Αναζήτησης Ιστού"
+ "value" : "Sprach-ID"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inaktivera webbsökning"
+ "value" : "Stem-ID",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Disable Web Search"
+ "value" : "ID de voz"
}
}
}
},
- "The MCP tool arguments are not valid JSON." : {
- "comment" : "Error message when the MCP tool arguments are not valid JSON.",
+ "Your AI, Your Way" : {
+ "comment" : "The title of the onboarding screen.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gli argomenti dello strumento MCP non sono un JSON valido."
+ "value" : "A sua IA, à sua maneira"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die Argumente des MCP-Tools sind kein gültiges JSON."
+ "value" : "Votre IA, à votre façon",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPツールの引数が有効なJSONではありません。"
+ "value" : "Deine KI, Dein Weg"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Os argumentos da ferramenta MCP não são JSON válido."
+ "value" : "あなたのAI、あなたのスタイル"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Los argumentos de la herramienta MCP no son un JSON válido."
+ "value" : "Jouw AI, Jouw Manier"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De argumenten van de MCP-tool zijn geen geldige JSON."
+ "value" : "Η Τεχνητή Νοημοσύνη Σας, Με Τον Τρόπο Σας"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τα επιχειρήματα του εργαλείου MCP δεν είναι έγκυρο JSON."
+ "value" : "Din AI, på ditt sätt",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les arguments de l’outil MCP ne sont pas un JSON valide."
+ "value" : "La tua IA, a modo tuo"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Argumenten för MCP-verktyget är inte giltig JSON."
+ "value" : "Tu IA, a tu manera"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The MCP tool arguments are not valid JSON."
+ "value" : "Your AI, Your Way",
+ "state" : "translated"
}
}
}
},
- "Profile" : {
+ "Review, edit, disable, or delete the memories used in future conversations." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profilo"
+ "value" : "Αναθεώρηση, επεξεργασία, απενεργοποίηση ή διαγραφή των αναμνήσεων που χρησιμοποιούνται σε μελλοντικές συνομιλίες."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profil"
+ "value" : "Revisa, edita, desactiva o elimina los recuerdos usados en futuras conversaciones."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "プロフィール"
+ "value" : "Überprüfen, bearbeiten, deaktivieren oder löschen Sie die Erinnerungen, die in zukünftigen Gesprächen verwendet werden."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Perfil"
+ "value" : "Beoordeel, bewerk, schakel uit of verwijder de herinneringen die in toekomstige gesprekken worden gebruikt.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Perfil"
+ "value" : "今後の会話で使用される記憶を確認、編集、無効化、または削除します。"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profiel"
+ "value" : "Review, edit, disable, or delete the memories used in future conversations"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προφίλ"
+ "value" : "Revise, edite, desative ou elimine as memórias usadas em conversas futuras."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profil"
+ "value" : "Granska, redigera, inaktivera eller ta bort minnen som används i framtida konversationer."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Profil"
+ "value" : "Rivedi, modifica, disabilita o elimina i ricordi utilizzati nelle conversazioni future.",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profile"
+ "value" : "Révisez, modifiez, désactivez ou supprimez les souvenirs utilisés dans les conversations futures."
}
}
- }
+ },
+ "comment" : "A description of the memory management feature."
},
- "No Favourites Yet" : {
- "comment" : "A message displayed when a user has no favourite messages.",
+ "The conversation changed or was deleted before this save completed." : {
+ "comment" : "Error message when a conversation has changed or been deleted before the save completed.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessun preferito ancora"
+ "value" : "Konversationen ändrades eller raderades innan den här sparningen slutfördes."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Noch keine Favoriten vorhanden"
+ "value" : "La conversation a été modifiée ou supprimée avant la fin de l’enregistrement."
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "お気に入りはまだありません"
+ "value" : "La conversazione è cambiata o è stata eliminata prima del completamento del salvataggio.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sem Favoritos Ainda"
+ "value" : "Het gesprek is gewijzigd of verwijderd voordat deze opslag was voltooid.",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sin favoritos aún"
+ "value" : "The conversation changed or was deleted before this save completed."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nog geen favorieten"
+ "value" : "La conversación cambió o se eliminó antes de que se completara este guardado."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aucun favori pour le moment"
+ "value" : "この保存が完了する前に会話が変更または削除されました。"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν υπάρχουν αγαπημένα ακόμα"
+ "value" : "A conversa foi alterada ou eliminada antes de esta gravação ser concluída.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inga favoriter än"
+ "value" : "Die Unterhaltung wurde geändert oder gelöscht, bevor das Speichern abgeschlossen war.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No Favorites Yet"
+ "value" : "Η συνομιλία άλλαξε ή διαγράφηκε πριν ολοκληρωθεί η αποθήκευση."
}
}
}
},
- "Could not find the server. Please check the URL." : {
+ "A synchronized conversation attachment is missing." : {
+ "comment" : "Error message when a required attachment for a synchronized conversation is missing.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossibile trovare il server. Controlla l'URL."
+ "value" : "Falta um anexo da conversa sincronizada.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Server konnte nicht gefunden werden. Bitte überprüfen Sie die URL."
+ "value" : "Ein Anhang für eine synchronisierte Unterhaltung fehlt."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サーバーが見つかりません。URLを確認してください。"
+ "value" : "Une pièce jointe requise pour une conversation synchronisée est introuvable."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível encontrar o servidor. Por favor, verifique o URL."
+ "value" : "Falta un archivo adjunto de la conversación sincronizada."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudo encontrar el servidor. Por favor, verifica la URL."
+ "value" : "Λείπει ένα συνημμένο από συγχρονισμένη συνομιλία.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kan de server niet vinden. Controleer de URL."
+ "value" : "Er ontbreekt een bijlage voor een gesynchroniseerd gesprek."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serveur introuvable. Veuillez vérifier l’URL."
+ "value" : "A synchronized conversation attachment is missing.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν βρέθηκε ο διακομιστής. Ελέγξτε τη διεύθυνση URL."
+ "value" : "En bilaga till den synkroniserade konversationen saknas.",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kunde inte hitta servern. Kontrollera URL:en."
+ "value" : "同期された会話の添付ファイルがありません。"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Could not find the server. Please check the URL."
+ "value" : "Manca un allegato della conversazione sincronizzata.",
+ "state" : "translated"
}
}
}
},
- "Delete" : {
+ "comments" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina"
+ "value" : "comentarios"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Löschen"
+ "value" : "kommentarer",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "削除"
+ "value" : "σχόλια",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar"
+ "value" : "comments"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar"
+ "value" : "commentaires"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verwijderen"
+ "value" : "commenti",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαγραφή"
+ "value" : "コメント",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Supprimer"
+ "value" : "Kommentare",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Radera"
+ "value" : "reacties"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Delete"
+ "value" : "comentários"
}
}
}
},
- "Show Less" : {
- "comment" : "A label that shows a chevron up icon.",
+ "This MCP server currently exposes no available tools." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mostra meno"
+ "value" : "Dieser MCP-Server stellt derzeit keine verfügbaren Tools bereit."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Weniger anzeigen"
+ "value" : "This MCP server currently exposes no available tools."
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "表示を減らす"
+ "value" : "Questo server MCP attualmente non espone alcuno strumento disponibile."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mostrar menos"
+ "value" : "Deze MCP-server biedt momenteel geen beschikbare tools."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mostrar menos"
+ "value" : "Αυτός ο διακομιστής MCP δεν διαθέτει επί του παρόντος διαθέσιμα εργαλεία.",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Minder weergeven"
+ "value" : "Ce serveur MCP n’expose actuellement aucun outil disponible.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εμφάνιση λιγότερων"
+ "value" : "このMCPサーバーでは現在利用可能なツールはありません。"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afficher moins"
+ "value" : "Den här MCP-servern exponerar för närvarande inga tillgängliga verktyg."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Visa mindre"
+ "value" : "Este servidor MCP não disponibiliza atualmente quaisquer ferramentas.",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Show Less"
+ "value" : "Este servidor MCP no ofrece ninguna herramienta disponible actualmente."
}
}
- }
+ },
+ "comment" : "A description of the view displayed when a MCP server has no available tools."
},
- "Search the web" : {
- "comment" : "A description of the feature that lets the model search the web.",
+ "There is not enough storage to complete synchronization." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cerca sul web"
+ "value" : "Er is niet genoeg opslagruimte om de synchronisatie te voltooien.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Im Web suchen"
+ "value" : "Det finns inte tillräckligt med lagringsutrymme för att slutföra synkroniseringen."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ウェブを検索する"
+ "value" : "Δεν υπάρχει αρκετός αποθηκευτικός χώρος για την ολοκλήρωση του συγχρονισμού.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pesquisar na web"
+ "value" : "L’espace de stockage est insuffisant pour terminer la synchronisation."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Buscar en la web"
+ "value" : "Es ist nicht genügend Speicherplatz vorhanden, um die Synchronisierung abzuschließen.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zoek op het web"
+ "value" : "同期を完了するための空き容量が不足しています。"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rechercher sur le web"
+ "value" : "No hay suficiente espacio de almacenamiento para completar la sincronización."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αναζήτηση στο διαδίκτυο"
+ "value" : "Spazio di archiviazione insufficiente per completare la sincronizzazione.",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sök på webben"
+ "value" : "There is not enough storage to complete synchronization.",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Search the web"
+ "value" : "Não há espaço de armazenamento suficiente para concluir a sincronização.",
+ "state" : "translated"
}
}
}
},
- "The cloud deletion is waiting for required downloads." : {
- "comment" : "Error description for when the cloud deletion is waiting for required downloads.",
+ "tag.image.generation" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "L’eliminazione dal cloud è in attesa dei download richiesti."
+ "value" : "Image",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Das Löschen aus der Cloud wartet auf erforderliche Downloads."
+ "value" : "Image",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "クラウドの削除は必要なダウンロードの完了待ちです"
+ "value" : "Image"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A eliminação da nuvem está a aguardar as transferências necessárias."
+ "value" : "Image"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La eliminación en la nube está esperando que se completen las descargas necesarias."
+ "value" : "Image"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De verwijdering uit de cloud wacht op vereiste downloads."
+ "value" : "Image",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La suppression du cloud est en attente des téléchargements requis."
+ "value" : "Image"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η διαγραφή από το cloud αναμένει τις απαιτούμενες λήψεις."
+ "value" : "Image",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Molnraderingen väntar på nödvändiga nedladdningar."
+ "value" : "Image",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The cloud deletion is waiting for required downloads."
+ "value" : "Image"
}
}
- }
+ },
+ "comment" : "Label for the image generation capability."
},
- "Tap to return to your conversation." : {
- "comment" : "Text displayed in a conversation card when there is no conversation to show.",
+ "Appearance" : {
+ "comment" : "A heading for the Appearance section of the settings.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tocca per tornare alla tua conversazione."
+ "value" : "Weergave"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tippen, um zu Ihrer Unterhaltung zurückzukehren."
+ "value" : "Appearance"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会話に戻るにはタップしてください"
+ "value" : "Aspetto"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toque para voltar à sua conversa."
+ "value" : "Utseende"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toca para volver a tu conversación."
+ "value" : "Εμφάνιση"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tik om terug te keren naar je gesprek."
+ "value" : "Aspeto"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πατήστε για να επιστρέψετε στη συνομιλία σας."
+ "value" : "外観"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Touchez pour revenir à votre conversation."
+ "value" : "Apariencia",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tryck för att återvända till din konversation."
+ "value" : "Apparence",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tap to return to your conversation"
+ "value" : "Erscheinungsbild",
+ "state" : "translated"
}
}
}
},
- "A synchronized conversation contains invalid data." : {
- "comment" : "Error message when a conversation in the cloud has invalid data.",
+ "Could not read the server response." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Una conversazione sincronizzata contiene dati non validi."
+ "value" : "Kan de serverreactie niet lezen.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eine synchronisierte Unterhaltung enthält ungültige Daten."
+ "value" : "Serverantwort konnte nicht gelesen werden.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期された会話に無効なデータが含まれています。"
+ "value" : "Δεν ήταν δυνατή η ανάγνωση της απάντησης του διακομιστή.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Uma conversa sincronizada contém dados inválidos."
+ "value" : "No se pudo leer la respuesta del servidor.",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Una conversación sincronizada contiene datos no válidos."
+ "value" : "Kunde inte läsa serverns svar."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Een gesynchroniseerd gesprek bevat ongeldige gegevens."
+ "value" : "Could not read the server response.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μια συγχρονισμένη συνομιλία περιέχει μη έγκυρα δεδομένα."
+ "value" : "Impossible de lire la réponse du serveur."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Une conversation synchronisée contient des données non valides."
+ "value" : "Impossibile leggere la risposta del server."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "En synkroniserad konversation innehåller ogiltiga data."
+ "value" : "Não foi possível ler a resposta do servidor."
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A synchronized conversation contains invalid data."
+ "value" : "サーバーの応答を読み取れませんでした。"
}
}
}
},
- "OK" : {
+ "Plan the next project" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OK"
+ "value" : "Planificar el próximo proyecto",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OK"
+ "value" : "Plan het volgende project",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OK"
+ "value" : "Planera nästa projekt",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OK"
+ "value" : "Pianifica il prossimo progetto"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OK"
+ "value" : "Plan the next project"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OK"
+ "value" : "Planifier le prochain projet",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OK"
+ "value" : "Σχεδίαση του επόμενου έργου"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OK"
+ "value" : "Planear o próximo projeto",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OK"
+ "value" : "次のプロジェクトを計画する",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OK"
+ "value" : "Das nächste Projekt planen"
}
}
- }
+ },
+ "comment" : "Title of a conversation."
},
- "Review the current iCloud account before any local or cloud data is changed." : {
+ "Favourites" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Esamina l’account iCloud attuale prima di modificare i dati locali o nel cloud."
+ "value" : "Αγαπημένα",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Überprüfe den aktuellen iCloud-Account, bevor lokale oder Cloud-Daten geändert werden."
+ "value" : "お気に入り",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ローカルまたはクラウドのデータを変更する前に、現在のiCloudアカウントを確認する"
+ "value" : "Favoriten"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Reveja a conta iCloud atual antes de alterar quaisquer dados locais ou na nuvem."
+ "value" : "Favoritos",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Revisa la cuenta de iCloud actual antes de cambiar cualquier dato local o en la nube."
+ "value" : "Favoritos"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Controleer het huidige iCloud-account voordat er lokale of cloudgegevens worden gewijzigd."
+ "value" : "Favoris"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vérifiez le compte iCloud actuel avant toute modification des données locales ou cloud."
+ "value" : "Favoriter"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ελέγξτε τον τρέχοντα λογαριασμό iCloud πριν αλλάξουν δεδομένα τοπικά ή στο cloud."
+ "value" : "Preferiti"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Granska det aktuella iCloud-kontot innan några lokala data eller molndata ändras."
+ "value" : "Favorites",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Review the current iCloud account before any local or cloud data is changed."
+ "value" : "Favorieten"
}
}
- }
+ },
+ "comment" : "A title for a screen that shows the user's favourite messages."
},
- "Use these sources to answer the user's question. Cite sources using [Source Title](URL) format." : {
- "comment" : "Citation guide for web search results.",
+ "The local and iCloud profiles have conflicting changes with the same revision." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Usa queste fonti per rispondere alla domanda dell'utente. Cita le fonti utilizzando il formato [Titolo della fonte](URL)."
+ "value" : "The local and iCloud profiles have conflicting changes with the same revision."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verwenden Sie diese Quellen, um die Frage des Benutzers zu beantworten. Zitieren Sie Quellen im Format [Quellentitel](URL)."
+ "value" : "Τα τοπικά προφίλ και τα προφίλ iCloud έχουν αντικρουόμενες αλλαγές με την ίδια αναθεώρηση."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "これらの情報源を使用してユーザーの質問に回答してください。情報源は[情報源タイトル](URL)形式で引用してください。"
+ "value" : "Das lokale Profil und das iCloud-Profil weisen widersprüchliche Änderungen bei derselben Revision auf."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Utilize estas fontes para responder à pergunta do utilizador. Cite as fontes usando o formato [Título da Fonte](URL)."
+ "value" : "De lokala profilerna och iCloud-profilerna har motstridiga ändringar med samma revision.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Utilice estas fuentes para responder a la pregunta del usuario. Cite las fuentes usando el formato [Título de la fuente](URL)."
+ "value" : "Os perfis local e do iCloud têm alterações em conflito com a mesma revisão.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gebruik deze bronnen om de vraag van de gebruiker te beantwoorden. Verwijs naar bronnen met de notatie [Bron Titel](URL)."
+ "value" : "De lokale en iCloud-profielen bevatten tegenstrijdige wijzigingen met dezelfde revisie.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Χρησιμοποιήστε αυτές τις πηγές για να απαντήσετε στην ερώτηση του χρήστη. Αναφέρετε τις πηγές χρησιμοποιώντας τη μορφή [Τίτλος Πηγής](URL)."
+ "value" : "I profili locale e iCloud contengono modifiche in conflitto con la stessa revisione."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Utilisez ces sources pour répondre à la question de l'utilisateur. Citez les sources en utilisant le format [Titre de la source](URL)."
+ "value" : "ローカルプロファイルとiCloudプロファイルに、同じリビジョンの競合する変更があります。",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Använd dessa källor för att besvara användarens fråga. Ange källor med formatet [Källtitel](URL)."
+ "value" : "Les profils local et iCloud comportent des modifications contradictoires avec la même révision.",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Use these sources to answer the user's question. Cite sources using [Source Title](URL) format."
+ "value" : "Los perfiles local y de iCloud tienen cambios en conflicto con la misma revisión."
}
}
}
},
- "Feature tips can appear again when their conditions are met." : {
- "comment" : "A message displayed in an alert when the user resets feature tips.",
+ "Be the first to suggest something!" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "I suggerimenti delle funzionalità possono riapparire quando si verificano le condizioni."
+ "value" : "Soyez le premier à suggérer quelque chose !"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Feature-Tipps können erneut angezeigt werden, wenn ihre Bedingungen erfüllt sind."
+ "value" : "Sii il primo a suggerire qualcosa!",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "条件が満たされると、機能のヒントが再度表示されます。"
+ "value" : "Be the first to suggest something!",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "As dicas de funcionalidades podem voltar a aparecer quando as suas condições forem cumpridas."
+ "value" : "Wees de eerste om iets voor te stellen!",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Los consejos de funciones pueden aparecer de nuevo cuando se cumplan sus condiciones."
+ "value" : "Sei der Erste, der etwas vorschlägt!"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Functietips kunnen opnieuw verschijnen wanneer aan de voorwaarden wordt voldaan."
+ "value" : "¡Sé el primero en sugerir algo!",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les astuces de fonctionnalité peuvent réapparaître lorsque leurs conditions sont remplies."
+ "value" : "Var den första att föreslå något!"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Οι συμβουλές λειτουργιών μπορούν να εμφανιστούν ξανά όταν πληρούνται οι προϋποθέσεις τους."
+ "value" : "最初に提案しましょう!"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tips om funktioner kan visas igen när deras villkor uppfylls."
+ "value" : "Seja o primeiro a sugerir algo!",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Feature tips can reappear when their conditions are met."
+ "value" : "Να είστε ο πρώτος που θα προτείνει κάτι!"
}
}
}
},
- "Tools unavailable" : {
- "comment" : "A message displayed when the MCP server is unavailable.",
+ "Type" : {
+ "comment" : "A label that describes the type of a model.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Strumenti non disponibili"
+ "value" : "Type"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tools nicht verfügbar"
+ "value" : "Typ",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ツールを利用できません"
+ "value" : "Type",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ferramentas indisponíveis"
+ "value" : "Τύπος"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Herramientas no disponibles"
+ "value" : "Type"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hulpmiddelen niet beschikbaar"
+ "value" : "Tipo",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Outils indisponibles"
+ "value" : "Tipo",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Τα εργαλεία δεν είναι διαθέσιμα"
+ "value" : "タイプ"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verktyg ej tillgängliga"
+ "value" : "Typ"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tools unavailable"
+ "value" : "Tipo",
+ "state" : "translated"
}
}
}
},
- "Write a creative story" : {
+ "Rename" : {
+ "comment" : "A button that renames a conversation.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Scrivi una storia creativa"
+ "value" : "Renombrar"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Schreibe eine kreative Geschichte"
+ "value" : "名前を変更"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "創造的な物語を書く"
+ "value" : "Umbenennen",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Escreve uma história criativa"
+ "value" : "Renommer",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Escribe una historia creativa"
+ "value" : "Renomear",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Schrijf een creatief verhaal"
+ "value" : "Rename"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Γράψε μια δημιουργική ιστορία"
+ "value" : "Rinomina",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Écris une histoire créative"
+ "value" : "Byt namn",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Skriv en kreativ berättelse"
+ "value" : "Hernoemen"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Write a creative story"
+ "value" : "Μετονομασία"
}
}
}
},
- "Close" : {
- "comment" : "A button that dismisses the current view.",
+ "A brief description about yourself. Max 500 characters." : {
+ "comment" : "A description of the field that allows the user to add a",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chiudi"
+ "value" : "Una breve descripción sobre ti. Máximo 500 caracteres."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Schließen"
+ "value" : "Μια σύντομη περιγραφή για εσάς. Μέγιστο 500 χαρακτήρες."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "閉じる"
+ "value" : "Une brève description de vous-même. Max 500 caractères.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fechar"
+ "value" : "A brief description about yourself. Max 500 characters.",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cerrar"
+ "value" : "En kort beskrivning om dig själv. Max 500 tecken.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sluiten"
+ "value" : "Una breve descrizione di te stesso. Max 500 caratteri."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Κλείσιμο"
+ "value" : "自分についての簡単な説明。最大500文字まで。",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fermer"
+ "value" : "Eine kurze Beschreibung von dir. Maximal 500 Zeichen.",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Stäng"
+ "value" : "Een korte beschrijving van jezelf. Maximaal 500 tekens."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Close"
+ "value" : "Uma breve descrição sobre si. Máx. 500 caracteres."
}
}
}
},
- "App data could not be completely reset. Your remaining data was not discarded." : {
- "comment" : "Error message displayed when app data reset fails.",
+ "You are a data analysis expert. Help interpret data, identify patterns, suggest visualisations, and explain statistical concepts. Provide clear and actionable insights from any data the user shares." : {
+ "comment" : "Description of a data analyst assistant.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossibile reimpostare completamente i dati dell’app. I dati rimanenti non sono stati eliminati."
+ "value" : "あなたはデータ分析の専門家です。データの解釈、パターンの特定、可視化の提案、統計概念の説明を行います。ユーザーが共有するあらゆるデータから明確で実用的な洞察を提供します。",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die App-Daten konnten nicht vollständig zurückgesetzt werden. Ihre verbleibenden Daten wurden nicht verworfen."
+ "value" : "Du är en expert på dataanalys. Hjälp till att tolka data, identifiera mönster, föreslå visualiseringar och förklara statistiska begrepp. Ge tydliga och användbara insikter från all data som användaren delar.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appのデータを完全にリセットできませんでした。残りのデータは破棄されていません。"
+ "value" : "Είστε ειδικός στην ανάλυση δεδομένων. Βοηθήστε στην ερμηνεία δεδομένων, την αναγνώριση προτύπων, την πρόταση οπτικοποιήσεων και την εξήγηση στατιστικών εννοιών. Παρέχετε σαφείς και εφαρμόσιμες πληροφορίες από οποιαδήποτε δεδομένα μοιραστεί ο χρήστης."
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível repor completamente os dados da aplicação. Os dados restantes não foram eliminados."
+ "value" : "É um especialista em análise de dados. Ajuda a interpretar dados, identificar padrões, sugerir visualizações e explicar conceitos estatísticos. Fornece insights claros e acionáveis a partir de quaisquer dados que o utilizador partilhe."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Los datos de la app no se pudieron restablecer por completo. Los datos restantes no se descartaron."
+ "value" : "Sie sind ein Experte für Datenanalyse. Helfen Sie dabei, Daten zu interpretieren, Muster zu erkennen, Visualisierungen vorzuschlagen und statistische Konzepte zu erklären. Liefern Sie klare und umsetzbare Erkenntnisse aus allen vom Nutzer bereitgestellten Daten.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appgegevens konden niet volledig worden gereset. De resterende gegevens zijn niet verwijderd."
+ "value" : "Je bent een expert in data-analyse. Help met het interpreteren van data, het identificeren van patronen, het voorstellen van visualisaties en het uitleggen van statistische concepten. Bied duidelijke en bruikbare inzichten uit alle data die de gebruiker deelt."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η πλήρης επαναφορά των δεδομένων της εφαρμογής. Τα υπόλοιπα δεδομένα σας δεν απορρίφθηκαν."
+ "value" : "You are a data analysis expert. Help interpret data, identify patterns, suggest visualizations, and explain statistical concepts. Provide clear and actionable insights from any data the user shares."
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les données de l’app n’ont pas pu être complètement réinitialisées. Les données restantes n’ont pas été supprimées."
+ "value" : "Eres un experto en análisis de datos. Ayuda a interpretar datos, identificar patrones, sugerir visualizaciones y explicar conceptos estadísticos. Proporciona información clara y accionable a partir de cualquier dato que el usuario comparta."
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appdata kunde inte återställas helt. Dina återstående data kasserades inte."
+ "value" : "Vous êtes un expert en analyse de données. Aidez à interpréter les données, identifier les tendances, suggérer des visualisations et expliquer les concepts statistiques. Fournissez des analyses claires et exploitables à partir de toutes les données partagées par l’utilisateur."
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "App data could not be completely reset. Your remaining data was not discarded."
+ "value" : "Sei un esperto di analisi dei dati. Aiuta a interpretare i dati, identificare modelli, suggerire visualizzazioni e spiegare concetti statistici. Fornisci approfondimenti chiari e concreti da qualsiasi dato l’utente condivida.",
+ "state" : "translated"
}
}
}
},
- "iCloud data changed during synchronization." : {
- "comment" : "Error description when iCloud data changes during synchronization.",
+ "Synchronized data deletion" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "I dati di iCloud sono cambiati durante la sincronizzazione."
+ "value" : "Verwijdering van gesynchroniseerde gegevens"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-Daten wurden während der Synchronisierung geändert."
+ "value" : "Synkroniserad dataradering"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期中にiCloudデータが変更されました。"
+ "value" : "Suppression des données synchronisées",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Os dados do iCloud foram alterados durante a sincronização."
+ "value" : "Eliminación de datos sincronizados",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Los datos de iCloud cambiaron durante la sincronización."
+ "value" : "同期データの削除",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-gegevens zijn tijdens de synchronisatie gewijzigd."
+ "value" : "Synchronisierte Datenlöschung",
+ "state" : "translated"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Les données iCloud ont changé pendant la synchronisation."
+ "value" : "Διαγραφή συγχρονισμένων δεδομένων",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Τα δεδομένα iCloud άλλαξαν κατά τον συγχρονισμό."
+ "value" : "Eliminazione dei dati sincronizzati"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-data ändrades under synkroniseringen."
+ "value" : "Synchronized data deletion"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud data changed during synchronization."
+ "value" : "Eliminação de dados sincronizados"
}
}
}
},
- "Accepted" : {
+ "Details" : {
+ "comment" : "A section that provides more details about a model.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Accettato"
+ "value" : "詳細"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Akzeptiert"
+ "value" : "Dettagli"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "承認済み"
+ "value" : "Details"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aceite"
+ "value" : "Detaljer"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aceptado"
+ "value" : "Detalhes",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geaccepteerd"
+ "value" : "Λεπτομέρειες"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αποδεκτό"
+ "value" : "Detalles"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Accepté"
+ "value" : "Détails"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Accepterad"
+ "value" : "Details",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Accepted"
+ "value" : "Details"
}
}
}
},
- "Import Complete" : {
+ "Unable to Load Models" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Importazione completata"
+ "value" : "モデルを読み込めません"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Import abgeschlossen"
+ "value" : "No se pueden cargar los modelos",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "インポート完了"
+ "value" : "Kan modellen niet laden",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Importação concluída"
+ "value" : "Kan inte ladda modeller"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Importación completada"
+ "value" : "Incapaz de carregar modelos",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Import voltooid"
+ "value" : "Unable to Load Models",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η εισαγωγή ολοκληρώθηκε"
+ "value" : "Αδυναμία φόρτωσης μοντέλων",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Importation terminée"
+ "value" : "Modelle können nicht geladen werden",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Import klar"
+ "value" : "Impossible de charger les modèles"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Import Complete"
+ "value" : "Impossibile caricare i modelli",
+ "state" : "translated"
}
}
}
},
- "Ready to synchronize" : {
+ "The project notes are ready to review." : {
+ "comment" : "Last message preview text for a conversation.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pronto per la sincronizzazione"
+ "value" : "Las notas del proyecto están listas para revisar.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bereit zur Synchronisierung"
+ "value" : "De projectnotities zijn klaar om te bekijken."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "同期の準備完了"
+ "value" : "Projektanteckningarna är klara för granskning."
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pronto para sincronizar"
+ "value" : "Le note del progetto sono pronte per la revisione.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Listo para sincronizar"
+ "value" : "Les notes du projet sont prêtes à être examinées."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Klaar om te synchroniseren"
+ "value" : "The project notes are ready to review.",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Έτοιμο για συγχρονισμό"
+ "value" : "Οι σημειώσεις του έργου είναι έτοιμες για ανασκόπηση."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Prêt à synchroniser"
+ "value" : "As notas do projeto estão prontas para revisão."
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Klar att synkronisera"
+ "value" : "プロジェクトのメモがレビュー可能です。",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ready to synchronize"
+ "value" : "Die Projektnotizen sind bereit zur Überprüfung."
}
}
}
},
- "Recent Conversations" : {
- "comment" : "Title of the widget.",
+ "The tool execution permit was already used." : {
+ "comment" : "Error message when a tool execution permit is already used.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conversazioni recenti"
+ "value" : "A autorização de execução da ferramenta já foi utilizada.",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Letzte Unterhaltungen"
+ "value" : "ツール実行許可はすでに使用されています。",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "最近の会話"
+ "value" : "De toestemming voor het uitvoeren van de tool is al gebruikt."
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversas Recentes"
+ "value" : "Die Berechtigung zur Tool-Ausführung wurde bereits verwendet."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversaciones recientes"
+ "value" : "Η άδεια εκτέλεσης του εργαλείου έχει ήδη χρησιμοποιηθεί."
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recente gesprekken"
+ "value" : "Tillståndet för verktygskörning har redan använts."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversations récentes"
+ "value" : "The tool execution permit was already used."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πρόσφατες Συνομιλίες"
+ "value" : "Il permesso di esecuzione dello strumento è già stato utilizzato."
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Senaste konversationer"
+ "value" : "El permiso de ejecución de la herramienta ya se utilizó."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Recent Conversations"
+ "value" : "L’autorisation d’exécution de l’outil a déjà été utilisée.",
+ "state" : "translated"
}
}
}
},
- "Favourites" : {
- "comment" : "A title for a screen that shows the user's favourite messages.",
+ "New chat with a URL" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Preferiti"
+ "value" : "Neuer Chat mit einer URL",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Favoriten"
+ "value" : "New chat using a URL"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "お気に入り"
+ "value" : "Nueva conversación con una URL"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Favoritos"
+ "value" : "URLで新しいチャットを開始",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Favoritos"
+ "value" : "Nova conversa com um URL",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Favorieten"
+ "value" : "Nouvelle conversation avec une URL",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αγαπημένα"
+ "value" : "Nuova chat con un URL",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Favoris"
+ "value" : "Nieuw gesprek met een URL",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Favoriter"
+ "value" : "Ny chatt med en URL"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Favorites"
+ "value" : "Νέα συνομιλία με URL",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A description of how to open a chat with a URL using the URL scheme."
},
- "No internet connection. Please check your network." : {
+ "%.1f — %@" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nessuna connessione a Internet. Controlla la tua rete."
+ "value" : "%1$.1f — %2$@",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keine Internetverbindung. Bitte überprüfen Sie Ihr Netzwerk."
+ "value" : "%1$.1f — %2$@",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "インターネットに接続されていません。ネットワークを確認してください。"
+ "value" : "%1$.1f — %2$@"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sem ligação à internet. Verifique a sua rede."
+ "value" : "%1$.1f — %2$@"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sin conexión a internet. Por favor, verifica tu red."
+ "value" : "%1$.1f — %2$@",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geen internetverbinding. Controleer uw netwerk."
+ "value" : "%1$.1f — %2$@"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν υπάρχει σύνδεση στο διαδίκτυο. Ελέγξτε το δίκτυό σας."
+ "value" : "%1$.1f — %2$@",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pas de connexion Internet. Veuillez vérifier votre réseau."
+ "value" : "%1$.1f — %2$@"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ingen internetanslutning. Kontrollera ditt nätverk."
+ "value" : "%1$.1f — %2$@",
+ "state" : "new"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No internet connection. Please check your network."
+ "value" : "%1$.1f — %2$@",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label displaying the current temperature and a description of the temperature. The argument is the string “Focused”, the string “Balanced”, the string “Creative” or the string “Very creative”."
},
- "Memory could not be synchronized. Your local items are retained." : {
- "comment" : "Error message displayed when an error occurs during synchronization.",
+ "Continue" : {
+ "comment" : "A button that allows the user to continue the onboarding process.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossibile sincronizzare la memoria. Gli elementi locali sono stati conservati."
+ "value" : "続行",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Der Speicher konnte nicht synchronisiert werden. Deine lokalen Elemente bleiben erhalten."
+ "value" : "Doorgaan"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メモリを同期できませんでした。ローカルの項目は保持されています。"
+ "value" : "Συνέχεια"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível sincronizar a memória. Os seus itens locais foram mantidos."
+ "value" : "Weiter"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudo sincronizar la memoria. Tus elementos locales se conservaron."
+ "value" : "Fortsätt",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Het geheugen kon niet worden gesynchroniseerd. Je lokale items zijn behouden."
+ "value" : "Continuar",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν ήταν δυνατός ο συγχρονισμός της μνήμης. Τα τοπικά στοιχεία σας διατηρήθηκαν."
+ "value" : "Continuer",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La mémoire n’a pas pu être synchronisée. Vos éléments locaux sont conservés."
+ "value" : "Continua",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Minnet kunde inte synkroniseras. Dina lokala objekt har behållits."
+ "value" : "Continuar"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Memory could not be synchronized. Your local items are retained."
+ "value" : "Continue"
}
}
}
},
- "Saved to memory: %@" : {
- "comment" : "A message that is displayed when a piece of information is successfully saved to the user's memory. The argument is the content that was saved.",
+ "Extra Info" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Salvato nella memoria: %@"
+ "value" : "Extra Info"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "In den Speicher gespeichert: %@"
+ "value" : "Infos supplémentaires",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メモリに保存されました: %@"
+ "value" : "Extra information",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Guardado na memória: %@"
+ "value" : "Informazioni aggiuntive"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Guardado en la memoria: %@"
+ "value" : "Επιπλέον Πληροφορίες"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Opgeslagen in geheugen: %@"
+ "value" : "Información adicional",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αποθηκεύτηκε στη μνήμη: %@"
+ "value" : "追加情報"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enregistré en mémoire : %@"
+ "value" : "Informação Extra"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sparat i minnet: %@"
+ "value" : "Zusätzliche Informationen"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Saved to memory: %@"
+ "value" : "Extra info"
}
}
- }
+ },
+ "comment" : "A label displayed above the user's extra information."
},
- "Your name" : {
+ "Provider" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "value" : "Il tuo nome",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Provider"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "value" : "Ihr Name",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Leverantör"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Fournisseur"
}
},
"ja" : {
"stringUnit" : {
- "value" : "あなたの名前",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "プロバイダー"
}
},
"pt-PT" : {
"stringUnit" : {
- "value" : "O seu nome",
+ "value" : "Fornecedor",
"state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "value" : "Tu nombre",
+ "value" : "Proveedor",
"state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Uw naam"
+ "value" : "Provider"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "value" : "Votre nom",
+ "value" : "Fornitore",
"state" : "translated"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το όνομά σας"
- }
- },
- "sv" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Ditt namn"
+ "value" : "Πάροχος",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "value" : "Your name",
+ "value" : "Anbieter",
"state" : "translated"
}
}
- },
- "comment" : "A label that describes the user's name."
+ }
},
- "Always Deny This Tool" : {
- "comment" : "A label for a menu item that permanently denies a tool.",
+ "Open the search screen in OpenClient." : {
+ "comment" : "Description of the Search widget.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nega sempre questo strumento"
+ "value" : "Öppna sökskärmen i OpenClient.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dieses Tool immer ablehnen"
+ "value" : "Open het zoekscherm in OpenClient."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "このツールを常に拒否する"
+ "value" : "Ouvrir l’écran de recherche dans OpenClient.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recusar sempre esta ferramenta"
+ "value" : "Άνοιγμα της οθόνης αναζήτησης στο OpenClient"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Denegar siempre esta herramienta"
+ "value" : "Öffne den Suchbildschirm in OpenClient.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deze tool altijd weigeren"
+ "value" : "Abrir la pantalla de búsqueda en OpenClient.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Να αρνείσαι πάντα αυτό το εργαλείο"
+ "value" : "OpenClientで検索画面を開く",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toujours refuser cet outil"
+ "value" : "Apri la schermata di ricerca in OpenClient",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Neka alltid det här verktyget neka åtkomst"
+ "value" : "Open the search screen in OpenClient",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Always Deny This Tool"
+ "value" : "Abrir o ecrã de pesquisa no OpenClient.",
+ "state" : "translated"
}
}
}
},
- "Always Allow" : {
- "comment" : "Title of a permission option that allows the model to always request this external tool.",
+ "Open Source" : {
+ "comment" : "A feature of the onboarding view.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Consenti sempre"
+ "value" : "Open Source"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Immer erlauben"
+ "value" : "Código abierto"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "常に許可"
+ "value" : "Open Source",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Permitir sempre"
+ "value" : "Open Source"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Permitir siempre"
+ "value" : "Open source"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Altijd toestaan"
+ "value" : "オープンソース"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Να επιτρέπεται πάντα"
+ "value" : "Öppen källkod"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toujours autoriser"
+ "value" : "Ανοιχτού Κώδικα",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tillåt alltid"
+ "value" : "Open source"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Always Allow"
+ "value" : "Código Aberto",
+ "state" : "translated"
}
}
}
},
- "These tools are unavailable until this server refreshes successfully." : {
- "comment" : "A warning message that appears when the MCP server is unavailable.",
+ "Could not connect to the server." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Questi strumenti non sono disponibili finché il server non viene aggiornato correttamente."
+ "value" : "Δεν ήταν δυνατή η σύνδεση με τον διακομιστή."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Diese Tools sind nicht verfügbar, bis dieser Server erfolgreich aktualisiert wurde."
+ "value" : "Impossibile connettersi al server."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "このサーバーの更新が正常に完了するまで、これらのツールは利用できません。"
+ "value" : "No se pudo conectar al servidor."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Estas ferramentas não estão disponíveis até este servidor ser atualizado com êxito."
+ "value" : "Kan geen verbinding maken met de server."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Estas herramientas no estarán disponibles hasta que este servidor se actualice correctamente."
+ "value" : "サーバーに接続できませんでした。"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deze tools zijn niet beschikbaar totdat deze server succesvol is vernieuwd."
+ "value" : "Verbindung zum Server konnte nicht hergestellt werden.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αυτά τα εργαλεία δεν είναι διαθέσιμα μέχρι να ολοκληρωθεί επιτυχώς η ανανέωση αυτού του διακομιστή."
+ "value" : "Impossible de se connecter au serveur.",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ces outils sont indisponibles jusqu’à l’actualisation réussie de ce serveur."
+ "value" : "Could not connect to the server."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dessa verktyg är otillgängliga tills servern har uppdaterats."
+ "value" : "Não foi possível ligar ao servidor."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "These tools are unavailable until this server refreshes successfully."
+ "value" : "Kunde inte ansluta till servern."
}
}
}
},
- "Deleting synchronized data..." : {
+ "The model returned an empty response. Please try again." : {
+ "comment" : "Error message displayed when the assistant returns an empty response.",
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminazione dei dati sincronizzati..."
+ "value" : "Il modello ha restituito una risposta vuota. Riprova.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronisierte Daten werden gelöscht …"
+ "value" : "Le modèle a renvoyé une réponse vide. Veuillez réessayer."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "同期データを削除中…"
+ "value" : "The model returned an empty response. Please try again."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A eliminar dados sincronizados..."
+ "value" : "El modelo devolvió una respuesta vacía. Por favor, inténtalo de nuevo."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminando datos sincronizados..."
+ "value" : "Το μοντέλο επέστρεψε κενή απάντηση. Παρακαλώ δοκιμάστε ξανά.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gesynchroniseerde gegevens worden verwijderd..."
+ "value" : "Het model gaf een lege reactie terug. Probeer het opnieuw."
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαγραφή συγχρονισμένων δεδομένων..."
+ "value" : "Das Modell hat eine leere Antwort zurückgegeben. Bitte versuchen Sie es erneut."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suppression des données synchronisées…"
+ "value" : "O modelo devolveu uma resposta vazia. Por favor, tente novamente."
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tar bort synkroniserade data..."
+ "value" : "モデルが空の応答を返しました。もう一度お試しください。"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deleting synchronized data..."
+ "value" : "Modellen gav inget svar. Försök igen.",
+ "state" : "translated"
}
}
}
},
- "Edit Template" : {
- "comment" : "A title for a view that allows the user to edit a prompt template.",
+ "one time" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Modifica modello"
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vorlage bearbeiten"
+ "value" : "Einmalig"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "テンプレート編集"
+ "value" : "Une fois"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Editar Modelo"
+ "value" : "Una vez"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Editar plantilla"
+ "value" : "eenmalig",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sjabloon bewerken"
+ "value" : "Una tantum"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modifier le modèle"
+ "value" : "1回限り"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Επεξεργασία Προτύπου"
+ "value" : "uma vez",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Redigera mall"
+ "value" : "Engångsbetalning"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Edit Template"
+ "value" : "one time"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Εφάπαξ",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label for a one-time tip."
},
- "Conversation name" : {
- "comment" : "A label for the name of a conversation.",
+ "Ongoing support" : {
+ "comment" : "A heading for ongoing support.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nome conversazione"
+ "value" : "Doorlopende ondersteuning"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konversationsname"
+ "value" : "Ongoing support"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会話名"
+ "value" : "Löpande support"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nome da conversa"
+ "value" : "Supporto continuo"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nombre de la conversación"
+ "value" : "Συνεχής υποστήριξη"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gespreksnaam"
+ "value" : "Suporte contínuo"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nom de la conversation"
+ "value" : "継続的なサポート",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Όνομα συνομιλίας"
+ "value" : "Assistance continue",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konversationsnamn"
+ "value" : "Soporte continuo"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversation name"
+ "value" : "Laufender Support"
}
}
}
},
- "Copied" : {
+ "Always Allow This Tool" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Copiato"
+ "value" : "Να επιτρέπεται πάντα αυτό το εργαλείο",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kopiert"
+ "value" : "Tillåt alltid det här verktyget"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "コピー済み"
+ "value" : "このツールを常に許可する"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Copiado"
+ "value" : "Deze tool altijd toestaan",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Copiado"
+ "value" : "Permitir siempre esta herramienta"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gekopieerd"
+ "value" : "Dieses Tool immer erlauben"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Copié"
+ "value" : "Toujours autoriser cet outil"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αντιγράφηκε"
+ "value" : "Permitir sempre esta ferramenta"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kopierad"
+ "value" : "Consenti sempre a questo strumento"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Copied"
+ "value" : "Always Allow This Tool"
}
}
}
},
- "Tips appear only when their related features are available." : {
- "comment" : "A description of the feature tips section.",
+ "Warning" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "I suggerimenti appaiono solo quando le relative funzionalità sono disponibili."
+ "value" : "Avertissement",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tipps erscheinen nur, wenn die zugehörigen Funktionen verfügbar sind."
+ "value" : "Warnung"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ヒントは関連機能が利用可能な場合にのみ表示されます。"
+ "value" : "Waarschuwing"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "As dicas aparecem apenas quando as funcionalidades relacionadas estão disponíveis."
+ "value" : "Προειδοποίηση",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Los consejos aparecen solo cuando sus funciones relacionadas están disponibles."
+ "value" : "Warning"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tips verschijnen alleen wanneer de bijbehorende functies beschikbaar zijn."
+ "value" : "Aviso",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Οι συμβουλές εμφανίζονται μόνο όταν είναι διαθέσιμες οι σχετικές λειτουργίες."
+ "value" : "Avviso"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Les astuces apparaissent uniquement lorsque leurs fonctionnalités associées sont disponibles."
+ "value" : "警告",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tips visas endast när deras relaterade funktioner är tillgängliga."
+ "value" : "Varning"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tips appear only when their related features are available."
+ "value" : "Advertencia",
+ "state" : "translated"
}
}
}
},
- "Sent when a response finishes while the app is in the background." : {
- "comment" : "A description of the notification that is sent when a response finishes while the app is in the background.",
+ "Blueprint" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inviato quando una risposta termina mentre l’app è in background."
+ "value" : "Planta "
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gesendet, wenn eine Antwort abgeschlossen wird, während die App im Hintergrund läuft."
+ "value" : "Bauplan"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "アプリがバックグラウンドにある間に応答が完了したときに送信されます。"
+ "value" : "Plan détaillé"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enviado quando uma resposta termina enquanto a aplicação está em segundo plano."
+ "value" : "Plano técnico"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enviado cuando una respuesta termina mientras la aplicación está en segundo plano."
+ "value" : "Προσχέδιο"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verzonden wanneer een reactie is voltooid terwijl de app op de achtergrond draait."
+ "value" : "Blauwdruk"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αποστέλλεται όταν ολοκληρώνεται μια απάντηση ενώ η εφαρμογή είναι στο παρασκήνιο."
+ "value" : "Blueprint",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Envoyé lorsqu’une réponse se termine alors que l’application est en arrière-plan."
+ "value" : "設計図"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Skickas när ett svar slutförs medan appen är i bakgrunden."
+ "value" : "Ritning"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sent when a response completes while the app is in the background."
+ "value" : "Progetto tecnico"
}
}
- }
+ },
+ "comment" : "Name of the app icon with a blueprint theme."
},
- "Feature Tips Reset" : {
- "comment" : "A title for an alert that informs the user that the feature tips have been reset.",
+ "This file is not an OpenClient backup." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suggerimenti Funzionalità Reimpostati"
+ "value" : "Αυτό το αρχείο δεν είναι αντίγραφο ασφαλείας OpenClient.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Feature-Tipps zurücksetzen"
+ "value" : "Den här filen är inte en OpenClient-säkerhetskopia."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "機能ヒントのリセット"
+ "value" : "Dit bestand is geen OpenClient-back-up."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Repor Dicas de Funcionalidades"
+ "value" : "このファイルはOpenClientのバックアップではありません。"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Restablecer consejos de funciones"
+ "value" : "Este archivo no es una copia de seguridad de OpenClient."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Functietips resetten"
+ "value" : "Diese Datei ist keine OpenClient-Sicherung.",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Réinitialisation des astuces de fonctionnalité"
+ "value" : "Ce fichier n’est pas une sauvegarde OpenClient."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Επαναφορά Συμβουλών Χαρακτηριστικών"
+ "value" : "Este ficheiro não é uma cópia de segurança OpenClient.",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Återställ tips för funktioner"
+ "value" : "Questo file non è un backup di OpenClient."
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Feature Tips Reset"
+ "value" : "This file is not an OpenClient backup.",
+ "state" : "translated"
}
}
}
},
- "Pin" : {
- "comment" : "A pin icon.",
+ "Response ready" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fissa"
+ "value" : "Réponse prête",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Anheften"
+ "value" : "Risposta pronta",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ピン"
+ "value" : "応答準備完了"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alfinete"
+ "value" : "Resposta pronta",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fijar"
+ "value" : "Respuesta lista",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vastzetten"
+ "value" : "Η απάντηση είναι έτοιμη"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Καρφίτσωμα"
+ "value" : "Svar klart"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Épingler"
+ "value" : "Antwoord klaar"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Stift"
+ "value" : "Response ready",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pin"
+ "value" : "Antwort bereit"
}
}
- }
+ },
+ "comment" : "Title of a notification when a response is ready."
},
- "No results found for: %@" : {
- "comment" : "A message to display when no search results are found. The argument is the search query.",
+ "Arguments" : {
+ "comment" : "A label displayed above the arguments of a request.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessun risultato trovato per: %@"
+ "value" : "Παράμετροι"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Keine Ergebnisse gefunden für: %@"
+ "value" : "Argumentos"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%@ の結果は見つかりませんでした"
+ "value" : "引数"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nenhum resultado encontrado para: %@"
+ "value" : "Argument"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se encontraron resultados para: %@"
+ "value" : "Argumente"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geen resultaten gevonden voor: %@"
+ "value" : "Argumenten",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν βρέθηκαν αποτελέσματα για: %@"
+ "value" : "Arguments"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucun résultat trouvé pour : %@"
+ "value" : "Argumentos",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inga resultat hittades för: %@"
+ "value" : "Arguments",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No results found for: %@"
+ "value" : "Argomenti",
+ "state" : "translated"
}
}
}
},
- "Some categories could not be inspected and are not reported as empty." : {
+ "Delete" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alcune categorie non hanno potuto essere controllate e non vengono segnalate come vuote."
+ "value" : "Löschen"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Einige Kategorien konnten nicht überprüft werden und werden nicht als leer gemeldet."
+ "value" : "Delete"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "一部のカテゴリを確認できなかったため、空として報告されていません"
+ "value" : "削除"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível inspecionar algumas categorias, pelo que não são comunicadas como vazias."
+ "value" : "Eliminar"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudieron inspeccionar algunas categorías y no se indican como vacías."
+ "value" : "Eliminar",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sommige categorieën konden niet worden geïnspecteerd en worden niet als leeg gemeld."
+ "value" : "Elimina",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ορισμένες κατηγορίες δεν ήταν δυνατό να ελεγχθούν και δεν αναφέρονται ως κενές."
+ "value" : "Supprimer",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Certaines catégories n’ont pas pu être inspectées et ne sont pas signalées comme vides."
+ "value" : "Verwijderen",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vissa kategorier kunde inte inspekteras och rapporteras inte som tomma."
+ "value" : "Radera",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Some categories could not be inspected and are not reported as empty."
+ "value" : "Διαγραφή"
}
}
}
},
- "Assistant" : {
- "comment" : "A name for the assistant.",
+ "The backup contains an invalid attachment reference." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Assistente"
+ "value" : "Η δημιουργία αντιγράφου περιέχει μη έγκυρη αναφορά συνημμένου.",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Assistent"
+ "value" : "バックアップに無効な添付ファイル参照が含まれています。",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "アシスタント"
+ "value" : "Die Sicherung enthält eine ungültige Anlagenreferenz."
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Assistente"
+ "value" : "A cópia de segurança contém uma referência de anexo inválida."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Asistente"
+ "value" : "La copia de seguridad contiene una referencia de archivo adjunto no válida."
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Assistent"
+ "value" : "La sauvegarde contient une référence de pièce jointe invalide.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Βοηθός"
+ "value" : "Säkerhetskopian innehåller en ogiltig bilagereferens."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Assistant"
+ "value" : "Il backup contiene un riferimento a un allegato non valido."
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Assistent"
+ "value" : "De back-up bevat een ongeldige bijlageverwijzing."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Assistant"
+ "value" : "The backup contains an invalid attachment reference."
}
}
}
},
- "Existing tags keep their assigned color." : {
- "comment" : "A description of the behavior of existing tags.",
+ "Memory" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "I tag esistenti mantengono il colore assegnato."
+ "value" : "Mémoire",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vorhandene Tags behalten ihre zugewiesene Farbe."
+ "value" : "Memoria",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "既存のタグは割り当てられた色を保持します。"
+ "value" : "Notizen",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "As etiquetas existentes mantêm a sua cor atribuída."
+ "value" : "Memoria",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Las etiquetas existentes mantienen su color asignado."
+ "value" : "メモリー",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bestaande tags behouden hun toegewezen kleur."
+ "value" : "Notes"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Οι υπάρχες ετικέτες διατηρούν το εκχωρημένο τους χρώμα."
+ "value" : "Memórias",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les tags existants conservent leur couleur attribuée."
+ "value" : "Geheugen"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Befintliga taggar behåller sin tilldelade färg."
+ "value" : "Anteckningar",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Existing tags keep their assigned color"
+ "value" : "Μνήμη"
}
}
- }
+ },
+ "comment" : "A title for a screen that lists and manages user-created notes."
},
- "Send File to Chat" : {
+ "How the assistant will address you. Max 50 characters." : {
+ "comment" : "A description of how the assistant will address the user.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Invia file alla chat"
+ "value" : "Cómo se dirigirá a ti el asistente. Máx 50 caracteres"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Datei an Chat senden"
+ "value" : "Πώς θα σας απευθύνεται ο βοηθός. Μέγιστο 50 χαρακτήρες."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ファイルをチャットに送信"
+ "value" : "Hur assistenten kommer att tilltala dig. Max 50 tecken."
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enviar ficheiro para o chat"
+ "value" : "Comment l’assistant s’adressera à vous. 50 caractères max."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enviar archivo al chat"
+ "value" : "How the assistant will address you. Max 50 characters"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bestand naar chat verzenden"
+ "value" : "Come l’assistente si rivolgerà a te. Max 50 caratteri"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αποστολή αρχείου στη συνομιλία"
+ "value" : "アシスタントがあなたを呼ぶ名前。最大50文字。",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Envoyer le fichier au chat"
+ "value" : "Wie der Assistent Sie ansprechen wird. Maximal 50 Zeichen"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Skicka fil till chatt"
+ "value" : "Hoe de assistent u zal aanspreken. Maximaal 50 tekens"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Send File to Chat"
+ "value" : "Como o assistente se dirigirá a si. Máx. 50 caracteres."
}
}
}
},
- "Start a private chat" : {
- "comment" : "A description of the private chat feature.",
+ "Export Backup" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Avvia una chat privata"
+ "value" : "Backup exportieren"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Privaten Chat starten"
+ "value" : "Export Backup"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "プライベートチャットを開始"
+ "value" : "Esporta backup"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Iniciar uma conversa privada"
+ "value" : "Back-up exporteren",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Iniciar un chat privado"
+ "value" : "Εξαγωγή αντιγράφου ασφαλείας",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Begin een privégesprek"
+ "value" : "Exporter la sauvegarde",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Démarrer une conversation privée"
+ "value" : "バックアップをエクスポート",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ξεκινήστε μια ιδιωτική συνομιλία"
+ "value" : "Exportar Cópia de Segurança",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Starta en privat chatt"
+ "value" : "Exportera säkerhetskopia"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Start a private chat"
+ "value" : "Exportar copia de seguridad"
}
}
}
},
- "Open Source" : {
- "comment" : "A feature of the onboarding view.",
+ "Copper" : {
+ "comment" : "Name of the icon with a copper color scheme.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Open Source"
+ "value" : "Koppar"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Open Source"
+ "value" : "Cuivre"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "オープンソース"
+ "value" : "Rame",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Código Aberto"
+ "value" : "Cobre"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Código abierto"
+ "value" : "銅"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Open source"
+ "value" : "Cobre",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ανοιχτού Κώδικα"
+ "value" : "Copper",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Open source"
+ "value" : "Koper",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Öppen källkod"
+ "value" : "Kupfer",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Open Source"
+ "value" : "Χάλκινο",
+ "state" : "translated"
}
}
}
},
- "Connect external tools" : {
- "comment" : "A tip that explains how to connect external tools to the model.",
+ "Restore Purchases" : {
+ "comment" : "A button that restores purchases.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Collega strumenti esterni"
+ "value" : "Ripristina acquisti"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Externe Werkzeuge verbinden"
+ "value" : "Aankopen herstellen",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "外部ツールを接続する"
+ "value" : "Επαναφορά αγορών"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ligar ferramentas externas"
+ "value" : "Restaurar compras",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conectar herramientas externas"
+ "value" : "Restore Purchases"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Externe tools verbinden"
+ "value" : "Restaurer les achats"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Σύνδεση εξωτερικών εργαλείων"
+ "value" : "Restaurar compras"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Connecter des outils externes"
+ "value" : "購入を復元"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anslut externa verktyg"
+ "value" : "Käufe wiederherstellen"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Connect external tools"
+ "value" : "Återställ köp"
}
}
}
},
- "Earlier" : {
- "comment" : "Title for a section of conversation data that includes conversations older than a week.",
+ "Start a new conversation to begin chatting" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Più vecchio"
+ "value" : "Begin een nieuw gesprek om te chatten"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Früher"
+ "value" : "Commencez une nouvelle conversation pour commencer à discuter",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "以前"
+ "value" : "Ξεκινήστε μια νέα συνομιλία για να αρχίσετε να συνομιλείτε",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mais antigo"
+ "value" : "Inicia una nueva conversación para comenzar a chatear"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anteriormente"
+ "value" : "Start a new conversation to begin chatting"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eerder"
+ "value" : "新しい会話を始めてチャットを開始してください"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προηγούμενα"
+ "value" : "Inicie uma nova conversa para começar a conversar"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Plus tôt"
+ "value" : "Starta en ny konversation för att börja chatta"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tidigare"
+ "value" : "Inizia una nuova conversazione per iniziare a chattare"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Earlier"
+ "value" : "Beginnen Sie eine neue Unterhaltung, um zu chatten"
}
}
}
},
- "Your synchronized data could not be safely inspected." : {
+ "1 tool available" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Non è stato possibile esaminare in sicurezza i tuoi dati sincronizzati."
+ "value" : "1 ferramenta disponível",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ihre synchronisierten Daten konnten nicht sicher überprüft werden."
+ "value" : "1 outil disponible",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期データを安全に検査できませんでした。"
+ "value" : "1 herramienta disponible",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível inspecionar os seus dados sincronizados em segurança."
+ "value" : "1 tool available",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudieron inspeccionar de forma segura tus datos sincronizados."
+ "value" : "1 διαθέσιμο εργαλείο",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Uw gesynchroniseerde gegevens konden niet veilig worden gecontroleerd."
+ "value" : "1 Tool verfügbar",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατός ο ασφαλής έλεγχος των συγχρονισμένων δεδομένων σας."
+ "value" : "利用可能なツール 1 個"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vos données synchronisées n’ont pas pu être inspectées en toute sécurité."
+ "value" : "1 tool beschikbaar",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dina synkroniserade data kunde inte granskas på ett säkert sätt."
+ "value" : "1 verktyg tillgängligt",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Your synchronized data could not be safely inspected."
+ "value" : "1 strumento disponibile"
}
}
- }
+ },
+ "comment" : "A description of the number of available tools."
},
- "or" : {
- "comment" : "Text for the \"or\" option in a list of options.",
+ "Enter a brief title for your suggestion" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "o"
+ "value" : "Ange en kort titel för ditt förslag"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "oder"
+ "value" : "Entrez un titre bref pour votre suggestion",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "または"
+ "value" : "Inserisci un titolo breve per il tuo suggerimento"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ou"
+ "value" : "Introduce un título breve para tu sugerencia",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "o"
+ "value" : "提案の簡単なタイトルを入力してください"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "of"
+ "value" : "Introduza um título breve para a sua sugestão"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ή"
+ "value" : "Voer een korte titel voor uw suggestie in"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ou"
+ "value" : "Enter a brief title for your suggestion",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "eller"
+ "value" : "Geben Sie einen kurzen Titel für Ihren Vorschlag ein"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "or"
+ "value" : "Εισαγάγετε έναν σύντομο τίτλο για την πρότασή σας"
}
}
}
},
- "Preparing image" : {
- "comment" : "A label for an in-progress image preparation task.",
+ "Memory could not be synchronized. Your local items are retained." : {
+ "comment" : "Error message displayed when an error occurs during synchronization.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Preparazione dell'immagine"
+ "value" : "Δεν ήταν δυνατός ο συγχρονισμός της μνήμης. Τα τοπικά στοιχεία σας διατηρήθηκαν."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bild wird vorbereitet"
+ "value" : "Minnet kunde inte synkroniseras. Dina lokala objekt har behållits.",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "画像を準備中"
+ "value" : "Het geheugen kon niet worden gesynchroniseerd. Je lokale items zijn behouden.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A preparar a imagem"
+ "value" : "メモリを同期できませんでした。ローカルの項目は保持されています。",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Preparando la imagen"
+ "value" : "No se pudo sincronizar la memoria. Tus elementos locales se conservaron.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Afbeelding voorbereiden"
+ "value" : "Der Speicher konnte nicht synchronisiert werden. Deine lokalen Elemente bleiben erhalten.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προετοιμασία εικόνας"
+ "value" : "La mémoire n’a pas pu être synchronisée. Vos éléments locaux sont conservés."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Préparation de l’image"
+ "value" : "Não foi possível sincronizar a memória. Os seus itens locais foram mantidos.",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Förbereder bild"
+ "value" : "Impossibile sincronizzare la memoria. Gli elementi locali sono stati conservati.",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Preparing image"
+ "value" : "Memory could not be synchronized. Your local items are retained."
}
}
}
},
- "The backup contains duplicate identifiers." : {
+ "Share your thoughts..." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il backup contiene identificatori duplicati."
+ "value" : "Share your thoughts..."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Sicherung enthält doppelte Bezeichner."
+ "value" : "Dela dina tankar..."
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Partagez vos pensées...",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "バックアップに重複した識別子が含まれています。"
+ "value" : "あなたの考えを共有してください..."
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O backup contém identificadores duplicados."
+ "value" : "Partilhe as suas ideias..."
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La copia de seguridad contiene identificadores duplicados."
+ "value" : "Comparte tus pensamientos...",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De back-up bevat dubbele identificaties."
+ "value" : "Deel je gedachten..."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La sauvegarde contient des identifiants en double."
+ "value" : "Condividi i tuoi pensieri...",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η δημιουργία αντιγράφου περιέχει διπλότυπους αναγνωριστικούς κωδικούς."
- }
- },
- "sv" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Säkerhetskopian innehåller dubblettidentifierare."
+ "value" : "Μοιραστείτε τις σκέψεις σας..."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The backup contains duplicate identifiers."
+ "value" : "Teile deine Gedanken...",
+ "state" : "translated"
}
}
}
},
- "All app data is synchronized" : {
+ "Feature tips can appear again when their conditions are met." : {
+ "comment" : "A message displayed in an alert when the user resets feature tips.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tutti i dati dell’app sono sincronizzati"
+ "value" : "Les astuces de fonctionnalité peuvent réapparaître lorsque leurs conditions sont remplies."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle App-Daten sind synchronisiert"
+ "value" : "Los consejos de funciones pueden aparecer de nuevo cuando se cumplan sus condiciones.",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "すべてのアプリデータが同期されています"
+ "value" : "Feature-Tipps können erneut angezeigt werden, wenn ihre Bedingungen erfüllt sind."
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Todos os dados da aplicação estão sincronizados"
+ "value" : "Feature tips can reappear when their conditions are met."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Todos los datos de la app están sincronizados"
+ "value" : "条件が満たされると、機能のヒントが再度表示されます。"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle appgegevens zijn gesynchroniseerd"
+ "value" : "Οι συμβουλές λειτουργιών μπορούν να εμφανιστούν ξανά όταν πληρούνται οι προϋποθέσεις τους.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Όλα τα δεδομένα της εφαρμογής έχουν συγχρονιστεί"
+ "value" : "As dicas de funcionalidades podem voltar a aparecer quando as suas condições forem cumpridas.",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toutes les données de l’app sont synchronisées"
+ "value" : "Functietips kunnen opnieuw verschijnen wanneer aan de voorwaarden wordt voldaan.",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "All appdata är synkroniserade"
+ "value" : "I suggerimenti delle funzionalità possono riapparire quando si verificano le condizioni.",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "All app data is synchronized"
+ "value" : "Tips om funktioner kan visas igen när deras villkor uppfylls."
}
}
}
},
- "Always Allow %@?" : {
- "comment" : "A confirmation prompt asking the user whether to allow a tool to continue executing without user intervention. The argument is the name of the tool.",
+ "Export" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Consentire sempre a %@?"
+ "value" : "Exportar"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%@ immer erlauben?"
+ "value" : "Exporteren",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%@を常に許可しますか?"
+ "value" : "Exportera",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Permitir sempre %@?"
+ "value" : "Esporta",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "¿Permitir siempre %@?"
+ "value" : "Export"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%@ altijd toestaan?"
+ "value" : "Exporter"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Να επιτρέπεται πάντα στο %@;"
+ "value" : "Εξαγωγή",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toujours autoriser %@ ?"
+ "value" : "Exportar"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tillåt alltid %@?"
+ "value" : "エクスポート",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Always Allow %@?"
+ "value" : "Exportieren"
}
}
- }
+ },
+ "comment" : "A label for exporting a conversation."
},
- "Edit" : {
- "comment" : "A button that opens a sheet for editing a template.",
+ "Hide Content in App Switcher" : {
+ "comment" : "A toggle that hides app content when switching between apps.",
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modifica"
+ "value" : "Nascondi contenuto nel selettore app",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bearbeiten"
+ "value" : "Ocultar contenido en el selector de aplicaciones"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "編集"
+ "value" : "Hide Content in App Switcher"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Editar"
+ "value" : "Masquer le contenu dans le sélecteur d’applications"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Editar"
+ "value" : "Inhalt im App-Umschalter verbergen"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bewerken"
+ "value" : "Appスイッチャーでコンテンツを非表示",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modifier"
+ "value" : "Inhoud verbergen in app-wisselaar",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επεξεργασία"
+ "value" : "Dölj innehåll i appväxlaren"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Redigera"
+ "value" : "Ocultar conteúdo no alternador de aplicações"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Edit"
+ "value" : "Απόκρυψη περιεχομένου στον εναλλάκτη εφαρμογών"
}
}
}
},
- "Try starting the chat again to securely save your server settings." : {
- "comment" : "A message that appears when the user has an error while saving their server settings.",
+ "Rename Conversation" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Prova a riavviare la chat per salvare in modo sicuro le impostazioni del server."
+ "value" : "Rename Conversation",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Versuche, den Chat erneut zu starten, um deine Servereinstellungen sicher zu speichern."
+ "value" : "Byt namn på konversation",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "チャットを再開して、サーバー設定を安全に保存してください。"
+ "value" : "Rinomina conversazione",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tente iniciar novamente a conversa para guardar em segurança as definições do servidor."
+ "value" : "Renomear Conversa"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Intenta iniciar el chat de nuevo para guardar de forma segura la configuración del servidor."
+ "value" : "Renommer la conversation",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Probeer de chat opnieuw te starten om je serverinstellingen veilig op te slaan."
+ "value" : "会話の名前を変更",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δοκιμάστε να ξεκινήσετε ξανά τη συνομιλία για να αποθηκεύσετε με ασφάλεια τις ρυθμίσεις του διακομιστή σας."
+ "value" : "Gesprek hernoemen"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Essayez de redémarrer la conversation pour enregistrer vos paramètres de serveur en toute sécurité."
+ "value" : "Renombrar conversación"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Försök starta chatten igen för att spara dina serverinställningar på ett säkert sätt."
+ "value" : "Konversation umbenennen"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Try starting the chat again to securely save your server settings."
+ "value" : "Μετονομασία Συνομιλίας",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A dialog box title that appears when renaming a conversation."
},
- "Find conversation settings, favourites, files, and export options in this menu." : {
- "comment" : "A description of the chat options tip.",
+ "Review iCloud account" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Trova impostazioni della conversazione, preferiti, file e opzioni di esportazione in questo menu."
+ "value" : "Ελέγξτε τον λογαριασμό iCloud",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Finde Konversationseinstellungen, Favoriten, Dateien und Exportoptionen in diesem Menü."
+ "value" : "iCloudアカウントを確認する",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "このメニューで会話設定、お気に入り、ファイル、エクスポートオプションを見つけられます。"
+ "value" : "iCloud-Account überprüfen"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Encontre definições de conversa, favoritos, ficheiros e opções de exportação neste menu."
+ "value" : "Rever a conta do iCloud",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Encuentra la configuración de conversación, favoritos, archivos y opciones de exportación en este menú."
+ "value" : "Revisar la cuenta de iCloud"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vind gespreksinstellingen, favorieten, bestanden en exportopties in dit menu."
+ "value" : "Granska iCloud-kontot"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Βρείτε τις ρυθμίσεις συνομιλίας, τα αγαπημένα, τα αρχεία και τις επιλογές εξαγωγής σε αυτό το μενού."
+ "value" : "Vérifier le compte iCloud"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Trouvez les paramètres de conversation, favoris, fichiers et options d’exportation dans ce menu."
+ "value" : "Controlla l’account iCloud",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hitta konversationsinställningar, favoriter, filer och exportalternativ i den här menyn."
+ "value" : "Review iCloud account",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Find conversation settings, favorites, files, and export options in this menu."
+ "value" : "iCloud-account controleren"
}
}
}
},
- "A brief description about yourself. Max 500 characters." : {
- "comment" : "A description of the field that allows the user to add a",
+ "Delete %@" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Una breve descrizione di te stesso. Max 500 caratteri."
+ "value" : "%@ löschen"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eine kurze Beschreibung von dir. Maximal 500 Zeichen."
+ "value" : "Διαγραφή %@"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "自分についての簡単な説明。最大500文字まで。"
+ "value" : "Delete %@"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Uma breve descrição sobre si. Máx. 500 caracteres."
+ "value" : "Radera %@",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Una breve descripción sobre ti. Máximo 500 caracteres."
+ "value" : "Eliminar %@"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Een korte beschrijving van jezelf. Maximaal 500 tekens."
+ "value" : "Verwijder %@",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μια σύντομη περιγραφή για εσάς. Μέγιστο 500 χαρακτήρες."
+ "value" : "Elimina %@"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Une brève description de vous-même. Max 500 caractères."
+ "value" : "%@を削除",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "En kort beskrivning om dig själv. Max 500 tecken."
+ "value" : "Supprimer %@"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A brief description about yourself. Max 500 characters."
+ "value" : "Eliminar %@"
}
}
}
},
- "Details" : {
- "comment" : "A section that provides more details about a model.",
+ "%lld attachments" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dettagli"
+ "value" : "%lld pièces jointes"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Details"
+ "value" : "%lld Anhänge"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "詳細"
+ "value" : "%lld anexos",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Detalhes"
+ "value" : "添付ファイル %lld 個"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Detalles"
+ "value" : "%lld bijlagen",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Details"
+ "value" : "%lld συνημμένα"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Détails"
+ "value" : "%lld bilagor",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Λεπτομέρειες"
+ "value" : "%lld archivos adjuntos"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Detaljer"
+ "value" : "%lld attachments"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Details"
+ "value" : "%lld allegati"
}
}
}
},
- "Rejected" : {
+ "Add tag..." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rifiutato"
+ "value" : "Tag hinzufügen...",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abgelehnt"
+ "value" : "Προσθήκη ετικέτας...",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "拒否されました"
+ "value" : "Add tag...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rejeitado"
+ "value" : "Lägg till tagg...",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rechazado"
+ "value" : "Adicionar etiqueta...",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geweigerd"
+ "value" : "Tag toevoegen...",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Απορρίφθηκε"
+ "value" : "Aggiungi tag..."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rejeté"
+ "value" : "タグを追加..."
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Avvisad"
+ "value" : "Ajouter un tag..."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rejected"
+ "value" : "Agregar etiqueta..."
}
}
- }
+ },
+ "comment" : "A placeholder for a text field that adds a tag to a conversation."
},
- "Image generation requires a text prompt without attachments." : {
- "comment" : "Error message displayed when trying to generate an image without providing a text prompt.",
+ "Teal" : {
+ "comment" : "Name of the color teal.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La generazione dell'immagine richiede un prompt testuale senza allegati."
+ "value" : "Τιρκουάζ"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Für die Bildgenerierung ist eine Texteingabe ohne Anhänge erforderlich."
+ "value" : "Blågrön"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "画像を生成するには、添付ファイルなしでテキストプロンプトを入力してください。"
+ "value" : "ティール"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A geração de imagens requer um prompt de texto sem anexos."
+ "value" : "Blauwgroen",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La generación de imágenes requiere un texto descriptivo sin archivos adjuntos."
+ "value" : "Verde azulado"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voor het genereren van een afbeelding is een tekstprompt zonder bijlagen vereist."
+ "value" : "Sarcelle"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La génération d’images nécessite une invite textuelle sans pièces jointes."
+ "value" : "Blaugrün"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η δημιουργία εικόνας απαιτεί μια περιγραφή κειμένου χωρίς συνημμένα."
+ "value" : "Verde-azulado"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bildgenerering kräver en textprompt utan bilagor."
+ "value" : "Turchese"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Image generation requires a text prompt without attachments."
+ "value" : "Teal",
+ "state" : "translated"
}
}
}
},
- "Custom Templates" : {
+ "Review the current iCloud account before any local or cloud data is changed." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modelli personalizzati"
+ "value" : "Ελέγξτε τον τρέχοντα λογαριασμό iCloud πριν αλλάξουν δεδομένα τοπικά ή στο cloud."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Benutzerdefinierte Vorlagen"
+ "value" : "Review the current iCloud account before any local or cloud data is changed.",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "カスタムテンプレート"
+ "value" : "ローカルまたはクラウドのデータを変更する前に、現在のiCloudアカウントを確認する"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modelos personalizados"
+ "value" : "Revisa la cuenta de iCloud actual antes de cambiar cualquier dato local o en la nube.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Plantillas personalizadas"
+ "value" : "Reveja a conta iCloud atual antes de alterar quaisquer dados locais ou na nuvem."
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aangepaste sjablonen"
+ "value" : "Vérifiez le compte iCloud actuel avant toute modification des données locales ou cloud.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσαρμοσμένα πρότυπα"
+ "value" : "Esamina l’account iCloud attuale prima di modificare i dati locali o nel cloud."
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modèles personnalisés"
+ "value" : "Controleer het huidige iCloud-account voordat er lokale of cloudgegevens worden gewijzigd.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anpassade mallar"
+ "value" : "Granska det aktuella iCloud-kontot innan några lokala data eller molndata ändras."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Custom Templates"
+ "value" : "Überprüfe den aktuellen iCloud-Account, bevor lokale oder Cloud-Daten geändert werden."
}
}
}
},
- "No cloud changes will be written until required downloads finish." : {
+ "Conversations" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nessuna modifica al cloud verrà scritta finché i download richiesti non saranno terminati."
+ "value" : "会話",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cloud-Änderungen werden erst geschrieben, wenn die erforderlichen Downloads abgeschlossen sind."
+ "value" : "Conversations",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "必要なダウンロードが完了するまで、クラウドの変更は書き込まれません。"
+ "value" : "Conversazioni",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não serão guardadas alterações na nuvem até que as transferências necessárias terminem."
+ "value" : "Conversaciones",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se escribirán cambios en la nube hasta que finalicen las descargas requeridas."
+ "value" : "Conversas"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Er worden geen wijzigingen in de cloud opgeslagen totdat de vereiste downloads zijn voltooid."
+ "value" : "Συνομιλίες"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν θα καταγραφούν αλλαγές στο cloud μέχρι να ολοκληρωθούν οι απαιτούμενες λήψεις."
+ "value" : "Unterhaltungen",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucune modification du cloud ne sera écrite avant la fin des téléchargements requis."
+ "value" : "Conversations",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga ändringar i molnet skrivs förrän nödvändiga nedladdningar är klara."
+ "value" : "Konversationer"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No cloud changes will be written until required downloads finish."
+ "value" : "Gesprekken"
}
}
}
},
- "Deleted from memory: %@" : {
- "comment" : "A notification that a memory item has been deleted. The argument is the content of the memory item.",
+ "The MCP tool arguments do not match the tool schema." : {
+ "comment" : "Error description when the MCP tool arguments do not match the tool schema.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminato dalla memoria: %@"
+ "value" : "De argumenten van de MCP-tool komen niet overeen met het toolschema."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aus dem Speicher gelöscht: %@"
+ "value" : "Τα επιχειρήματα του εργαλείου MCP δεν ταιριάζουν με το σχήμα του εργαλείου."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メモリから削除しました: %@"
+ "value" : "Les arguments de l’outil MCP ne correspondent pas au schéma de l’outil."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminado da memória: %@"
+ "value" : "Los argumentos de la herramienta MCP no coinciden con el esquema de la herramienta."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminado de la memoria: %@"
+ "value" : "The MCP tool arguments do not match the tool schema."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verwijderd uit geheugen: %@"
+ "value" : "MCPツールの引数がツールスキーマと一致しません。"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαγράφηκε από τη μνήμη: %@"
+ "value" : "Os argumentos da ferramenta MCP não correspondem ao esquema da ferramenta.",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supprimé de la mémoire : %@"
+ "value" : "Argumenten för MCP-verktyget stämmer inte överens med verktygsschemat."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Borttaget från minnet: %@"
+ "value" : "Gli argomenti dello strumento MCP non corrispondono allo schema dello strumento.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deleted from memory: %@"
+ "value" : "Die Argumente des MCP-Tools stimmen nicht mit dem Toolschema überein.",
+ "state" : "translated"
}
}
}
},
- "No conversations found with the selected tag" : {
- "comment" : "A message displayed when there are no conversations with a specific tag.",
+ "tag.vision" : {
+ "comment" : "Label for the \"Vision\" capability.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessuna conversazione trovata con il tag selezionato"
+ "value" : "Vision"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keine Unterhaltungen mit dem ausgewählten Tag gefunden"
+ "value" : "Vision",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "選択したタグの会話は見つかりませんでした"
+ "value" : "Vision",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nenhuma conversa encontrada com a etiqueta selecionada"
+ "value" : "Vision"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se encontraron conversaciones con la etiqueta seleccionada"
+ "value" : "Vision"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geen gesprekken gevonden met het geselecteerde label"
+ "value" : "Vision",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν βρέθηκαν συνομιλίες με την επιλεγμένη ετικέτα"
+ "value" : "Vision",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucune conversation trouvée avec le tag sélectionné"
+ "value" : "Vision",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga konversationer hittades med den valda taggen"
+ "value" : "Vision"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No conversations found with the selected tag"
+ "value" : "Vision"
}
}
}
},
- "New Tag" : {
- "comment" : "A label displayed above a text field to add a new tag.",
+ "The backup file is invalid." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nuovo tag"
+ "value" : "Säkerhetskopieringsfilen är ogiltig.",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neues Tag"
+ "value" : "The backup file is invalid."
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "新しいタグ"
+ "value" : "Il file di backup non è valido."
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nova Etiqueta"
+ "value" : "O ficheiro de backup é inválido.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nueva etiqueta"
+ "value" : "Le fichier de sauvegarde est invalide."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nieuwe tag"
+ "value" : "バックアップファイルが無効です。"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Νέα ετικέτα"
+ "value" : "Het back-upbestand is ongeldig.",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nouveau tag"
+ "value" : "El archivo de respaldo no es válido.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ny tagg"
+ "value" : "Die Sicherungsdatei ist ungültig."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "New Tag"
+ "value" : "Το αρχείο αντιγράφου ασφαλείας είναι άκυρο."
}
}
}
},
- "Start a new chat or search your conversations." : {
- "comment" : "Widget description.",
+ "The message to fork from could not be found." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Avvia una nuova chat o cerca nelle tue conversazioni."
+ "value" : "Le message à partir duquel bifurquer est introuvable.",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beginnen Sie einen neuen Chat oder durchsuchen Sie Ihre Unterhaltungen."
+ "value" : "Impossibile trovare il messaggio da cui fare il fork.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "新しいチャットを開始するか、会話を検索してください。"
+ "value" : "Το μήνυμα για διακλάδωση δεν βρέθηκε."
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inicie uma nova conversa ou pesquise nas suas conversas."
+ "value" : "The message to fork from could not be found.",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inicia un nuevo chat o busca en tus conversaciones."
+ "value" : "Het bericht om van te forken kon niet worden gevonden."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Begin een nieuw gesprek of doorzoek je gesprekken."
+ "value" : "No se pudo encontrar el mensaje del cual bifurcar.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ξεκινήστε μια νέα συνομιλία ή αναζητήστε τις συνομιλίες σας."
+ "value" : "A mensagem para a qual se pretende criar um fork não foi encontrada.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Commencez une nouvelle conversation ou recherchez dans vos discussions."
+ "value" : "フォーク元のメッセージが見つかりませんでした。",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Starta en ny chatt eller sök i dina konversationer."
+ "value" : "Die Nachricht, von der verzweigt werden soll, konnte nicht gefunden werden."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Start a new chat or search your conversations"
+ "value" : "Meddelandet att förgrena från kunde inte hittas.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error message displayed when the message to fork from cannot be found."
},
- "Deny Once" : {
- "comment" : "A label for denying a request once.",
+ "Author" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nega una volta"
+ "value" : "Autor",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Einmal ablehnen"
+ "value" : "Autor",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "一度だけ拒否する"
+ "value" : "Auteur",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Recusar uma vez"
+ "value" : "作成者",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Denegar una vez"
+ "value" : "Auteur"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eenmalig weigeren"
+ "value" : "Συγγραφέας",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Refuser une fois"
+ "value" : "Author"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Άρνηση μία φορά"
+ "value" : "Autore"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neka en gång"
+ "value" : "Författare"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deny Once"
+ "value" : "Autor"
}
}
}
},
- "No comments yet. Be the first to comment!" : {
+ "Sakura" : {
+ "comment" : "The Japanese name for the sakura emoji.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nessun commento ancora. Sii il primo a commentare!"
+ "value" : "Sakura",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Noch keine Kommentare. Sei der Erste, der kommentiert!"
+ "value" : "Sakura"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "まだコメントはありません。最初のコメントを投稿しましょう!"
+ "value" : "Sakura",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ainda sem comentários. Seja o primeiro a comentar!"
+ "value" : "Sakura"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aún no hay comentarios. ¡Sé el primero en comentar!"
+ "value" : "Sakura",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nog geen reacties. Wees de eerste die reageert!"
+ "value" : "桜"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν υπάρχουν σχόλια ακόμα. Γίνε ο πρώτος που θα σχολιάσει!"
+ "value" : "Sakura",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pas encore de commentaires. Soyez le premier à commenter !"
+ "value" : "Sakura",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inga kommentarer än. Var den första att kommentera!"
+ "value" : "Kirschblüte",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No comments yet. Be the first to comment!"
+ "value" : "Σακούρα"
}
}
}
},
- "Selected" : {
- "comment" : "A label that indicates that a given option is selected.",
+ "Each conversation can use a different model. Features depend on its capabilities." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Selezionato"
+ "value" : "Κάθε συνομιλία μπορεί να χρησιμοποιεί διαφορετικό μοντέλο. Οι λειτουργίες εξαρτώνται από τις δυνατότητές του.",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ausgewählt"
+ "value" : "Ogni conversazione può utilizzare un modello diverso. Le funzionalità dipendono dalle sue capacità."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "選択済み"
+ "value" : "Cada conversación puede usar un modelo diferente. Las funciones dependen de sus capacidades."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Selecionado"
+ "value" : "Elke conversatie kan een ander model gebruiken. Functies zijn afhankelijk van de mogelijkheden ervan."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Seleccionado"
+ "value" : "各会話は異なるモデルを使用できます。機能はその能力に依存します。"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geselecteerd"
+ "value" : "Jede Unterhaltung kann ein anderes Modell verwenden. Die Funktionen hängen von dessen Fähigkeiten ab."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επιλεγμένο"
+ "value" : "Chaque conversation peut utiliser un modèle différent. Les fonctionnalités dépendent de ses capacités."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sélectionné"
+ "value" : "Each conversation can use a different model. Features depend on its capabilities."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vald"
+ "value" : "Cada conversa pode usar um modelo diferente. As funcionalidades dependem das suas capacidades."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Selected"
+ "value" : "Varje konversation kan använda en annan modell. Funktionerna beror på dess kapacitet."
}
}
- }
+ },
+ "comment" : "A description of the features available for each model."
},
- "Work" : {
- "comment" : "A placeholder tag.",
+ "Unable to save the backup file." : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lavoro"
+ "value" : "No se pudo guardar el archivo de respaldo."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Arbeit"
+ "value" : "Kunde inte spara säkerhetskopian."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "作業"
+ "value" : "Impossible d’enregistrer le fichier de sauvegarde."
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Trabalho"
+ "value" : "Unable to save the backup file."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Trabajo"
+ "value" : "Αδυναμία αποθήκευσης του αρχείου αντιγράφου ασφαλείας."
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Werk"
+ "value" : "Impossibile salvare il file di backup.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Travail"
+ "value" : "バックアップファイルを保存できませんでした。",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εργασία"
+ "value" : "Die Sicherungsdatei konnte nicht gespeichert werden.",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Arbete"
+ "value" : "Kan het back-upbestand niet opslaan."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Work"
+ "value" : "Não foi possível guardar o ficheiro de cópia de segurança.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error message displayed when there is an issue writing the backup file."
},
- "Swipe left to remove a tag." : {
- "comment" : "A footer displayed under the list of tags.",
+ "Holo" : {
+ "comment" : "\"Holo\" is a Japanese term for \"3D\" or \"VR\".",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Scorri a sinistra per rimuovere un tag."
+ "value" : "Holo",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nach links wischen, um ein Tag zu entfernen."
+ "value" : "Holo"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "タグを削除するには左にスワイプしてください。"
+ "value" : "Holo",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deslize para a esquerda para remover uma etiqueta."
+ "value" : "Holo"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Desliza a la izquierda para eliminar una etiqueta"
+ "value" : "ホロ",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Veeg naar links om een tag te verwijderen"
+ "value" : "Holo"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Σύρετε αριστερά για να αφαιρέσετε μια ετικέτα."
+ "value" : "Holo"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Faites glisser vers la gauche pour supprimer une étiquette."
+ "value" : "Holo"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Svep åt vänster för att ta bort en tagg."
+ "value" : "Holo",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Swipe left to remove a tag"
+ "value" : "Ολό"
}
}
}
},
- "Answer a tricky question" : {
+ "A synchronized conversation attachment has an invalid path." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rispondi a una domanda difficile"
+ "value" : "Une pièce jointe de conversation synchronisée possède un chemin non valide."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beantworte eine knifflige Frage"
+ "value" : "Un allegato della conversazione sincronizzata ha un percorso non valido.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "難しい質問に答える"
+ "value" : "A synchronized conversation attachment has an invalid path."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Responder a uma pergunta difícil"
+ "value" : "Een bijlage van een gesynchroniseerd gesprek heeft een ongeldig pad."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Responder una pregunta difícil"
+ "value" : "Ein synchronisierter Unterhaltungsanhang enthält einen ungültigen Pfad."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beantwoord een lastige vraag"
+ "value" : "Un archivo adjunto sincronizado de la conversación tiene una ruta no válida."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Απάντησε σε μια δύσκολη ερώτηση"
+ "value" : "En synkroniserad bilaga i konversationen har en ogiltig sökväg."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Répondre à une question délicate"
+ "value" : "同期された会話の添付ファイルのパスが無効です。"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Svara på en klurig fråga"
+ "value" : "Um anexo de conversa sincronizado tem um caminho inválido."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Answer a tricky question"
+ "value" : "Ένα συνημμένο συγχρονισμένης συνομιλίας έχει μη έγκυρη διαδρομή.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error description for a missing attachment."
},
- "Start a conversation" : {
- "comment" : "Subtitle for the \"New Chat\" action button in the Quick Actions widget.",
+ "%lld of %lld MCP tools enabled. Availability and permissions can also be managed from the chat input bar." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inizia una conversazione"
+ "value" : "%1$lld van %2$lld MCP-tools ingeschakeld. Beschikbaarheid en machtigingen kunnen ook worden beheerd via de invoerbalk van de chat.",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konversation starten"
+ "value" : "%1$lld de %2$lld herramientas de MCP habilitadas. La disponibilidad y los permisos también se pueden gestionar desde la barra de entrada del chat."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会話を始める"
+ "value" : "%1$lld από %2$lld εργαλεία MCP ενεργοποιημένα. Η διαθεσιμότητα και τα δικαιώματα μπορούν επίσης να διαχειριστούν από τη γραμμή εισαγωγής συνομιλίας."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Iniciar uma conversa"
+ "value" : "%1$lld\/%2$lld個のMCPツールが有効です。利用可能状況と権限は、チャット入力バーからも管理できます。",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Iniciar una conversación"
+ "value" : "%1$lld von %2$lld MCP-Tools aktiviert. Verfügbarkeit und Berechtigungen können auch über die Chat-Eingabeleiste verwaltet werden.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Begin een gesprek"
+ "value" : "%1$lld di %2$lld strumenti MCP abilitati. La disponibilità e le autorizzazioni possono essere gestite anche dalla barra di input della chat."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ξεκινήστε μια συνομιλία"
+ "state" : "new",
+ "value" : "%1$lld of %2$lld MCP tools enabled. Availability and permissions can also be managed from the chat input bar."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Démarrer une conversation"
+ "value" : "%1$lld av %2$lld MCP-verktyg aktiverade. Tillgänglighet och behörigheter kan också hanteras från chattens inmatningsfält."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Starta en konversation"
+ "value" : "%1$lld de %2$lld ferramentas MCP ativadas. A disponibilidade e as permissões também podem ser geridas a partir da barra de entrada do chat."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Start a conversation"
+ "value" : "%1$lld sur %2$lld outils MCP activés. La disponibilité et les autorisations peuvent également être gérées depuis la barre de saisie du chat."
}
}
- }
+ },
+ "comment" : "A summary of the number of enabled and total MCP tools."
},
- "Text to Speech" : {
- "comment" : "A section title for a list of text-to-speech models.",
+ "Let the model find current information and include the sources it used." : {
+ "comment" : "A description of the Web Search feature.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sintesi vocale"
+ "value" : "Laissez le modèle trouver des informations actuelles et inclure les sources utilisées.",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Text-zu-Sprache"
+ "value" : "Deixe o modelo encontrar informações atuais e incluir as fontes que utilizou."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "テキスト読み上げ"
+ "value" : "モデルに最新情報を検索させ、使用した情報源を含めるようにします。",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Texto para Fala"
+ "value" : "Permite que el modelo busque información actual e incluya las fuentes que utilizó.",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Texto a voz"
+ "value" : "Lassen Sie das Modell aktuelle Informationen finden und die verwendeten Quellen angeben.",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tekst-naar-spraak"
+ "value" : "Allow the model to find current information and include the sources it used.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κείμενο σε Ομιλία"
+ "value" : "Lascia che il modello trovi informazioni aggiornate e includa le fonti utilizzate."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synthèse vocale"
+ "value" : "Låt modellen hitta aktuell information och inkludera de källor den använde."
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Text-till-tal"
+ "value" : "Laat het model actuele informatie vinden en de gebruikte bronnen vermelden.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Text to Speech"
+ "value" : "Αφήστε το μοντέλο να βρει τρέχουσες πληροφορίες και να συμπεριλάβει τις πηγές που χρησιμοποίησε.",
+ "state" : "translated"
}
}
}
},
- "Chat without saving history" : {
- "comment" : "Localized title for a shortcut action that opens a private chat.",
+ "Delete Conversation" : {
+ "comment" : "A confirmation dialog title for deleting a conversation.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chat senza salvare la cronologia"
+ "value" : "Radera konversation",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chat ohne Verlauf speichern"
+ "value" : "Supprimer la conversation"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "履歴を保存しないチャット"
+ "value" : "Elimina conversazione"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chat sem guardar histórico"
+ "value" : "Gesprek verwijderen",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chat sin guardar historial"
+ "value" : "会話を削除"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chatten zonder geschiedenis op te slaan"
+ "value" : "Eliminar Conversa",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Discussion sans enregistrer l’historique"
+ "value" : "Eliminar conversación"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συνομιλία χωρίς αποθήκευση ιστορικού"
+ "value" : "Delete Conversation"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chatt utan att spara historik"
+ "value" : "Konversation löschen"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chat without saving history"
+ "value" : "Διαγραφή Συνομιλίας",
+ "state" : "translated"
}
}
}
},
- "Export Backup" : {
+ "Find past conversations" : {
+ "comment" : "Subtitle for the \"Search\" action button in the Quick Actions widget.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esporta backup"
+ "value" : "Rechercher des conversations passées"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Backup exportieren"
+ "value" : "Trova conversazioni passate"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "バックアップをエクスポート"
+ "value" : "Find past conversations",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Exportar Cópia de Segurança"
+ "value" : "Vind eerdere gesprekken"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Exportar copia de seguridad"
+ "value" : "Vergangene Unterhaltungen finden",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Back-up exporteren"
+ "value" : "Buscar conversaciones pasadas"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εξαγωγή αντιγράφου ασφαλείας"
+ "value" : "Hitta tidigare konversationer"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Exporter la sauvegarde"
+ "value" : "過去の会話を検索"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Exportera säkerhetskopia"
+ "value" : "Encontrar conversas anteriores"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Export Backup"
+ "value" : "Βρείτε προηγούμενες συνομιλίες"
}
}
}
},
- "Approximate cost of this conversation based on token usage and model pricing." : {
- "comment" : "A description of the cost of a conversation.",
+ "Share text, links, images, or PDFs from any app into OpenClient." : {
+ "comment" : "A description of how to use the share extension.",
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Costo approssimativo di questa conversazione basato sull’uso dei token e sul prezzo del modello."
- }
- },
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ungefähre Kosten dieses Gesprächs basierend auf Tokenverbrauch und Modellpreisen."
+ "value" : "Teile Text, Links, Bilder oder PDFs aus jeder App mit OpenClient.",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "この会話の概算コスト(トークン使用量とモデル料金に基づく)"
+ "value" : "Partagez du texte, des liens, des images ou des PDF depuis n’importe quelle application vers OpenClient."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Custo aproximado desta conversa com base no uso de tokens e preços do modelo."
+ "value" : "Deel tekst, links, afbeeldingen of PDF's vanuit elke app met OpenClient."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Costo aproximado de esta conversación basado en el uso de tokens y la tarifa del modelo."
+ "value" : "Comparte texto, enlaces, imágenes o PDFs desde cualquier aplicación en OpenClient."
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geschatte kosten van dit gesprek op basis van tokengebruik en modelprijzen."
+ "value" : "Condividi testo, link, immagini o PDF da qualsiasi app in OpenClient."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Coût approximatif de cette conversation basé sur l’utilisation des tokens et la tarification du modèle."
+ "value" : "任意のアプリからテキスト、リンク、画像、PDFをOpenClientに共有する",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Προσεγγιστικό κόστος αυτής της συνομιλίας βάσει χρήσης tokens και τιμολόγησης μοντέλου."
+ "value" : "Dela text, länkar, bilder eller PDF-filer från vilken app som helst till OpenClient.",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ungefärlig kostnad för denna konversation baserat på tokenanvändning och modellpriser."
+ "value" : "Partilhe texto, links, imagens ou PDFs de qualquer aplicação para o OpenClient.",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Approximate cost of this conversation based on token usage and model pricing."
+ "value" : "Share text, links, images, or PDFs from any app to OpenClient.",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Μοιραστείτε κείμενο, συνδέσμους, εικόνες ή αρχεία PDF από οποιαδήποτε εφαρμογή στο OpenClient.",
+ "state" : "translated"
}
}
}
},
- "Refresh to try loading this MCP server again." : {
- "comment" : "A description of the action to be taken when the user wants to retry loading the MCP server.",
+ "Send File to Chat" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Aggiorna per provare a caricare di nuovo questo server MCP."
- }
- },
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aktualisieren, um zu versuchen, diesen MCP-Server erneut zu laden."
+ "value" : "Skicka fil till chatt",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "再読み込みして、このMCPサーバーの読み込みをもう一度お試しください。"
+ "value" : "Bestand naar chat verzenden"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Atualize para tentar carregar novamente este servidor MCP."
+ "value" : "Αποστολή αρχείου στη συνομιλία",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Actualiza para intentar cargar este servidor MCP de nuevo."
+ "value" : "Enviar archivo al chat"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vernieuw om te proberen deze MCP-server opnieuw te laden."
+ "value" : "Datei an Chat senden",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ανανεώστε για να δοκιμάσετε να φορτώσετε ξανά αυτόν τον διακομιστή MCP."
+ "value" : "ファイルをチャットに送信"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Actualisez pour essayer de charger à nouveau ce serveur MCP."
+ "value" : "Envoyer le fichier au chat",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Uppdatera för att försöka läsa in den här MCP-servern igen."
+ "value" : "Invia file alla chat",
+ "state" : "translated"
}
},
"en" : {
+ "stringUnit" : {
+ "value" : "Send File to Chat",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Refresh to try loading this MCP server again."
+ "value" : "Enviar ficheiro para o chat"
}
}
}
},
- "You are a concise summarizer. Extract the key points from any text the user provides. Present summaries in clear bullet points. Focus on the most important information and omit redundant details." : {
- "comment" : "Description of the summarizer assistant.",
+ "PDF Document" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sei un riassuntore conciso. Estrai i punti chiave da qualsiasi testo fornito dall’utente. Presenta i riassunti in elenchi puntati chiari. Concentrati sulle informazioni più importanti ed elimina i dettagli ridondanti."
+ "value" : "PDFドキュメント"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Du bist ein prägnanter Zusammenfasser. Extrahiere die wichtigsten Punkte aus jedem vom Nutzer bereitgestellten Text. Präsentiere Zusammenfassungen in klaren Aufzählungspunkten. Konzentriere dich auf die wichtigsten Informationen und lasse redundante Details weg."
+ "value" : "PDF-Dokument"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "簡潔な要約者です。 \nユーザーが提供するテキストから重要なポイントを抽出します。 \n要約は明確な箇条書きで提示します。 \n最も重要な情報に焦点を当て、冗長な詳細は省きます。"
+ "value" : "Documento PDF"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "És um resumidor conciso. Extrai os pontos-chave de qualquer texto fornecido pelo utilizador. Apresenta os resumos em tópicos claros. Foca-te na informação mais importante e omite detalhes redundantes."
+ "value" : "Έγγραφο PDF"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eres un resumidor conciso. Extrae los puntos clave de cualquier texto que el usuario proporcione. Presenta resúmenes en viñetas claras. Enfócate en la información más importante y omite detalles redundantes."
+ "value" : "PDF-dokument",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je bent een beknopte samenvatter. Haal de belangrijkste punten uit elke tekst die de gebruiker aanlevert. Presenteer samenvattingen in duidelijke opsommingstekens. Richt je op de belangrijkste informatie en laat overbodige details weg."
+ "value" : "PDF-document",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vous êtes un résumé concis. Extrait les points clés de tout texte fourni par l’utilisateur. Présente les résumés sous forme de puces claires. Concentre-toi sur l’information la plus importante et omets les détails redondants."
+ "value" : "Document PDF",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Είστε συνοπτικός περιληπτής. Εξάγετε τα βασικά σημεία από οποιοδήποτε κείμενο παρέχει ο χρήστης. Παρουσιάζετε τις περιλήψεις με σαφή κουκκίδες. Επικεντρωθείτε στις πιο σημαντικές πληροφορίες και παραλείψτε τις επαναλαμβανόμενες λεπτομέρειες."
+ "value" : "Documento PDF",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Du är en kortfattad sammanfattare. Extrahera nyckelpunkterna från all text användaren tillhandahåller. Presentera sammanfattningar i tydliga punktlistor. Fokusera på den viktigaste informationen och utelämna överflödiga detaljer."
+ "value" : "Documento PDF"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "- Concise summarizer \n- Extracts key points from user-provided text \n- Presents summaries in clear bullet points \n- Focuses on most important information \n- Omits redundant details"
+ "value" : "PDF Document",
+ "state" : "translated"
}
}
}
},
- "Ask Every Time" : {
- "comment" : "Text displayed in a picker when a user is asked for permission to use an external tool.",
+ "In Progress" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chiedi ogni volta"
+ "value" : "En cours"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Jedes Mal fragen"
+ "value" : "Bezig",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "毎回確認する"
+ "value" : "In Progress",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Perguntar sempre"
+ "value" : "En progreso"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Preguntar siempre"
+ "value" : "Σε εξέλιξη",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elke keer vragen"
+ "value" : "In corso",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Demander à chaque fois"
+ "value" : "In Bearbeitung",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Να γίνεται ερώτηση κάθε φορά"
+ "value" : "進行中",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fråga varje gång"
+ "value" : "Em progresso",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ask Every Time"
+ "value" : "Pågår"
}
}
}
},
- "%lld messages compacted" : {
+ "OpenClient" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "%lld messaggi compressi"
- }
- },
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld Nachrichten komprimiert"
+ "value" : "OpenClient",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld 件のメッセージを圧縮しました"
+ "value" : "OpenClient",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld mensagens compactadas"
+ "value" : "OpenClient"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld mensajes compactados"
+ "value" : "OpenClient"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld berichten samengevoegd"
+ "value" : "OpenClient"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld συμπιεσμένα μηνύματα"
+ "value" : "OpenClient"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld messages compactés"
+ "value" : "OpenClient",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld meddelanden komprimerade"
+ "value" : "OpenClient"
}
},
"en" : {
+ "stringUnit" : {
+ "value" : "OpenClient",
+ "state" : "translated"
+ }
+ },
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld messages compacted"
+ "value" : "OpenClient"
}
}
- }
+ },
+ "comment" : "The name of the app."
},
- "Control what the model remembers" : {
- "comment" : "A tip that explains how to control the user's memory.",
+ "Could not write file to the shared container" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Controlla ciò che il modello ricorda"
+ "value" : "共有コンテナにファイルを書き込めませんでした",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Steuern, was das Modell sich merkt"
+ "value" : "Impossibile scrivere il file nel contenitore condiviso",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "モデルの記憶を制御する"
+ "value" : "Could not write file to the shared container",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Controle o que o modelo recorda"
+ "value" : "No se pudo escribir el archivo en el contenedor compartido"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Controla lo que el modelo recuerda"
+ "value" : "Não foi possível gravar o ficheiro no contentor partilhado",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beheer wat het model onthoudt"
+ "value" : "Δεν ήταν δυνατή η εγγραφή του αρχείου στον κοινόχρηστο φάκελο",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Έλεγχος του τι θυμάται το μοντέλο"
+ "value" : "Datei konnte nicht im gemeinsamen Container gespeichert werden",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contrôlez ce que le modèle retient"
+ "value" : "Impossible d’écrire le fichier dans le conteneur partagé"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Styr vad modellen kommer ihåg"
+ "value" : "Kunde inte skriva fil till den delade behållaren"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Control what the model remembers"
+ "value" : "Kon bestand niet naar de gedeelde container schrijven",
+ "state" : "translated"
}
}
}
},
- "Issue Image" : {
- "comment" : "Title of the section where the user can attach an image of the issue.",
+ "Tap + to get started" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Immagine del problema"
+ "value" : "Tik op + om te beginnen"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Problemfoto"
+ "value" : "Πατήστε + για να ξεκινήσετε",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "問題の画像"
+ "value" : "Toca + para comenzar"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Imagem do Problema"
+ "value" : "Tippe auf +, um zu beginnen"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Imagen del problema"
+ "value" : "Tap + to get started"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afbeelding van het probleem"
+ "value" : "Toque + para começar"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εικόνα προβλήματος"
+ "value" : "Tryck på + för att börja"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Image du problème"
+ "value" : "開始するには+をタップしてください",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bild på problemet"
+ "value" : "Tocca + per iniziare"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Issue Image"
+ "value" : "Appuyez sur + pour commencer"
}
}
}
},
- "Chats" : {
+ "Camera" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chat"
+ "value" : "カメラ",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chats"
+ "value" : "Appareil photo",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "チャット"
+ "value" : "Camera"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conversas"
+ "value" : "Fotocamera",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chats"
+ "value" : "Camera"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chats"
+ "value" : "Câmara"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Discussions"
+ "value" : "Cámara"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συζητήσεις"
+ "value" : "Kamera"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chattar"
+ "value" : "Κάμερα"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chats"
+ "value" : "Kamera",
+ "state" : "translated"
}
}
}
},
- "Reset" : {
+ "Could not load tip options. Please try again later." : {
+ "comment" : "Error message displayed when there is an issue loading the tip options.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Reimposta"
+ "value" : "Δεν ήταν δυνατή η φόρτωση των επιλογών φιλοδωρήματος. Δοκιμάστε ξανά αργότερα.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zurücksetzen"
+ "value" : "Kan de fooiopties niet laden. Probeer het later opnieuw."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "リセット"
+ "value" : "Could not load tip options. Please try again later."
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Repor"
+ "value" : "Impossible de charger les options de pourboire. Veuillez réessayer plus tard.",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Restablecer"
+ "value" : "Impossibile caricare le opzioni di mancia. Riprova più tardi.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Resetten"
+ "value" : "No se pudieron cargar las opciones de propina. Por favor, inténtelo de nuevo más tarde."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Επαναφορά"
+ "value" : "Não foi possível carregar as opções de gorjeta. Por favor, tente novamente mais tarde.",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Réinitialiser"
+ "value" : "Kunde inte ladda dricksalternativ. Försök igen senare.",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Återställ"
+ "value" : "チップオプションを読み込めませんでした。後でもう一度お試しください。"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reset"
+ "value" : "Tippoptionen konnten nicht geladen werden. Bitte versuchen Sie es später erneut."
}
}
}
},
- "Add to Favourites" : {
- "comment" : "A label for a button that adds a message to the user's favourites.",
+ "Cancel" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aggiungi ai Preferiti"
+ "value" : "Avbryt"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zu Favoriten hinzufügen"
+ "value" : "Cancel"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "お気に入りに追加"
+ "value" : "Annulla",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Adicionar aos Favoritos"
+ "value" : "Cancelar"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Añadir a Favoritos"
+ "value" : "Annuler"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toevoegen aan favorieten"
+ "value" : "キャンセル",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσθήκη στα Αγαπημένα"
+ "value" : "Annuleren"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ajouter aux favoris"
+ "value" : "Cancelar"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Lägg till i favoriter"
+ "value" : "Abbrechen",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Add to Favorites"
+ "value" : "Ακύρωση"
}
}
}
},
- "1 server available" : {
- "comment" : "A label that indicates that 1 MCP server is available.",
+ "Image Generation" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 server disponibile"
+ "value" : "Image Generation",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 Server verfügbar"
+ "value" : "Bildgenerering",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "利用可能なサーバー 1 台"
+ "value" : "Generazione Immagini"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 servidor disponível"
+ "value" : "Geração de Imagens",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 servidor disponible"
+ "value" : "Génération d’images"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 server beschikbaar"
+ "value" : "画像生成",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 serveur disponible"
+ "value" : "Beeldgeneratie",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 διαθέσιμος διακομιστής"
+ "value" : "Generación de imágenes"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 server tillgänglig"
+ "value" : "Bildgenerierung",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 server available"
+ "value" : "Δημιουργία Εικόνων",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A name for an LLM model that generates images."
},
- "Could not establish a secure connection to the server." : {
+ "sk-..." : {
+ "comment" : "A placeholder for the API key field.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile stabilire una connessione sicura con il server."
+ "value" : "sk-..."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Es konnte keine sichere Verbindung zum Server hergestellt werden."
+ "value" : "sk-...",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "サーバーへの安全な接続を確立できませんでした。"
+ "value" : "sk-...",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível estabelecer uma ligação segura ao servidor."
+ "value" : "sk-...",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudo establecer una conexión segura con el servidor."
+ "value" : "sk-...",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Er kon geen beveiligde verbinding met de server worden gemaakt."
+ "value" : "sk-...",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossible d’établir une connexion sécurisée avec le serveur."
+ "value" : "sk-...",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η δημιουργία ασφαλούς σύνδεσης με τον διακομιστή."
+ "value" : "sk-..."
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kunde inte upprätta en säker anslutning till servern."
+ "value" : "sk-..."
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Could not establish a secure connection to the server."
+ "value" : "sk-...",
+ "state" : "translated"
}
}
}
},
- "Data Analyst" : {
- "comment" : "Description of a prompt template for a data analyst assistant.",
+ "%lld messages compacted" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Analista Dati"
+ "value" : "%lld συμπιεσμένα μηνύματα",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Datenanalyst"
+ "value" : "%lld 件のメッセージを圧縮しました"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "データアナリスト"
+ "value" : "%lld Nachrichten komprimiert"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Analista de Dados"
+ "value" : "%lld mensagens compactadas",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Analista de datos"
+ "value" : "%lld mensajes compactados",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Data-analist"
+ "value" : "%lld meddelanden komprimerade"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Analyste de données"
+ "value" : "%lld messages compactés"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αναλυτής Δεδομένων"
+ "value" : "%lld messaggi compressi",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dataanalytiker"
+ "value" : "%lld messages compacted"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Data Analyst"
+ "value" : "%lld berichten samengevoegd"
}
}
}
},
- "All Synchronized Data" : {
+ "Speech recognition permission was not granted." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tutti i dati sincronizzati"
+ "value" : "La permission de reconnaissance vocale n’a pas été accordée."
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alle synchronisierten Daten"
+ "value" : "Die Erlaubnis zur Spracherkennung wurde nicht erteilt."
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "すべての同期済みデータ"
+ "value" : "A permissão para reconhecimento de voz não foi concedida."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Todos os dados sincronizados"
+ "value" : "No se concedió permiso para el reconocimiento de voz."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Todos los datos sincronizados"
+ "value" : "Η άδεια αναγνώρισης ομιλίας δεν δόθηκε.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle gesynchroniseerde gegevens"
+ "value" : "Toestemming voor spraakherkenning is niet verleend.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toutes les données synchronisées"
+ "value" : "音声認識の許可が付与されていません。",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Όλα τα συγχρονισμένα δεδομένα"
+ "value" : "Speech recognition permission was not granted.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "All synkroniserade data"
+ "value" : "Tillstånd för taligenkänning beviljades inte.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "All Synchronized Data"
+ "value" : "Il permesso per il riconoscimento vocale non è stato concesso.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error message when speech recognition permission is not granted."
},
- "Blue" : {
- "comment" : "Name of the color blue.",
+ "Connect external tools" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Blu"
+ "value" : "Connect external tools",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Blau"
+ "value" : "Anslut externa verktyg",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "青"
+ "value" : "Collega strumenti esterni"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Azul"
+ "value" : "Ligar ferramentas externas",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Azul"
+ "value" : "Connecter des outils externes"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Blauw"
+ "value" : "外部ツールを接続する",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μπλε"
+ "value" : "Externe tools verbinden"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bleu"
+ "value" : "Conectar herramientas externas",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Blå"
+ "value" : "Externe Werkzeuge verbinden",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Blue"
+ "value" : "Σύνδεση εξωτερικών εργαλείων",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A tip that explains how to connect external tools to the model."
},
- "tag.parallel.tools" : {
- "comment" : "Label for a capability that allows parallel function calls.",
+ "1 attachment" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Parallel Tools"
+ "value" : "1 attachment"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Parallel Tools"
+ "value" : "1 pièce jointe",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Parallel Tools"
+ "value" : "1 bilaga",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Parallel Tools"
+ "value" : "1 allegato",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Parallel Tools"
+ "value" : "1 συνημμένο"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Parallel Tools"
+ "value" : "1 archivo adjunto",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Parallel Tools"
+ "value" : "1 anexo"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Parallel Tools"
+ "value" : "添付ファイル 1 件"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Parallel Tools"
+ "value" : "1 Anhang",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Parallel Tools"
+ "value" : "1 bijlage"
}
}
}
},
- "Teal" : {
- "comment" : "Name of the color teal.",
+ "Prompt templates" : {
+ "comment" : "A prompt template.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Turchese"
+ "value" : "Prompt templates"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Blaugrün"
+ "value" : "Promptmallar"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Modèles d’invite",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ティール"
+ "value" : "プロンプトテンプレート"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verde-azulado"
+ "value" : "Modelos de prompts",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verde azulado"
+ "value" : "Plantillas de prompts"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Blauwgroen"
- }
- },
- "el" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Τιρκουάζ"
+ "value" : "Promptsjablonen"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sarcelle"
+ "value" : "Modelli di prompt",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Blågrön"
+ "value" : "Πρότυπα προτροπών",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Teal"
+ "value" : "Vorlagen für Prompts",
+ "state" : "translated"
}
}
}
},
- "Server-provided description: %@" : {
- "comment" : "A label that displays a server-provided description of a tool.",
+ "Are you sure you want to delete this suggestion?" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Descrizione fornita dal server: %@"
+ "value" : "Are you sure you want to delete this suggestion?"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vom Server bereitgestellte Beschreibung: %@"
+ "value" : "Är du säker på att du vill ta bort detta förslag?"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "サーバー提供の説明:%@"
+ "value" : "Sei sicuro di voler eliminare questo suggerimento?",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Descrição fornecida pelo servidor: %@"
+ "value" : "Tem a certeza de que pretende eliminar esta sugestão?"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Descripción proporcionada por el servidor: %@"
+ "value" : "Êtes-vous sûr de vouloir supprimer cette suggestion ?"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Door de server verstrekte beschrijving: %@"
+ "value" : "この提案を削除してもよろしいですか?",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Description fournie par le serveur : %@"
+ "value" : "Weet je zeker dat je deze suggestie wilt verwijderen?"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Περιγραφή παρεχόμενη από τον διακομιστή: %@"
+ "value" : "¿Seguro que quieres eliminar esta sugerencia?"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serverbeskrivning: %@"
+ "value" : "Möchten Sie diesen Vorschlag wirklich löschen?",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Server-provided description: %@"
+ "value" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή την πρόταση;"
}
}
}
},
- "The MCP server configuration changed. Request the tool again before executing it." : {
- "comment" : "Error message when the MCP server configuration has changed.",
+ "Color" : {
+ "comment" : "A label for the color of a tag.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La configurazione del server MCP è cambiata. Richiedi nuovamente lo strumento prima di eseguirlo."
+ "value" : "Couleur"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die MCP-Serverkonfiguration wurde geändert. Fordern Sie das Tool erneut an, bevor Sie es ausführen."
+ "value" : "Colore",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPサーバーの設定が変更されました。実行する前に、もう一度ツールをリクエストしてください。"
+ "value" : "Color"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A configuração do servidor MCP foi alterada. Solicite novamente a ferramenta antes de a executar."
+ "value" : "Kleur"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La configuración del servidor MCP ha cambiado. Solicita la herramienta de nuevo antes de ejecutarla."
+ "value" : "Farbe"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De configuratie van de MCP-server is gewijzigd. Vraag de tool opnieuw op voordat je deze uitvoert."
+ "value" : "Color",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La configuration du serveur MCP a changé. Demandez à nouveau l’outil avant de l’exécuter."
+ "value" : "Färg",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η διαμόρφωση του διακομιστή MCP άλλαξε. Ζητήστε ξανά το εργαλείο πριν το εκτελέσετε."
+ "value" : "色",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-serverkonfigurationen har ändrats. Begär verktyget igen innan du kör det."
+ "value" : "Cor"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The MCP server configuration changed. Request the tool again before executing it."
+ "value" : "Χρώμα"
}
}
}
},
- "Images and documents you attach to messages will appear here." : {
- "comment" : "A description of the content of the view.",
+ "Are you sure you want to delete this conversation? This action cannot be undone." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le immagini e i documenti che alleghi ai messaggi appariranno qui."
+ "value" : "この会話を削除してもよろしいですか?この操作は元に戻せません。",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bilder und Dokumente, die Sie Nachrichten anhängen, werden hier angezeigt."
+ "value" : "Är du säker på att du vill radera den här konversationen? Denna åtgärd kan inte ångras.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メッセージに添付した画像や書類はここに表示されます。"
+ "value" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή τη συνομιλία; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "As imagens e documentos que anexar às mensagens aparecerão aqui."
+ "value" : "Tem a certeza de que pretende eliminar esta conversa? Esta ação não pode ser desfeita."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Las imágenes y documentos que adjuntes a los mensajes aparecerán aquí."
+ "value" : "Möchten Sie diese Unterhaltung wirklich löschen? Diese Aktion kann nicht rückgängig gemacht werden.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afbeeldingen en documenten die je aan berichten toevoegt, verschijnen hier."
+ "value" : "Weet u zeker dat u dit gesprek wilt verwijderen? Deze actie kan niet ongedaan worden gemaakt."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Οι εικόνες και τα έγγραφα που επισυνάπτετε στα μηνύματα θα εμφανίζονται εδώ."
+ "value" : "Are you sure you want to delete this conversation? This action cannot be undone."
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Les images et documents que vous joignez aux messages apparaîtront ici."
+ "value" : "¿Seguro que quieres eliminar esta conversación? Esta acción no se puede deshacer.",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bilder och dokument som du bifogar i meddelanden visas här."
+ "value" : "Voulez-vous vraiment supprimer cette conversation ? Cette action est irréversible.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Images and documents you attach to messages will appear here."
+ "value" : "Sei sicuro di voler eliminare questa conversazione? Questa azione non può essere annullata."
}
}
- }
+ },
+ "comment" : "A confirmation dialog message for deleting a conversation."
},
- "MCP servers are configured in your LiteLLM server. Fetch to see what's available, enable tools, and choose their execution permissions." : {
- "comment" : "A description of MCP servers.",
+ "Quantum entanglement is a phenomenon where..." : {
+ "comment" : "Text of a message preview in a conversation.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "I server MCP sono configurati nel tuo server LiteLLM. Recuperali per vedere cosa è disponibile, abilitare gli strumenti e scegliere le relative autorizzazioni di esecuzione."
+ "value" : "Quantenverschränkung ist ein Phänomen, bei dem...",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-Server sind auf Ihrem LiteLLM-Server konfiguriert. Rufen Sie sie ab, um zu sehen, was verfügbar ist, Tools zu aktivieren und deren Ausführungsberechtigungen auszuwählen."
+ "value" : "Η κβαντική εμπλοκή είναι ένα φαινόμενο όπου..."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCPサーバーはLiteLLMサーバーで設定されています。利用可能なサーバーを確認するには取得し、ツールを有効にして、実行権限を選択してください。"
+ "value" : "Quantum entanglement is a phenomenon where...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Os servidores MCP estão configurados no seu servidor LiteLLM. Obtenha a lista para ver o que está disponível, ative as ferramentas e escolha as respetivas permissões de execução."
+ "value" : "Kvantintrassling är ett fenomen där...",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Los servidores MCP están configurados en tu servidor de LiteLLM. Obtén la lista para ver qué hay disponible, habilita las herramientas y elige sus permisos de ejecución."
+ "value" : "O entrelaçamento quântico é um fenómeno onde..."
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP-servers zijn geconfigureerd in je LiteLLM-server. Haal ze op om te zien wat er beschikbaar is, tools in te schakelen en hun uitvoeringsrechten te kiezen."
+ "value" : "Quantumverstrengeling is een fenomeen waarbij...",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Οι διακομιστές MCP έχουν ρυθμιστεί στον διακομιστή LiteLLM. Κάντε ανάκτηση για να δείτε τι είναι διαθέσιμο, ενεργοποιήστε τα εργαλεία και επιλέξτε τα δικαιώματα εκτέλεσής τους."
+ "value" : "L’entanglement quantistico è un fenomeno in cui...",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les serveurs MCP sont configurés sur votre serveur LiteLLM. Récupérez-les pour voir ce qui est disponible, activer les outils et choisir leurs autorisations d’exécution."
+ "value" : "量子もつれは、...という現象です"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-servrar konfigureras på din LiteLLM-server. Hämta för att se vad som är tillgängligt, aktivera verktyg och välja deras körningsbehörigheter."
+ "value" : "L’intrication quantique est un phénomène où..."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP servers are configured in your LiteLLM server. Fetch to see what's available, enable tools, and choose their execution permissions."
+ "value" : "El entrelazamiento cuántico es un fenómeno donde..."
}
}
}
},
- "Merge and Enable Sync" : {
+ "Edit Tags" : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Unisci e abilita la sincronizzazione"
+ "value" : "Modifica tag",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zusammenführen und Synchronisierung aktivieren"
+ "value" : "Tags bewerken"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "統合して同期を有効にする"
+ "value" : "Επεξεργασία ετικετών",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fundir e ativar a sincronização"
+ "value" : "Edit Tags",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Combinar y activar la sincronización"
+ "value" : "Editar etiquetas",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Samenvoegen en synchronisatie inschakelen"
+ "value" : "Modifier les tags"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συγχώνευση και ενεργοποίηση συγχρονισμού"
+ "value" : "Editar Etiquetas"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fusionner et activer la synchronisation"
+ "value" : "タグを編集",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Slå ihop och aktivera synkronisering"
+ "value" : "Tags bearbeiten"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Merge and Enable Sync"
+ "value" : "Redigera taggar"
}
}
- }
+ },
+ "comment" : "A button that opens a sheet for editing a conversation's tags."
},
- "Share text, links, images, or PDFs from any app into OpenClient." : {
- "comment" : "A description of how to use the share extension.",
+ "The agent timed out before completing the response." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Condividi testo, link, immagini o PDF da qualsiasi app in OpenClient."
+ "value" : "O agente expirou antes de concluir a resposta.",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Teile Text, Links, Bilder oder PDFs aus jeder App mit OpenClient."
+ "value" : "The agent timed out before completing the response.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "任意のアプリからテキスト、リンク、画像、PDFをOpenClientに共有する"
+ "value" : "L'agente ha superato il tempo limite prima di completare la risposta.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Partilhe texto, links, imagens ou PDFs de qualquer aplicação para o OpenClient."
+ "value" : "Le délai de réponse de l’agent a expiré avant la fin."
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Comparte texto, enlaces, imágenes o PDFs desde cualquier aplicación en OpenClient."
+ "value" : "De agent heeft te lang gewacht om de reactie te voltooien."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deel tekst, links, afbeeldingen of PDF's vanuit elke app met OpenClient."
+ "value" : "Der Agent hat die Antwort nicht rechtzeitig abgeschlossen.",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μοιραστείτε κείμενο, συνδέσμους, εικόνες ή αρχεία PDF από οποιαδήποτε εφαρμογή στο OpenClient."
+ "value" : "Ο πράκτορας διέκοψε τη σύνδεση πριν ολοκληρώσει την απάντηση."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Partagez du texte, des liens, des images ou des PDF depuis n’importe quelle application vers OpenClient."
+ "value" : "エージェントが応答を完了する前にタイムアウトしました。",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dela text, länkar, bilder eller PDF-filer från vilken app som helst till OpenClient."
+ "value" : "Agenten tog för lång tid på sig att slutföra svaret."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Share text, links, images, or PDFs from any app to OpenClient."
+ "value" : "El agente agotó el tiempo antes de completar la respuesta."
}
}
}
},
- "comments" : {
+ "iCloud data changed during synchronization." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "commenti"
+ "value" : "iCloud-data ändrades under synkroniseringen."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kommentare"
+ "value" : "Les données iCloud ont changé pendant la synchronisation."
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "コメント"
+ "value" : "I dati di iCloud sono cambiati durante la sincronizzazione.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "comentários"
+ "value" : "iCloud-gegevens zijn tijdens de synchronisatie gewijzigd."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "comentarios"
+ "value" : "同期中にiCloudデータが変更されました。"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "reacties"
+ "value" : "Os dados do iCloud foram alterados durante a sincronização."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "σχόλια"
+ "value" : "iCloud data changed during synchronization.",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "commentaires"
+ "value" : "Los datos de iCloud cambiaron durante la sincronización.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "kommentarer"
+ "value" : "iCloud-Daten wurden während der Synchronisierung geändert."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "comments"
+ "value" : "Τα δεδομένα iCloud άλλαξαν κατά τον συγχρονισμό."
}
}
- }
+ },
+ "comment" : "Error description when iCloud data changes during synchronization."
},
- "Retry iCloud synchronization." : {
+ "Connection successful" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Riprovare la sincronizzazione con iCloud."
+ "value" : "Connection successful",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-Synchronisierung wiederholen"
+ "value" : "Anslutning lyckades"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudの同期を再試行する"
+ "value" : "Connexion réussie"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tentar novamente a sincronização com o iCloud."
+ "value" : "Ligação bem-sucedida"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Reintentar la sincronización con iCloud."
+ "value" : "接続に成功しました",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-synchronisatie opnieuw proberen."
+ "value" : "Conexión exitosa"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επανάληψη συγχρονισμού με το iCloud."
+ "value" : "Connessione riuscita"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Réessayer la synchronisation iCloud."
+ "value" : "Verbinding geslaagd"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Försök synkronisera iCloud igen."
+ "value" : "Σύνδεση επιτυχής"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Retry iCloud synchronization."
+ "value" : "Verbindung erfolgreich"
}
}
}
},
- "No search tools loaded. Tap \"Load Available Tools\" to fetch them from your server." : {
- "comment" : "A label that appears when there are no search tools available.",
+ "Issue Image" : {
+ "comment" : "Title of the section where the user can attach an image of the issue.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nessuno strumento di ricerca caricato. Tocca \"Carica strumenti disponibili\" per recuperarli dal server."
+ "value" : "Imagem do Problema",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keine Suchwerkzeuge geladen. Tippen Sie auf „Verfügbare Werkzeuge laden“, um sie von Ihrem Server abzurufen."
+ "value" : "問題の画像",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "検索ツールが読み込まれていません。「利用可能なツールを読み込む」をタップしてサーバーから取得してください。"
+ "value" : "Afbeelding van het probleem"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nenhuma ferramenta de pesquisa carregada. Toque em \"Carregar Ferramentas Disponíveis\" para as obter do seu servidor."
+ "value" : "Problemfoto"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se cargaron herramientas de búsqueda. Toca \"Cargar herramientas disponibles\" para obtenerlas desde tu servidor."
+ "value" : "Εικόνα προβλήματος"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geen zoekhulpmiddelen geladen. Tik op \"Beschikbare hulpmiddelen laden\" om ze van uw server op te halen."
+ "value" : "Bild på problemet",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aucun outil de recherche chargé. Touchez « Charger les outils disponibles » pour les récupérer depuis votre serveur."
+ "value" : "Issue Image"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν έχουν φορτωθεί εργαλεία αναζήτησης. Πατήστε «Φόρτωση Διαθέσιμων Εργαλείων» για να τα κατεβάσετε από τον διακομιστή σας."
+ "value" : "Immagine del problema"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga sökverktyg laddade. Tryck på \"Ladda tillgängliga verktyg\" för att hämta dem från din server."
+ "value" : "Imagen del problema"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No search tools loaded. Tap \"Load Available Tools\" to fetch them from your server."
+ "value" : "Image du problème",
+ "state" : "translated"
}
}
}
},
- "Notifications disabled" : {
- "comment" : "A label that indicates that notifications are disabled.",
+ "Suggest Features" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Notifiche disattivate"
+ "value" : "Funktionen vorschlagen",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Benachrichtigungen deaktiviert"
+ "value" : "Suggest Features",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "通知が無効になっています"
+ "value" : "Sugerir funciones",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Notificações desativadas"
+ "value" : "機能提案"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Notificaciones desactivadas"
+ "value" : "Sugerir Funcionalidades"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Meldingen uitgeschakeld"
+ "value" : "Suggerisci funzionalità",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Notifications désactivées"
+ "value" : "Suggérer des fonctionnalités",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ειδοποιήσεις απενεργοποιημένες"
+ "value" : "Functies voorstellen",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aviseringar avstängda"
+ "value" : "Föreslå funktioner",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Notifications disabled"
+ "value" : "Προτείνετε λειτουργίες",
+ "state" : "translated"
}
}
}
},
- "Insufficient storage" : {
+ "Your pinned conversation appears here." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Spazio di archiviazione insufficiente"
+ "value" : "Your pinned conversation appears here.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nicht genügend Speicherplatz"
+ "value" : "Deine angeheftete Unterhaltung erscheint hier.",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ストレージ容量が不足しています"
+ "value" : "Tu conversación fijada aparece aquí.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Armazenamento insuficiente"
+ "value" : "Η καρφιτσωμένη συνομιλία σας εμφανίζεται εδώ.",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Almacenamiento insuficiente"
+ "value" : "Din fastnålad konversation visas här."
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Onvoldoende opslagruimte"
+ "value" : "Je vastgezette gesprek verschijnt hier."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ανεπαρκής χώρος αποθήκευσης"
+ "value" : "Votre conversation épinglée apparaît ici.",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Espace de stockage insuffisant"
+ "value" : "La tua conversazione fissata appare qui.",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Otillräckligt lagringsutrymme"
+ "value" : "A sua conversa fixada aparece aqui."
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Insufficient storage"
+ "value" : "ピン留めした会話がここに表示されます。",
+ "state" : "translated"
}
}
}
},
- "~$%.4f" : {
- "shouldTranslate" : false,
- "comment" : "A monetary value displayed in the chat interface."
- },
- "Opens OpenClient and starts a new conversation." : {
+ "Unsupported data format" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apre OpenClient e avvia una nuova conversazione."
+ "value" : "Formato de dados não suportado",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Öffnet OpenClient und startet eine neue Unterhaltung."
+ "value" : "Nicht unterstütztes Datenformat"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClientを開き、新しい会話を開始します。"
+ "value" : "Format de données non pris en charge"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abre o OpenClient e inicia uma nova conversa."
+ "value" : "Μη υποστηριζόμενη μορφή δεδομένων",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abre OpenClient y comienza una nueva conversación."
+ "value" : "Formato de datos no compatible"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Opent OpenClient en start een nieuw gesprek."
+ "value" : "Niet-ondersteunde gegevensindeling",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ανοίγει το OpenClient και ξεκινά μια νέα συνομιλία."
+ "value" : "サポートされていないデータ形式"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ouvre OpenClient et démarre une nouvelle conversation."
+ "value" : "Datformatet stöds inte",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Öppnar OpenClient och startar en ny konversation."
+ "value" : "Unsupported data format",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Opens OpenClient and starts a new conversation."
+ "value" : "Formato dati non supportato",
+ "state" : "translated"
}
}
}
},
- "Attach a photo or PDF so the model can analyse its content." : {
- "comment" : "A description of how to attach images or PDFs to a message.",
+ "Loading suggestions..." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Allega una foto o un PDF in modo che il modello possa analizzarne il contenuto."
+ "value" : "提案を読み込み中..."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fügen Sie ein Foto oder eine PDF-Datei an, damit das Modell den Inhalt analysieren kann."
+ "value" : "Chargement des suggestions...",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "写真またはPDFを添付して、モデルが内容を分析できるようにしてください。"
+ "value" : "Loading suggestions...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anexe uma foto ou PDF para que o modelo possa analisar o seu conteúdo."
+ "value" : "Caricamento suggerimenti..."
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Adjunta una foto o PDF para que el modelo pueda analizar su contenido."
+ "value" : "Suggesties laden...",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voeg een foto of PDF toe zodat het model de inhoud kan analyseren."
+ "value" : "A carregar sugestões..."
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Joignez une photo ou un PDF pour que le modèle puisse analyser son contenu."
+ "value" : "Cargando sugerencias...",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επισυνάψτε μια φωτογραφία ή PDF ώστε το μοντέλο να αναλύσει το περιεχόμενό του."
+ "value" : "Laddar förslag..."
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bifoga ett foto eller en PDF så att modellen kan analysera dess innehåll."
+ "value" : "Φόρτωση προτάσεων..."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Attach a photo or PDF so the model can analyze its content."
+ "value" : "Vorschläge werden geladen..."
}
}
}
},
- "You'll need eggs, guanciale, Pecorino Romano..." : {
- "comment" : "Last message preview text in a conversation widget.",
+ "$%.4f \/ 1K tokens" : {
+ "shouldTranslate" : false,
+ "comment" : "A label that shows the cost of input in USD per 1K tokens."
+ },
+ "Enter a URL such as `openclient:\/\/chat?text=Summarise this`." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ti serviranno uova, guanciale, Pecorino Romano..."
+ "value" : "Introduza um URL como `openclient:\/\/chat?text=Summarise this`"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Du brauchst Eier, Guanciale, Pecorino Romano..."
+ "value" : "Geben Sie eine URL ein, z. B. `openclient:\/\/chat?text=Summarise this`.",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "卵、グアンチャーレ、ペコリーノ・ロマーノが必要です..."
+ "value" : "Entrez une URL telle que `openclient:\/\/chat?text=Summarise this`."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vai precisar de ovos, guanciale, Pecorino Romano..."
+ "value" : "Εισαγάγετε μια διεύθυνση URL όπως `openclient:\/\/chat?text=Summarise this`"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Necesitarás huevos, guanciale, Pecorino Romano..."
+ "value" : "Introduce una URL como `openclient:\/\/chat?text=Summarise this`.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je hebt eieren, guanciale, Pecorino Romano nodig..."
+ "value" : "Voer een URL in zoals `openclient:\/\/chat?text=Summarise this`.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Θα χρειαστείς αυγά, γκουαντσιάλε, Πεκορίνο Ρομάνο..."
+ "value" : "`openclient:\/\/chat?text=Summarise this` のようなURLを入力してください",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vous aurez besoin d'œufs, de guanciale, de Pecorino Romano..."
+ "value" : "Enter a URL such as `openclient:\/\/chat?text=Summarise this`"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Du behöver ägg, guanciale, Pecorino Romano..."
+ "value" : "Ange en URL som `openclient:\/\/chat?text=Summarise this`"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "You'll need eggs, guanciale, Pecorino Romano..."
+ "value" : "Inserisci un URL come `openclient:\/\/chat?text=Summarise this`",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Step 3 in the process of creating a shortcut to open the OpenClient app with a specific URL."
},
- "The model can request this external tool, but execution will be blocked." : {
- "comment" : "A warning message that appears when a user denies a tool's access.",
+ "The MCP tool permission changed before it could execute." : {
+ "comment" : "Error message when the MCP tool permission changes before it can execute.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Il modello può richiedere questo strumento esterno, ma l’esecuzione verrà bloccata."
+ "value" : "MCP-verktygsbehörigheten ändrades innan det kunde köras.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Das Modell kann dieses externe Tool anfordern, aber die Ausführung wird blockiert."
+ "value" : "L’autorisation de l’outil MCP a changé avant son exécution.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "モデルはこの外部ツールをリクエストできますが、実行はブロックされます。"
+ "value" : "L'autorizzazione dello strumento MCP è cambiata prima che potesse essere eseguito."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O modelo pode solicitar esta ferramenta externa, mas a execução será bloqueada."
+ "value" : "El permiso de la herramienta MCP cambió antes de que pudiera ejecutarse.",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El modelo puede solicitar esta herramienta externa, pero la ejecución se bloqueará."
+ "value" : "The MCP tool permission changed before it could execute.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Het model kan deze externe tool aanvragen, maar de uitvoering wordt geblokkeerd."
+ "value" : "De MCP-toolmachtiging is gewijzigd voordat deze kon worden uitgevoerd.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το μοντέλο μπορεί να ζητήσει αυτό το εξωτερικό εργαλείο, αλλά η εκτέλεση θα αποκλειστεί."
+ "value" : "A permissão da ferramenta MCP foi alterada antes de esta poder ser executada."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le modèle peut demander cet outil externe, mais son exécution sera bloquée."
+ "value" : "実行前にMCPツールの権限が変更されました。",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modellen kan begära det här externa verktyget, men körningen kommer att blockeras."
+ "value" : "Die Berechtigung für das MCP-Tool wurde geändert, bevor es ausgeführt werden konnte.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The model can request this external tool, but execution will be blocked."
+ "value" : "Η άδεια του εργαλείου MCP άλλαξε πριν μπορέσει να εκτελεστεί.",
+ "state" : "translated"
}
}
}
},
- "Thank you! ☕" : {
- "comment" : "A title for a system alert that appears after a user purchases a tip.",
+ "The attachment file could not be found." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Grazie! ☕"
+ "value" : "添付ファイルが見つかりませんでした。"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Danke! ☕"
+ "value" : "Impossibile trovare il file allegato.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ありがとうございます!☕"
+ "value" : "The attachment file could not be found."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Obrigado! ☕"
+ "value" : "No se ha podido encontrar el archivo adjunto.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "¡Gracias! ☕"
+ "value" : "Não foi possível encontrar o ficheiro anexado.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bedankt! ☕"
+ "value" : "Die Anhangsdatei konnte nicht gefunden werden."
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Merci ! ☕"
+ "value" : "Δεν ήταν δυνατή η εύρεση του συνημμένου αρχείου."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ευχαριστούμε! ☕"
+ "value" : "Le fichier joint est introuvable.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tack! ☕"
+ "value" : "Bilagefilen kunde inte hittas.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Thank you! ☕"
+ "value" : "Het bijlagebestand kon niet worden gevonden.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error message when the attachment file is not found."
},
- "You are a creative writing assistant. Help craft engaging stories, characters, dialogue, and descriptions. Offer imaginative ideas, vivid imagery, and compelling narrative structure tailored to the user's style and genre." : {
- "comment" : "Description of the creative writing assistant role.",
+ "Add things you want the assistant to remember across all conversations." : {
+ "comment" : "A description of the feature that allows the user to add items to their memory.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sei un assistente di scrittura creativa. Aiuta a creare storie coinvolgenti, personaggi, dialoghi e descrizioni. Offri idee immaginative, immagini vivide e una struttura narrativa avvincente, adattata allo stile e al genere dell’utente."
+ "value" : "Προσθέστε πράγματα που θέλετε ο βοηθός να θυμάται σε όλες τις συνομιλίες."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Du bist ein kreativer Schreibassistent. Hilf dabei, fesselnde Geschichten, Charaktere, Dialoge und Beschreibungen zu gestalten. Biete einfallsreiche Ideen, lebendige Bilder und eine überzeugende Erzählstruktur, die auf den Stil und das Genre des Nutzers zugeschnitten sind."
+ "value" : "Aggiungi elementi che vuoi che l’assistente ricordi in tutte le conversazioni."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "あなたはクリエイティブライティングアシスタントです。魅力的な物語、キャラクター、対話、描写の作成を支援します。ユーザーのスタイルやジャンルに合わせて、想像力豊かなアイデア、生き生きとしたイメージ、説得力のある物語構成を提供します。"
+ "value" : "Agrega cosas que quieres que el asistente recuerde en todas las conversaciones.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "És um assistente de escrita criativa. Ajuda a criar histórias envolventes, personagens, diálogos e descrições. Oferece ideias imaginativas, imagens vívidas e uma estrutura narrativa cativante adaptada ao estilo e género do utilizador."
+ "value" : "Voeg dingen toe die de assistent in alle gesprekken moet onthouden."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eres un asistente de escritura creativa. Ayuda a crear historias, personajes, diálogos y descripciones atractivas. Ofrece ideas imaginativas, imágenes vívidas y una estructura narrativa convincente adaptada al estilo y género del usuario."
+ "value" : "アシスタントにすべての会話で記憶してほしい内容を追加してください"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je bent een assistent voor creatief schrijven. Help bij het bedenken van boeiende verhalen, personages, dialogen en beschrijvingen. Bied fantasierijke ideeën, levendige beelden en een meeslepende verhaallijn die aansluit bij de stijl en het genre van de gebruiker."
+ "value" : "Fügen Sie Dinge hinzu, an die sich der Assistent in allen Gesprächen erinnern soll.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Είστε βοηθός δημιουργικής γραφής. Βοηθήστε στη δημιουργία συναρπαστικών ιστοριών, χαρακτήρων, διαλόγων και περιγραφών. Προσφέρετε φανταστικές ιδέες, ζωντανές εικόνες και ελκυστική δομή αφήγησης προσαρμοσμένη στο ύφος και το είδος του χρήστη."
+ "value" : "Ajoutez des éléments que vous souhaitez que l’assistant retienne dans toutes les conversations."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vous êtes un assistant d’écriture créative. Aidez à concevoir des histoires captivantes, des personnages, des dialogues et des descriptions. Proposez des idées imaginatives, des images vivantes et une structure narrative convaincante adaptée au style et au genre de l’utilisateur."
+ "value" : "Add items you want the assistant to remember across all conversations"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Du är en kreativ skrivassistent. Hjälp till att skapa engagerande berättelser, karaktärer, dialoger och beskrivningar. Erbjud fantasifulla idéer, levande bilder och en fängslande berättarstruktur anpassad efter användarens stil och genre."
+ "value" : "Adicione coisas que pretende que o assistente lembre em todas as conversas.",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "You are a creative writing assistant. Help craft engaging stories, characters, dialogue, and descriptions. Offer imaginative ideas, vivid imagery, and compelling narrative structure tailored to the user's style and genre."
+ "value" : "Lägg till saker du vill att assistenten ska komma ihåg i alla konversationer.",
+ "state" : "translated"
}
}
}
},
- "Cancel" : {
+ "Quick Actions" : {
+ "comment" : "Widget name.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Annulla"
+ "value" : "クイックアクション",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abbrechen"
+ "value" : "Ações Rápidas"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "キャンセル"
+ "value" : "Γρήγορες Ενέργειες"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cancelar"
+ "value" : "Snabba åtgärder"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cancelar"
+ "value" : "Schnellaktionen"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Annuleren"
+ "value" : "Snelle acties"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ακύρωση"
+ "value" : "Quick Actions"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Annuler"
+ "value" : "Acciones rápidas"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Avbryt"
+ "value" : "Actions rapides",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cancel"
+ "value" : "Azioni rapide"
}
}
}
},
- "How can I help you?" : {
+ "Thinking" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Come posso aiutarti?"
+ "value" : "Denke"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Wie kann ich Ihnen helfen?"
+ "value" : "Thinking",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "どうされましたか?"
+ "value" : "考え中",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Como posso ajudar?"
+ "value" : "Pensando"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "¿Cómo puedo ayudarte?"
+ "value" : "A pensar",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hoe kan ik u helpen?"
+ "value" : "Réflexion en cours",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Comment puis-je vous aider ?"
+ "value" : "Sto pensando"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Πώς μπορώ να σας βοηθήσω;"
+ "value" : "Bezig met nadenken",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hur kan jag hjälpa dig?"
+ "value" : "Tänker",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "How can I help you?"
+ "value" : "Σκέψη"
}
}
- }
+ },
+ "comment" : "A label displayed in a bubble that indicates that the assistant is thinking."
},
- "Unable to save the backup file." : {
- "comment" : "Error message displayed when there is an issue writing the backup file.",
+ "%lld sources" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile salvare il file di backup."
+ "value" : "%lld 件のソース"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Sicherungsdatei konnte nicht gespeichert werden."
+ "value" : "%lld sources"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "バックアップファイルを保存できませんでした。"
+ "value" : "%lld bronnen"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível guardar o ficheiro de cópia de segurança."
+ "value" : "%lld källor"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudo guardar el archivo de respaldo."
+ "value" : "%lld fontes",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kan het back-upbestand niet opslaan."
+ "value" : "%lld sources",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αδυναμία αποθήκευσης του αρχείου αντιγράφου ασφαλείας."
+ "value" : "%lld fonti"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossible d’enregistrer le fichier de sauvegarde."
+ "value" : "%lld πηγές"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kunde inte spara säkerhetskopian."
+ "value" : "%lld fuentes",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Unable to save the backup file."
+ "value" : "%lld Quellen"
}
}
- }
+ },
+ "comment" : "A label that displays the number of sources found in a search result. The argument is the number of sources."
},
- "Report Issue" : {
+ "Profile" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Segnala problema"
+ "value" : "Perfil"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Problem melden"
+ "value" : "Profiel",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "問題を報告する"
+ "value" : "Profil",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reportar problema"
+ "value" : "Profilo"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reportar problema"
+ "value" : "Profil"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Probleem melden"
+ "value" : "Profile",
+ "state" : "translated"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Signaler un problème"
+ "value" : "Προφίλ"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αναφορά προβλήματος"
+ "value" : "Perfil",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rapportera problem"
+ "value" : "プロフィール"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Report Issue"
+ "value" : "Profil",
+ "state" : "translated"
}
}
}
},
- "Conversations" : {
+ "The app opens with a new conversation pre-filled with your content." : {
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversazioni"
+ "value" : "L’app si apre con una nuova conversazione precompilata con i tuoi contenuti."
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Unterhaltungen"
+ "value" : "Die App öffnet sich mit einer neuen Unterhaltung, die mit Ihrem Inhalt vorausgefüllt ist.",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会話"
- }
- },
- "pt-PT" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Conversas"
+ "value" : "アプリはあなたの内容が事前入力された新しい会話で開きます。"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conversaciones"
+ "value" : "La app se abre con una nueva conversación prellenada con tu contenido.",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gesprekken"
+ "value" : "A app abre com uma nova conversa preenchida com o seu conteúdo."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συνομιλίες"
+ "value" : "The app opens with a new conversation pre-filled with your content."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversations"
+ "value" : "L’application s’ouvre avec une nouvelle conversation préremplie avec votre contenu."
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Konversationer"
+ "value" : "Appen öppnas med en ny konversation förifylld med ditt innehåll.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
+ "stringUnit" : {
+ "value" : "De app opent met een nieuw gesprek vooraf ingevuld met jouw inhoud.",
+ "state" : "translated"
+ }
+ },
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversations"
+ "value" : "Η εφαρμογή ανοίγει με μια νέα συνομιλία προγεμισμένη με το περιεχόμενό σας."
}
}
}
},
- "Confirm" : {
- "comment" : "A button that confirms allowing a tool permanently.",
+ "%lld tokens" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conferma"
+ "value" : "%lld tokens",
+ "state" : "translated"
}
- },
- "de" : {
+ }
+ },
+ "shouldTranslate" : false
+ },
+ "Your AI conversations" : {
+ "comment" : "A description of the app's privacy policy.",
+ "localizations" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bestätigen"
+ "value" : "Vos conversations avec l’IA"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "許可する"
+ "value" : "あなたのAIとの会話"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Confirmar"
+ "value" : "Ihre KI-Gespräche"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Confirmar"
+ "value" : "Le tue conversazioni con l'IA"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bevestigen"
+ "value" : "Tus conversaciones con IA"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Επιβεβαίωση"
+ "value" : "Your AI conversations",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Confirmer"
+ "value" : "As suas conversas com IA"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bekräfta"
+ "value" : "Dina AI-konversationer",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Confirm"
+ "value" : "Οι συνομιλίες σας με την Τεχνητή Νοημοσύνη",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Jouw AI-gesprekken",
+ "state" : "translated"
}
}
}
},
- "The tool execution permit was already used." : {
- "comment" : "Error message when a tool execution permit is already used.",
+ "The deletion could not be completed." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il permesso di esecuzione dello strumento è già stato utilizzato."
+ "value" : "The deletion could not be completed."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die Berechtigung zur Tool-Ausführung wurde bereits verwendet."
+ "value" : "Det gick inte att slutföra borttagningen.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ツール実行許可はすでに使用されています。"
+ "value" : "Non è stato possibile completare l’eliminazione.",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A autorização de execução da ferramenta já foi utilizada."
+ "value" : "Não foi possível concluir a eliminação.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El permiso de ejecución de la herramienta ya se utilizó."
+ "value" : "La suppression n’a pas pu être effectuée."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De toestemming voor het uitvoeren van de tool is al gebruikt."
+ "value" : "削除を完了できませんでした。"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L’autorisation d’exécution de l’outil a déjà été utilisée."
+ "value" : "Het verwijderen kon niet worden voltooid."
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η άδεια εκτέλεσης του εργαλείου έχει ήδη χρησιμοποιηθεί."
+ "value" : "No se pudo completar la eliminación.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tillståndet för verktygskörning har redan använts."
+ "value" : "Das Löschen konnte nicht abgeschlossen werden.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The tool execution permit was already used."
+ "value" : "Δεν ήταν δυνατή η ολοκλήρωση της διαγραφής.",
+ "state" : "translated"
}
}
}
},
- "Top P" : {
+ "Use this when an OpenAI-compatible server does not provide context metadata." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Top P"
+ "value" : "Utilize isto quando um servidor compatível com OpenAI não fornecer metadados de contexto.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Top P"
+ "value" : "Utilisez ceci lorsqu’un serveur compatible OpenAI ne fournit pas de métadonnées contextuelles.",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "トップP"
+ "value" : "Usa esto cuando un servidor compatible con OpenAI no proporcione metadatos de contexto.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Top P"
+ "value" : "Use this when an OpenAI-compatible server does not provide context metadata",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Top P"
+ "value" : "Χρησιμοποιήστε το όταν ένας διακομιστής συμβατός με OpenAI δεν παρέχει μεταδεδομένα συμφραζομένων."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Top P"
+ "value" : "Verwenden Sie dies, wenn ein OpenAI-kompatibler Server keine Kontextmetadaten bereitstellt."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Top P"
+ "value" : "OpenAI互換サーバーがコンテキストメタデータを提供しない場合に使用してください。",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κορυφαίο P"
+ "value" : "Gebruik dit wanneer een OpenAI-compatibele server geen contextmetadata levert."
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Topp P"
+ "value" : "Använd detta när en OpenAI-kompatibel server inte tillhandahåller kontextmetadata."
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Top P"
+ "value" : "Usa questo quando un server compatibile con OpenAI non fornisce metadati di contesto."
}
}
}
},
- "e.g. User prefers concise answers" : {
- "comment" : "A placeholder text for a memory item's content.",
+ "Suggested anonymously" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "es. L’utente preferisce risposte concise"
+ "value" : "Suggested anonymously",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "z. B. Nutzer bevorzugt kurze Antworten"
+ "value" : "Anonym vorgeschlagen",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "例:ユーザーは簡潔な回答を好む"
+ "value" : "Suggerito anonimamente"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ex. O utilizador prefere respostas concisas"
+ "value" : "Anoniem voorgesteld",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "p. ej. El usuario prefiere respuestas concisas"
+ "value" : "Προταθεί ανώνυμα",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bijv. gebruiker geeft de voorkeur aan beknopte antwoorden"
+ "value" : "Suggéré anonymement",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ex. L’utilisateur préfère des réponses concises"
+ "value" : "匿名で提案されました"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "π.χ. Ο χρήστης προτιμά σύντομες απαντήσεις"
+ "value" : "Sugerido anonimamente",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "t.ex. Användaren föredrar korta svar"
+ "value" : "Föreslagen anonymt",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "e.g. User prefers concise answers"
+ "value" : "Sugerido de forma anónima"
}
}
}
},
- "More support" : {
- "comment" : "A label displayed above a button that opens a subscription for users who want to further support the project.",
+ "The attachment file path is invalid." : {
+ "comment" : "Error message when the attachment file path is invalid.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Più sostegno"
+ "value" : "La ruta del archivo adjunto no es válida.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mehr Unterstützung"
+ "value" : "Het bestandspad van de bijlage is ongeldig.",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "さらなる応援"
+ "value" : "Sökvägen till den bifogade filen är ogiltig."
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mais apoio"
+ "value" : "Il percorso del file allegato non è valido."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Más apoyo"
+ "value" : "Le chemin du fichier joint n’est pas valide."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Meer steun"
+ "value" : "The attachment file path is invalid."
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Περισσότερη στήριξη"
+ "value" : "Η διαδρομή αρχείου του συνημμένου δεν είναι έγκυρη.",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Plus de soutien"
+ "value" : "O caminho do ficheiro anexado é inválido.",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mer stöd"
+ "value" : "添付ファイルのパスが無効です。"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "More support"
+ "value" : "Der Dateipfad des Anhangs ist ungültig."
}
}
}
},
- "1 attachment" : {
+ "How can I help you?" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 allegato"
+ "value" : "Comment puis-je vous aider ?"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 Anhang"
- }
- },
- "ja" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "添付ファイル 1 件"
+ "value" : "Wie kann ich Ihnen helfen?"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 anexo"
+ "value" : "Como posso ajudar?",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 archivo adjunto"
+ "value" : "どうされましたか?"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 bijlage"
+ "value" : "Hoe kan ik u helpen?",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 συνημμένο"
+ "value" : "Πώς μπορώ να σας βοηθήσω;"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 pièce jointe"
+ "value" : "¿Cómo puedo ayudarte?"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 bilaga"
+ "value" : "How can I help you?",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 attachment"
+ "value" : "Come posso aiutarti?"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Hur kan jag hjälpa dig?",
+ "state" : "translated"
}
}
}
},
- "iCloud Sync" : {
+ "Could not be safely inspected" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sincronizzazione iCloud"
+ "value" : "Impossible à inspecter en toute sécurité"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-Synchronisierung"
+ "value" : "Impossibile esaminare in sicurezza"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud同期"
+ "value" : "Could not be safely inspected",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sincronização iCloud"
+ "value" : "Kon niet veilig worden geïnspecteerd"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sincronización iCloud"
+ "value" : "Konnte nicht sicher überprüft werden",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-synchronisatie"
+ "value" : "No se pudo inspeccionar de forma segura"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchronisation iCloud"
+ "value" : "Kunde inte inspekteras på ett säkert sätt",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συγχρονισμός iCloud"
+ "value" : "安全に検査できませんでした"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-synkronisering"
+ "value" : "Não foi possível inspecionar com segurança"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud Sync"
+ "value" : "Δεν ήταν δυνατή η ασφαλής επιθεώρηση"
}
}
}
},
- "votes" : {
+ "Your data stays on your own server — no telemetry" : {
+ "comment" : "A description of the privacy features of OpenClient.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "voti"
+ "value" : "Os seus dados permanecem no seu próprio servidor — sem telemetria"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Stimmen"
+ "value" : "データはお客様のサーバーにのみ保存され、テレメトリーはありません"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "投票数"
+ "value" : "Uw gegevens blijven op uw eigen server — geen telemetrie"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "votos"
+ "value" : "Ihre Daten bleiben auf Ihrem eigenen Server — keine Telemetrie"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "votos"
+ "value" : "Τα δεδομένα σας παραμένουν στον δικό σας διακομιστή — χωρίς τηλεμετρία"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "stemmen"
+ "value" : "Dina data stannar på din egen server — ingen telemetri",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "votes"
+ "value" : "Your data stays on your own server — no telemetry",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ψήφοι"
+ "value" : "I tuoi dati restano sul tuo server — nessuna telemetria",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "röster"
+ "value" : "Tus datos permanecen en tu propio servidor sin telemetría",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "votes"
+ "value" : "Vos données restent sur votre propre serveur — pas de télémétrie"
}
}
}
},
- "Describe your suggestion in detail..." : {
+ "Find a conversation" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Descrivi la tua proposta in dettaglio..."
+ "value" : "Trouver une conversation"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beschreiben Sie Ihren Vorschlag im Detail..."
+ "value" : "Zoek een gesprek",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "提案の詳細を説明してください..."
+ "value" : "Find a conversation",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Descreva a sua sugestão em detalhe..."
+ "value" : "Buscar una conversación"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Describe tu sugerencia en detalle..."
+ "value" : "Βρες μια συνομιλία"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beschrijf uw suggestie in detail..."
+ "value" : "Trova una conversazione"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Περιγράψτε την πρότασή σας λεπτομερώς..."
+ "value" : "Konversation finden",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Décrivez votre suggestion en détail..."
+ "value" : "Encontrar uma conversa"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beskriv ditt förslag i detalj..."
+ "value" : "会話を検索"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Describe your suggestion in detail..."
+ "value" : "Hitta en konversation",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Text displayed in a shortcut item for searching conversations."
},
- "Enable tools from MCP servers like GitHub, databases, and more to let the model work with external services." : {
- "comment" : "A description of a feature that allows the model to connect to external tools.",
+ "Delete suggestion" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abilita strumenti dai server MCP come GitHub, database e altro per permettere al modello di lavorare con servizi esterni."
+ "value" : "Vorschlag löschen"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktivieren Sie Werkzeuge von MCP-Servern wie GitHub, Datenbanken und mehr, damit das Modell mit externen Diensten arbeiten kann."
+ "value" : "Supprimer la suggestion"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "GitHubやデータベースなどのMCPサーバーのツールを有効にして、モデルが外部サービスと連携できるようにします。"
+ "value" : "Eliminar sugerencia",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ative ferramentas dos servidores MCP como GitHub, bases de dados e mais para permitir que o modelo trabalhe com serviços externos."
+ "value" : "Suggestie verwijderen",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Habilita herramientas de servidores MCP como GitHub, bases de datos y más para que el modelo trabaje con servicios externos."
+ "value" : "Elimina suggerimento"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Schakel tools van MCP-servers in zoals GitHub, databases en meer om het model met externe diensten te laten werken."
+ "value" : "提案を削除"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Activez les outils des serveurs MCP comme GitHub, les bases de données et plus encore pour permettre au modèle de travailler avec des services externes."
+ "value" : "Ta bort förslag"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ενεργοποιήστε εργαλεία από διακομιστές MCP όπως το GitHub, βάσεις δεδομένων και άλλα για να επιτρέψετε στο μοντέλο να συνεργάζεται με εξωτερικές υπηρεσίες."
+ "value" : "Eliminar sugestão"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktivera verktyg från MCP-servrar som GitHub, databaser med mera för att låta modellen arbeta med externa tjänster."
+ "value" : "Delete suggestion"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enable tools from MCP servers like GitHub, databases, and more to allow the model to work with external services."
+ "value" : "Διαγραφή πρότασης"
}
}
}
},
- "Sync" : {
- "comment" : "A heading for the sync settings.",
+ "System Prompt" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sincronizzazione"
+ "value" : "Προτροπή συστήματος"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronisation"
+ "value" : "システムプロンプト"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期"
+ "value" : "Systemaufforderung",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sincronizar"
+ "value" : "Prompt do Sistema",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sincronización"
+ "value" : "Mensaje del sistema",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchroniseren"
+ "value" : "Invite système",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συγχρονισμός"
+ "value" : "Systemprompt"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronisation"
+ "value" : "Prompt di sistema"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synkronisering"
+ "value" : "System Prompt"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sync"
+ "value" : "Systeemprompt"
}
}
}
},
- "In progress" : {
+ "tag.parallel.tools" : {
+ "comment" : "Label for a capability that allows parallel function calls.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "In corso"
+ "value" : "Parallel Tools",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "In Bearbeitung"
+ "value" : "Parallel Tools"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "進行中"
+ "value" : "Parallel Tools",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Em curso"
+ "value" : "Parallel Tools"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "En curso"
+ "value" : "Parallel Tools",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bezig"
+ "value" : "Parallel Tools",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Σε εξέλιξη"
+ "value" : "Parallel Tools"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "En cours"
+ "value" : "Parallel Tools",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pågår"
+ "value" : "Parallel Tools"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "In progress"
+ "value" : "Parallel Tools"
}
}
}
},
- "Focused" : {
+ "Response interrupted" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Concentrato"
+ "value" : "Respuesta interrumpida"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fokussiert"
+ "value" : "Svar avbrutet"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "フォーカス済み"
+ "value" : "Réponse interrompue",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Focado"
+ "value" : "Η απάντηση διακόπηκε"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enfocado"
+ "value" : "Response interrupted"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gefocust"
+ "value" : "Risposta interrotta"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εστιασμένο"
+ "value" : "応答が中断されました"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Concentré"
+ "value" : "Antwort unterbrochen",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fokuserad"
+ "value" : "Reactie onderbroken"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Focused"
+ "value" : "Resposta interrompida",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Text displayed in a notification when the response to a prompt was cut short."
},
- "Brainstorm ideas for a project" : {
+ "Touch and hold a message to edit, regenerate, branch, or save it as a favourite." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Genera idee per un progetto"
+ "value" : "Πατήστε παρατεταμένα ένα μήνυμα για να το επεξεργαστείτε, αναγεννήσετε, διακλαδώσετε ή αποθηκεύσετε στα αγαπημένα."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ideen für ein Projekt sammeln"
+ "value" : "Tocca e tieni premuto un messaggio per modificarlo, rigenerarlo, creare un ramo o salvarlo tra i preferiti."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "プロジェクトのアイデアをブレインストーミングする"
+ "value" : "Mantén pulsado un mensaje para editarlo, regenerarlo, ramificarlo o guardarlo como favorito."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gerar ideias para um projeto"
+ "value" : "Raak een bericht aan en houd vast om het te bewerken, opnieuw te genereren, vertakken of als favoriet op te slaan."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Generar ideas para un proyecto"
+ "value" : "メッセージを長押しして編集、再生成、分岐、またはお気に入りに保存します。",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bedenk ideeën voor een project"
+ "value" : "Tippen und halten Sie eine Nachricht, um sie zu bearbeiten, neu zu generieren, zu verzweigen oder als Favorit zu speichern."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Καταιγισμός ιδεών για ένα έργο"
+ "value" : "Touchez et maintenez un message pour le modifier, régénérer, créer une branche ou l’enregistrer en favori."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Trouver des idées pour un projet"
+ "value" : "Touch and hold a message to edit, regenerate, branch, or save it as a favorite."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Brainstorma idéer för ett projekt"
+ "value" : "Toque e mantenha uma mensagem para editar, regenerar, ramificar ou guardar como favorita.",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Brainstorm ideas for a project"
+ "value" : "Tryck och håll på ett meddelande för att redigera, generera om, förgrena eller spara det som favorit.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A description of the action to edit, regenerate, branch, or save a message."
},
- "Synchronization is incomplete" : {
+ "Attach a photo or PDF so the model can analyse its content." : {
+ "comment" : "A description of how to attach images or PDFs to a message.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La sincronizzazione è incompleta"
+ "value" : "Voeg een foto of PDF toe zodat het model de inhoud kan analyseren.",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Synchronisierung ist nicht abgeschlossen"
+ "value" : "Attach a photo or PDF so the model can analyze its content."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期が完了していません"
+ "value" : "Bifoga ett foto eller en PDF så att modellen kan analysera dess innehåll.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A sincronização está incompleta"
+ "value" : "Allega una foto o un PDF in modo che il modello possa analizzarne il contenuto.",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La sincronización no está completa"
+ "value" : "Επισυνάψτε μια φωτογραφία ή PDF ώστε το μοντέλο να αναλύσει το περιεχόμενό του.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchronisatie is niet voltooid"
+ "value" : "Adjunta una foto o PDF para que el modelo pueda analizar su contenido.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ο συγχρονισμός δεν ολοκληρώθηκε"
+ "value" : "Joignez une photo ou un PDF pour que le modèle puisse analyser son contenu.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La synchronisation est incomplète"
+ "value" : "写真またはPDFを添付して、モデルが内容を分析できるようにしてください。",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synkroniseringen är inte slutförd"
+ "value" : "Anexe uma foto ou PDF para que o modelo possa analisar o seu conteúdo.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchronization is incomplete"
+ "value" : "Fügen Sie ein Foto oder eine PDF-Datei an, damit das Modell den Inhalt analysieren kann.",
+ "state" : "translated"
}
}
}
},
- "The server certificate is not trusted." : {
+ "No results found for: %@" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il certificato del server non è attendibile."
+ "value" : "Nenhum resultado encontrado para: %@"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Das Serverzertifikat wird nicht vertraut."
+ "value" : "Keine Ergebnisse gefunden für: %@"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サーバー証明書は信頼されていません。"
+ "value" : "Aucun résultat trouvé pour : %@"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O certificado do servidor não é confiável."
+ "value" : "%@ の結果は見つかりませんでした"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El certificado del servidor no es de confianza."
+ "value" : "Geen resultaten gevonden voor: %@",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het servercertificaat wordt niet vertrouwd."
+ "value" : "Δεν βρέθηκαν αποτελέσματα για: %@"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le certificat du serveur n’est pas fiable."
+ "value" : "Inga resultat hittades för: %@"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το πιστοποιητικό διακομιστή δεν είναι αξιόπιστο."
+ "value" : "Nessun risultato trovato per: %@",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Serverns certifikat är inte betrott."
+ "value" : "No se encontraron resultados para: %@"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The server certificate is not trusted."
+ "value" : "No results found for: %@"
}
}
- }
+ },
+ "comment" : "A message to display when no search results are found. The argument is the search query."
},
- "%lld of 1 MCP tool enabled. Availability and permissions can also be managed from the chat input bar." : {
+ "Enable All Tools" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "value" : "%lld di 1 strumento MCP abilitato. Disponibilità e autorizzazioni possono essere gestite anche dalla barra di inserimento della chat.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Activer tous les outils"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld von 1 MCP-Tool aktiviert. Verfügbarkeit und Berechtigungen können auch über die Chat-Eingabeleiste verwaltet werden."
+ "value" : "Alle Werkzeuge aktivieren"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "value" : "1 個中 %lld 個の MCP ツールが有効です。利用可能状況と権限はチャット入力バーからも管理できます。",
+ "value" : "Alle tools inschakelen",
"state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "value" : "%lld de 1 ferramenta MCP ativada. A disponibilidade e as permissões também podem ser geridas a partir da barra de introdução de texto do chat.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Ενεργοποίηση όλων των εργαλείων"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld de 1 herramienta MCP activada. La disponibilidad y los permisos también se pueden gestionar desde la barra de entrada del chat."
+ "value" : "Enable All Tools",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "value" : "%lld van 1 MCP-tool ingeschakeld. Beschikbaarheid en machtigingen kunnen ook worden beheerd via de invoerbalk van de chat.",
+ "value" : "Ativar Todas as Ferramentas",
"state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "value" : "%lld outil MCP sur 1 est activé. La disponibilité et les autorisations peuvent également être gérées depuis la barre de saisie du chat.",
+ "value" : "Abilita tutti gli strumenti",
"state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "value" : "%lld από 1 εργαλείο MCP ενεργοποιήθηκε. Η διαθεσιμότητα και τα δικαιώματα μπορούν επίσης να διαχειριστούν από τη γραμμή εισαγωγής συνομιλίας.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "すべてのツールを有効にする"
}
},
"sv" : {
"stringUnit" : {
- "value" : "%lld av 1 MCP-verktyg aktiverat. Tillgänglighet och behörigheter kan också hanteras från chattens inmatningsfält.",
+ "value" : "Aktivera alla verktyg",
"state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%lld of 1 MCP tool enabled. Availability and permissions can also be managed from the chat input bar."
+ "value" : "Activar todas las herramientas",
+ "state" : "translated"
}
}
},
- "comment" : "A summary of the number of MCP tools that are enabled."
+ "comment" : "A toggle that enables or disables all tools."
},
- "The request was cancelled." : {
+ "Deletes this item from iCloud and all synchronized devices." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La richiesta è stata annullata."
+ "value" : "Supprime cet élément d’iCloud et de tous les appareils synchronisés.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die Anfrage wurde abgebrochen."
+ "value" : "Löscht dieses Objekt aus iCloud und von allen synchronisierten Geräten.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "リクエストはキャンセルされました。"
+ "value" : "Elimina questo elemento da iCloud e da tutti i dispositivi sincronizzati."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O pedido foi cancelado."
+ "value" : "この項目をiCloudおよび同期済みのすべてのデバイスから削除します。"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La solicitud fue cancelada."
+ "value" : "Elimina este item do iCloud e de todos os dispositivos sincronizados.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het verzoek is geannuleerd."
+ "value" : "Elimina este elemento de iCloud y de todos los dispositivos sincronizados."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το αίτημα ακυρώθηκε."
+ "value" : "Deletes this item from iCloud and all synchronized devices."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La requête a été annulée."
+ "value" : "Raderar det här objektet från iCloud och alla synkroniserade enheter."
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Begäran avbröts."
+ "value" : "Verwijdert dit item uit iCloud en alle gesynchroniseerde apparaten.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The request was cancelled."
+ "value" : "Διαγράφει αυτό το στοιχείο από το iCloud και όλες τις συγχρονισμένες συσκευές."
}
}
}
},
- "Local prompt template deletion metadata is invalid and was preserved." : {
+ "Deny Once" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "I metadati per l’eliminazione del modello di prompt locale non sono validi e sono stati conservati."
+ "value" : "Denegar una vez",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die Löschmetadaten der lokalen Prompt-Vorlage sind ungültig und wurden beibehalten."
+ "value" : "Άρνηση μία φορά",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ローカルプロンプトテンプレートの削除メタデータが無効なため、保持されました。"
+ "value" : "Refuser une fois"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Os metadados de eliminação do modelo de pedido local são inválidos e foram preservados."
+ "value" : "Deny Once"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Los metadatos de eliminación de la plantilla de indicaciones local no son válidos y se conservaron."
+ "value" : "Neka en gång",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De verwijderingsmetagegevens van de lokale promptsjabloon zijn ongeldig en zijn behouden."
+ "value" : "Nega una volta"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Les métadonnées de suppression du modèle d’invite local ne sont pas valides et ont été conservées."
+ "value" : "一度だけ拒否する",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Τα μεταδεδομένα διαγραφής του τοπικού προτύπου προτροπής δεν είναι έγκυρα και διατηρήθηκαν."
+ "value" : "Einmal ablehnen"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Metadata för borttagning av lokal promptmall är ogiltiga och har bevarats."
+ "value" : "Eenmalig weigeren"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Local prompt template deletion metadata is invalid and was preserved."
+ "value" : "Recusar uma vez"
}
}
- }
+ },
+ "comment" : "A label for denying a request once."
},
- "Keep your important conversations close at hand." : {
- "comment" : "Description of the Pinned Conversations widget.",
+ "Bright" : {
+ "comment" : "Category of app icons that have a bright aesthetic.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tieni le tue conversazioni importanti sempre a portata di mano."
+ "value" : "Hell",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Behalte deine wichtigen Unterhaltungen griffbereit."
+ "value" : "Bright"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "重要な会話をすぐにアクセスできる場所に保ちましょう"
+ "value" : "Brillante",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tenha as suas conversas importantes sempre à mão."
+ "value" : "明るい"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mantén tus conversaciones importantes a mano."
+ "value" : "Luminosoacons",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Houd je belangrijke gesprekken binnen handbereik."
+ "value" : "Lumineuses"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gardez vos conversations importantes à portée de main."
+ "value" : "Vivace",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κρατήστε τις σημαντικές συνομιλίες σας κοντά σας."
+ "value" : "Helder"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ha dina viktiga konversationer nära till hands."
+ "value" : "Ljus"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keep your important conversations close at hand."
+ "value" : "Φωτεινά",
+ "state" : "translated"
}
}
}
},
- "The attachment file could not be found." : {
- "comment" : "Error message when the attachment file is not found.",
+ "MCP servers unavailable" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossibile trovare il file allegato."
+ "value" : "MCP-servers niet beschikbaar",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Anhangsdatei konnte nicht gefunden werden."
+ "value" : "Server MCP non disponibili"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "添付ファイルが見つかりませんでした。"
+ "value" : "MCPサーバーを利用できません",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível encontrar o ficheiro anexado."
+ "value" : "Servidores MCP indisponíveis"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se ha podido encontrar el archivo adjunto."
+ "value" : "Servidores MCP no disponibles",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het bijlagebestand kon niet worden gevonden."
+ "value" : "Οι διακομιστές MCP δεν είναι διαθέσιμοι"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le fichier joint est introuvable."
+ "value" : "MCP-servrar är inte tillgängliga"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η εύρεση του συνημμένου αρχείου."
+ "value" : "Serveurs MCP indisponibles"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bilagefilen kunde inte hittas."
+ "value" : "MCP servers unavailable"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The attachment file could not be found."
+ "value" : "MCP-Server nicht verfügbar",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label that indicates that MCP servers are unavailable."
},
- "MCP permissions require access to secure storage." : {
- "comment" : "Error message displayed when MCP permissions are required for secure storage access.",
+ "Image could not be loaded" : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le autorizzazioni MCP richiedono l’accesso all’archiviazione sicura."
+ "value" : "Immagine non caricabile",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-Berechtigungen erfordern Zugriff auf den sicheren Speicher."
+ "value" : "Image could not be loaded"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPの権限には安全なストレージへのアクセスが必要です。"
+ "value" : "画像を読み込めませんでした"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "As permissões do MCP requerem acesso ao armazenamento seguro."
+ "value" : "No se pudo cargar la imagen",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Los permisos de MCP requieren acceso al almacenamiento seguro."
+ "value" : "Não foi possível carregar a imagem",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP-machtigingen vereisen toegang tot beveiligde opslag."
+ "value" : "Η εικόνα δεν μπόρεσε να φορτωθεί",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Οι άδειες MCP απαιτούν πρόσβαση σε ασφαλή αποθήκευση."
+ "value" : "Bild konnte nicht geladen werden"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Les autorisations MCP nécessitent un accès au stockage sécurisé."
+ "value" : "Impossible de charger l’image",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-behörigheter kräver åtkomst till säker lagring."
+ "value" : "Bilden kunde inte laddas"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP permissions require access to secure storage."
+ "value" : "Afbeelding kon niet worden geladen"
}
}
- }
+ },
+ "comment" : "A message displayed when an image fails to load."
},
- "Mint" : {
- "comment" : "Name of a tag color.",
+ "No internet connection. Please check your network." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Menta"
+ "value" : "Keine Internetverbindung. Bitte überprüfen Sie Ihr Netzwerk.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Münze"
+ "value" : "Pas de connexion Internet. Veuillez vérifier votre réseau."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ミント"
+ "value" : "Geen internetverbinding. Controleer uw netwerk.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Menta"
+ "value" : "Nessuna connessione a Internet. Controlla la tua rete.",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Menta"
+ "value" : "No internet connection. Please check your network.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Munt"
+ "value" : "Sin conexión a internet. Por favor, verifica tu red."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μέντα"
+ "value" : "Sem ligação à internet. Verifique a sua rede.",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Menthe"
+ "value" : "Ingen internetanslutning. Kontrollera ditt nätverk."
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mynta"
+ "value" : "インターネットに接続されていません。ネットワークを確認してください。",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mint"
+ "value" : "Δεν υπάρχει σύνδεση στο διαδίκτυο. Ελέγξτε το δίκτυό σας.",
+ "state" : "translated"
}
}
}
},
- "Recipe for pasta carbonara" : {
- "comment" : "Title of a recipe for pasta carbonara.",
+ "Sync Now" : {
+ "comment" : "A button that triggers a sync of conversations.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ricetta per pasta alla carbonara"
+ "value" : "今すぐ同期",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rezept für Pasta Carbonara"
+ "value" : "Συγχρονισμός τώρα"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "パスタカルボナーラのレシピ"
+ "value" : "Nu synchroniseren",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Receita de massa carbonara"
+ "value" : "Synkronisera nu",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Receta de pasta carbonara"
+ "value" : "Sincronizar Agora"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Recept voor pasta carbonara"
+ "value" : "Sync Now",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συνταγή για καρμπονάρα ζυμαρικών"
+ "value" : "Sincronizza ora"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Recette de pâtes à la carbonara"
+ "value" : "Jetzt synchronisieren",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recept på pasta carbonara"
+ "value" : "Sincronizar ahora"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recipe for pasta carbonara"
+ "value" : "Synchroniser maintenant"
}
}
}
},
- "Attach Image" : {
+ "Search conversations..." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Allega immagine"
+ "value" : "Search conversations...",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bild anhängen"
+ "value" : "Sök konversationer..."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "画像を添付"
+ "value" : "Rechercher des conversations...",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anexar imagem"
+ "value" : "Procurar conversas..."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Adjuntar imagen"
+ "value" : "会話を検索..."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afbeelding toevoegen"
+ "value" : "Buscar conversaciones..."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Joindre une image"
+ "value" : "Cerca conversazioni...",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επισύναψη εικόνας"
+ "value" : "Gesprekken zoeken..."
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bifoga bild"
+ "value" : "Αναζήτηση συνομιλιών..."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Attach Image"
+ "value" : "Konversationen durchsuchen...",
+ "state" : "translated"
}
}
}
},
- "Unable to Load iCloud Data" : {
+ "iCloud Data Is Downloading" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossibile caricare i dati di iCloud"
+ "value" : "iCloudデータをダウンロード中",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-Daten konnten nicht geladen werden"
+ "value" : "I dati di iCloud sono in fase di download",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudデータを読み込めません"
+ "value" : "iCloud Data Is Downloading"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível carregar os dados do iCloud"
+ "value" : "Los datos de iCloud se están descargando",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pueden cargar los datos de iCloud"
+ "value" : "Os dados do iCloud estão a ser descarregados",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kan iCloud-gegevens niet laden"
+ "value" : "iCloud-Daten werden heruntergeladen",
+ "state" : "translated"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossible de charger les données iCloud"
+ "value" : "Γίνεται λήψη δεδομένων από το iCloud",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αδυναμία φόρτωσης δεδομένων iCloud"
+ "value" : "Les données iCloud sont en cours de téléchargement",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Det går inte att läsa in iCloud-data"
+ "value" : "iCloud-data laddas ned",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Unable to Load iCloud Data"
+ "value" : "iCloud-gegevens worden gedownload"
}
}
}
},
- "Deletes these categories from iCloud and all synchronized devices:\n- Conversations and attachments\n- Personal Context\n- Memory\n- Custom Templates\n\nNewer data created after this deletion can synchronize again. This action cannot be undone." : {
+ "·" : {
+ "shouldTranslate" : false
+ },
+ "Try starting the chat again to securely save your server settings." : {
+ "comment" : "A message that appears when the user has an error while saving their server settings.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina queste categorie da iCloud e da tutti i dispositivi sincronizzati:\n- Conversazioni e allegati\n- Contesto personale\n- Memoria\n- Modelli personalizzati\n\nI dati più recenti creati dopo questa eliminazione possono essere sincronizzati di nuovo. Questa azione non può essere annullata."
+ "value" : "Try starting the chat again to securely save your server settings."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Löscht diese Kategorien aus iCloud und von allen synchronisierten Geräten:\n- Unterhaltungen und Anhänge\n- Persönlicher Kontext\n- Erinnerungen\n- Benutzerdefinierte Vorlagen\n\nNeuere Daten, die nach dieser Löschung erstellt werden, können wieder synchronisiert werden. Diese Aktion kann nicht rückgängig gemacht werden."
+ "value" : "Försök starta chatten igen för att spara dina serverinställningar på ett säkert sätt.",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "これらのカテゴリをiCloudおよび同期済みのすべてのデバイスから削除します:\n- 会話と添付ファイル\n- パーソナルコンテキスト\n- メモリ\n- カスタムテンプレート\n\nこの削除後に作成された新しいデータは、再び同期される可能性があります。この操作は取り消せません。"
+ "value" : "Essayez de redémarrer la conversation pour enregistrer vos paramètres de serveur en toute sécurité."
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elimina estas categorias do iCloud e de todos os dispositivos sincronizados:\n- Conversas e anexos\n- Contexto pessoal\n- Memória\n- Modelos personalizados\n\nOs dados mais recentes criados após esta eliminação podem ser sincronizados novamente. Esta ação não pode ser anulada."
+ "value" : "Tente iniciar novamente a conversa para guardar em segurança as definições do servidor.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elimina estas categorías de iCloud y de todos los dispositivos sincronizados:\n- Conversaciones y archivos adjuntos\n- Contexto personal\n- Memoria\n- Plantillas personalizadas\n\nLos datos más recientes creados después de esta eliminación pueden volver a sincronizarse. Esta acción no se puede deshacer."
+ "value" : "チャットを再開して、サーバー設定を安全に保存してください。",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verwijdert deze categorieën uit iCloud en alle gesynchroniseerde apparaten:\n- Gesprekken en bijlagen\n- Persoonlijke context\n- Geheugen\n- Aangepaste sjablonen\n\nNieuwere gegevens die na deze verwijdering worden aangemaakt, kunnen opnieuw worden gesynchroniseerd. Deze actie kan niet ongedaan worden gemaakt."
+ "value" : "Intenta iniciar el chat de nuevo para guardar de forma segura la configuración del servidor.",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supprime ces catégories d’iCloud et de tous les appareils synchronisés :\n- Conversations et pièces jointes\n- Contexte personnel\n- Mémoire\n- Modèles personnalisés\n\nLes nouvelles données créées après cette suppression peuvent à nouveau être synchronisées. Cette action est irréversible."
+ "value" : "Prova a riavviare la chat per salvare in modo sicuro le impostazioni del server."
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαγράφει αυτές τις κατηγορίες από το iCloud και όλες τις συγχρονισμένες συσκευές:\n- Συνομιλίες και συνημμένα\n- Προσωπικό πλαίσιο\n- Μνήμη\n- Προσαρμοσμένα πρότυπα\n\nΤα νεότερα δεδομένα που δημιουργήθηκαν μετά από αυτήν τη διαγραφή μπορούν να συγχρονιστούν ξανά. Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
+ "value" : "Probeer de chat opnieuw te starten om je serverinstellingen veilig op te slaan.",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tar bort dessa kategorier från iCloud och alla synkroniserade enheter:\n- Konversationer och bilagor\n- Personlig kontext\n- Minne\n- Anpassade mallar\n\nNyare data som skapas efter denna radering kan synkroniseras igen. Den här åtgärden kan inte ångras."
+ "value" : "Δοκιμάστε να ξεκινήσετε ξανά τη συνομιλία για να αποθηκεύσετε με ασφάλεια τις ρυθμίσεις του διακομιστή σας.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deletes these categories from iCloud and all synchronized devices:\n- Conversations and attachments\n- Personal Context\n- Memory\n- Custom Templates\n\nNewer data created after this deletion can synchronize again. This action cannot be undone."
+ "value" : "Versuche, den Chat erneut zu starten, um deine Servereinstellungen sicher zu speichern.",
+ "state" : "translated"
}
}
}
},
- "Synchronized data deleted" : {
+ "OpenClient version %@ is available. Would you like to update now?" : {
+ "comment" : "A message that is displayed in a notification when an update is available. The argument is the version number of the update.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dati sincronizzati eliminati"
+ "value" : "La versión %@ de OpenClient está disponible. ¿Quieres actualizar ahora?"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchronisierte Daten gelöscht"
+ "value" : "A versão %@ do OpenClient está disponível. Pretende atualizar agora?",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "同期済みデータを削除しました"
+ "value" : "La version %@ d’OpenClient est disponible. Voulez-vous effectuer la mise à jour maintenant ?"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dados sincronizados eliminados"
+ "value" : "OpenClient version %@ is available. Would you like to update now?"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Datos sincronizados eliminados"
+ "value" : "Η έκδοση %@ του OpenClient είναι διαθέσιμη. Θέλετε να κάνετε ενημέρωση τώρα;",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gesynchroniseerde gegevens verwijderd"
+ "value" : "OpenClient-Version %@ ist verfügbar. Möchten Sie jetzt aktualisieren?",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Données synchronisées supprimées"
+ "value" : "OpenClientバージョン %@ が利用可能です。今すぐアップデートしますか?"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τα συγχρονισμένα δεδομένα διαγράφηκαν"
+ "value" : "OpenClient-versie %@ is beschikbaar. Wil je nu bijwerken?",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synkroniserade data har raderats"
+ "value" : "OpenClient-version %@ är tillgänglig. Vill du uppdatera nu?"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronized data deleted"
+ "value" : "È disponibile la versione %@ di OpenClient. Vuoi aggiornarla ora?"
}
}
}
},
- "Provider" : {
+ "The conversation summary cursor does not reference one of its messages." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fornitore"
+ "value" : "The conversation summary cursor does not reference one of its messages."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anbieter"
+ "value" : "De samenvattingscursor van het gesprek verwijst niet naar een van zijn berichten."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "プロバイダー"
+ "value" : "Samtalssammanfattningens markör refererar inte till ett av dess meddelanden.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fornecedor"
+ "value" : "Il cursore del riepilogo della conversazione non fa riferimento a uno dei suoi messaggi."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Proveedor"
+ "value" : "Ο δείκτης περίληψης συνομιλίας δεν αναφέρεται σε κάποιο από τα μηνύματά του.",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Provider"
+ "value" : "O cursor do resumo da conversa não referencia uma das suas mensagens.",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fournisseur"
+ "value" : "Le curseur du résumé de la conversation ne fait pas référence à l’un de ses messages.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πάροχος"
+ "value" : "会話の要約カーソルがメッセージのいずれかを参照していません。"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Leverantör"
+ "value" : "El cursor del resumen de la conversación no hace referencia a uno de sus mensajes."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Provider"
+ "value" : "Der Zusammenfassungs-Cursor der Unterhaltung verweist nicht auf eine seiner Nachrichten.",
+ "state" : "translated"
}
}
}
},
- "The cloud operation was cancelled by an app data reset." : {
- "comment" : "Error message when the cloud operation was cancelled by an app data reset.",
+ "Backup Error" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "L’operazione cloud è stata annullata dal ripristino dei dati dell’app."
+ "value" : "Σφάλμα αντιγράφου ασφαλείας",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Der Cloud-Vorgang wurde durch das Zurücksetzen der App-Daten abgebrochen."
+ "value" : "Säkerhetskopieringsfel",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アプリデータのリセットにより、クラウド操作がキャンセルされました"
+ "value" : "バックアップエラー",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A operação na nuvem foi cancelada devido à reposição dos dados da aplicação."
+ "value" : "Back-upfout",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La operación en la nube se canceló al restablecer los datos de la aplicación."
+ "value" : "Error de copia de seguridad"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De cloudbewerking is geannuleerd doordat de appgegevens zijn gereset."
+ "value" : "Erreur de sauvegarde",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η λειτουργία cloud ακυρώθηκε λόγω επαναφοράς των δεδομένων της εφαρμογής."
+ "value" : "Sicherungsfehler",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L’opération cloud a été annulée par la réinitialisation des données de l’app."
+ "value" : "Erro de Cópia de Segurança"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Molnåtgärden avbröts av en återställning av appdata."
+ "value" : "Errore di backup",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The cloud operation was cancelled by an app data reset."
+ "value" : "Backup Error",
+ "state" : "translated"
}
}
}
},
- "Success" : {
+ "Choose the tag shown by the conversations widget." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Successo"
+ "value" : "Kies de tag die door de gesprekken-widget wordt weergegeven"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Erfolg"
+ "value" : "Välj taggen som visas i konversationswidgeten"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "成功"
+ "value" : "Choisissez l’étiquette affichée par le widget de conversations"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sucesso"
+ "value" : "Elige la etiqueta que muestra el widget de conversaciones",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Éxito"
+ "value" : "Wähle das vom Konversations-Widget angezeigte Tag.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Succes"
+ "value" : "会話ウィジェットで表示するタグを選択してください"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Succès"
+ "value" : "Επιλέξτε την ετικέτα που εμφανίζεται στο widget συνομιλιών",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Επιτυχία"
+ "value" : "Scegli il tag mostrato dal widget delle conversazioni",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Framgång"
+ "value" : "Choose the tag displayed by the conversations widget"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Success"
+ "value" : "Escolha a etiqueta mostrada pelo widget de conversas"
}
}
- }
+ },
+ "comment" : "Title of the widget configuration intent."
},
- "Untitled Conversation" : {
+ "Ocean" : {
+ "comment" : "Name of the icon with an ocean theme.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conversazione senza titolo"
+ "value" : "Océan",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Unbenanntes Gespräch"
- }
- },
- "ja" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "無題の会話"
+ "value" : "Ozean",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversa sem título"
+ "value" : "Oceano"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversación sin título"
+ "value" : "海洋"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Naamloos gesprek"
+ "value" : "Oceaan"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συνομιλία χωρίς τίτλο"
+ "value" : "Ωκεανός"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversation sans titre"
+ "value" : "Océano"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Namnlös konversation"
+ "value" : "Oceano",
+ "state" : "translated"
}
},
"en" : {
+ "stringUnit" : {
+ "value" : "Ocean",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Untitled Conversation"
+ "value" : "Hav"
}
}
}
},
- "You are a professional translator. Translate the user's text accurately while preserving the original meaning, tone, and nuance. Identify the source language automatically and ask for the target language if not specified." : {
- "comment" : "Content of the \"Translator\" built-in template.",
+ "Drag image here" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sei un traduttore professionista. Traduci accuratamente il testo dell'utente preservando il significato, il tono e le sfumature originali. Identifica automaticamente la lingua di origine e chiedi la lingua di destinazione se non specificata."
+ "value" : "ここに画像をドラッグしてください"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sie sind ein professioneller Übersetzer. Übersetzen Sie den Text des Benutzers genau und bewahren Sie dabei die ursprüngliche Bedeutung, den Ton und die Nuancen. Erkennen Sie die Ausgangssprache automatisch und fragen Sie nach der Zielsprache, falls diese nicht angegeben ist."
+ "value" : "Bild hierher ziehen",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "あなたはプロの翻訳者です。元の意味、トーン、ニュアンスを保ちながら、ユーザーのテキストを正確に翻訳してください。ソース言語を自動的に識別し、ターゲット言語が指定されていない場合は尋ねてください。"
+ "value" : "Arrastra la imagen aquí"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "És um tradutor profissional. Traduz o texto do utilizador com precisão, preservando o significado, tom e nuances originais. Identifica automaticamente a língua de origem e pergunta pela língua de destino se não estiver especificada."
+ "value" : "Σύρετε την εικόνα εδώ",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eres un traductor profesional. Traduce el texto del usuario con precisión, preservando el significado, tono y matiz originales. Identifica automáticamente el idioma de origen y solicita el idioma de destino si no está especificado."
+ "value" : "Dra bilden hit",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je bent een professionele vertaler. Vertaal de tekst van de gebruiker nauwkeurig en behoud de oorspronkelijke betekenis, toon en nuance. Identificeer automatisch de brontaal en vraag om de doeltaal als deze niet is opgegeven."
+ "value" : "Sleep afbeelding hierheen",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Είστε επαγγελματίας μεταφραστής. Μεταφράστε το κείμενο του χρήστη με ακρίβεια διατηρώντας το αρχικό νόημα, τόνο και αποχρώσεις. Αναγνωρίστε αυτόματα τη γλώσσα προέλευσης και ζητήστε τη γλώσσα στόχο αν δεν έχει καθοριστεί."
+ "value" : "Glissez l’image ici"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vous êtes un traducteur professionnel. Traduisez le texte de l'utilisateur avec précision tout en préservant le sens, le ton et la nuance originaux. Identifiez automatiquement la langue source et demandez la langue cible si elle n'est pas spécifiée."
+ "value" : "Trascina l'immagine qui"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Du är en professionell översättare. Översätt användarens text noggrant samtidigt som du bevarar den ursprungliga betydelsen, tonen och nyansen. Identifiera källspråket automatiskt och fråga efter målspråket om det inte är angivet."
+ "value" : "Arraste a imagem aqui"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "You are a professional translator. Translate the user's text accurately while preserving the original meaning, tone, and nuance. Identify the source language automatically and ask for the target language if not specified."
+ "value" : "Drag image here",
+ "state" : "translated"
}
}
}
},
- "Could not be safely inspected" : {
+ "Green" : {
+ "comment" : "Name of the color green.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile esaminare in sicurezza"
+ "value" : "Vert"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konnte nicht sicher überprüft werden"
+ "value" : "Grön"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "安全に検査できませんでした"
+ "value" : "Verde",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível inspecionar com segurança"
+ "value" : "Grün",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudo inspeccionar de forma segura"
+ "value" : "緑",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kon niet veilig worden geïnspecteerd"
+ "value" : "Green",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η ασφαλής επιθεώρηση"
+ "value" : "Verde"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossible à inspecter en toute sécurité"
+ "value" : "Groen",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kunde inte inspekteras på ett säkert sätt"
+ "value" : "Verde"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Could not be safely inspected"
+ "value" : "Πράσινο"
}
}
}
},
- "Loading iCloud data..." : {
+ "Dismiss banner" : {
+ "comment" : "A label for dismissing a banner.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Caricamento dei dati di iCloud..."
+ "value" : "Banner schließen"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-Daten werden geladen..."
+ "value" : "Απόρριψη banner"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudデータを読み込み中…"
+ "value" : "Dismiss banner"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A carregar dados do iCloud..."
+ "value" : "Stäng bannern",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cargando datos de iCloud..."
+ "value" : "Fechar faixa de aviso"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-gegevens worden geladen..."
+ "value" : "Banner sluiten"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Φόρτωση δεδομένων iCloud..."
+ "value" : "Chiudi il banner"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chargement des données iCloud…"
+ "value" : "バナーを閉じる",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Läser in iCloud-data..."
+ "value" : "Fermer la bannière"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Loading iCloud data..."
+ "value" : "Descartar banner",
+ "state" : "translated"
}
}
}
},
- "Scroll the share sheet and tap **OpenClient**." : {
+ "Optimised for LiteLLM. Any OpenAI-compatible server also works." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Scorri il foglio di condivisione e tocca **OpenClient**."
+ "value" : "Βελτιστοποιημένο για LiteLLM. Λειτουργεί επίσης με οποιονδήποτε διακομιστή συμβατό με OpenAI."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Blättern Sie im Freigabeblatt und tippen Sie auf **OpenClient**."
+ "value" : "Optimized for LiteLLM. Any OpenAI-compatible server also works.",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "共有シートをスクロールして**OpenClient**をタップしてください。"
+ "value" : "LiteLLMに最適化。OpenAI互換のサーバーも利用可能。",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Desloque a folha de partilha e toque em **OpenClient**."
+ "value" : "Optimizado para LiteLLM. También funciona con cualquier servidor compatible con OpenAI.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Desplaza la hoja para compartir y toca **OpenClient**."
+ "value" : "Otimizado para LiteLLM. Qualquer servidor compatível com OpenAI também funciona.",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Scroll door het deelvenster en tik op **OpenClient**."
+ "value" : "Optimisé pour LiteLLM. Tout serveur compatible OpenAI fonctionne également."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Κύλιση στο φύλλο κοινής χρήσης και πατήστε **OpenClient**."
+ "value" : "Ottimizzato per LiteLLM. Funziona anche con qualsiasi server compatibile OpenAI.",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Faites défiler la feuille de partage et appuyez sur **OpenClient**."
+ "value" : "Geoptimaliseerd voor LiteLLM. Elke OpenAI-compatibele server werkt ook.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bläddra i delningsmenyn och tryck på **OpenClient**."
+ "value" : "Optimerad för LiteLLM. Fungerar även med alla OpenAI-kompatibla servrar."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Scroll the share sheet and tap **OpenClient**."
+ "value" : "Optimiert für LiteLLM. Jeder OpenAI-kompatible Server funktioniert ebenfalls.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A hint that describes the benefits of using a LiteLLM server."
},
- "Email Composer" : {
- "comment" : "Name of a prompt template for composing emails.",
+ "Any additional context you want the assistant to know. Max 500 characters." : {
+ "comment" : "A description of the extra information section.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Compositore Email"
+ "value" : "Eventuell ytterligare information du vill att assistenten ska känna till. Max 500 tecken.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "E-Mail-Verfasser"
+ "value" : "Eventuele aanvullende context die u wilt dat de assistent weet. Maximaal 500 tekens."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メール作成ツール"
+ "value" : "Περιγραφή της ενότητας με τις επιπλέον πληροφορίες.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Compositor de Email"
+ "value" : "Cualquier información adicional que desees que el asistente conozca. Máximo 500 caracteres."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Compositor de correo electrónico"
+ "value" : "Zusätzliche Informationen, die Sie dem Assistenten mitteilen möchten. Maximal 500 Zeichen."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "E-mailcomposer"
+ "value" : "追加情報セクションの説明です。"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Compositeur d’e-mails"
+ "value" : "Toute information supplémentaire que vous souhaitez que l’assistant connaisse. Maximum 500 caractères.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Σύνθετης Email"
+ "value" : "Qualsiasi informazione aggiuntiva che desideri comunicare all’assistente. Massimo 500 caratteri.",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "E-postkompositör"
+ "value" : "Any additional context you want the assistant to know. Max 500 characters."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Email Composer"
+ "value" : "Qualquer informação adicional que queira que o assistente saiba. Máx. 500 caracteres.",
+ "state" : "translated"
}
}
}
},
- "Customise this conversation" : {
- "comment" : "A label for a menu that allows users to customise their current conversation.",
+ "Retry Deletion" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalizza questa conversazione"
+ "value" : "Retry Deletion"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Diese Unterhaltung anpassen"
+ "value" : "Försök ta bort igen"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "この会話をカスタマイズする"
+ "value" : "Riprova eliminazione"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalizar esta conversa"
+ "value" : "Tentar eliminar novamente"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalizar esta conversación"
+ "value" : "Réessayer la suppression"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pas dit gesprek aan"
+ "value" : "削除を再試行",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσαρμόστε αυτή τη συνομιλία"
+ "value" : "Verwijdering opnieuw proberen"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personnaliser cette conversation"
+ "value" : "Reintentar eliminación"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anpassa den här konversationen"
+ "value" : "Löschen erneut versuchen"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Customize this conversation"
+ "value" : "Επανάληψη διαγραφής",
+ "state" : "translated"
}
}
}
},
- "Show API Key" : {
+ "The profile changed or was deleted before this save completed." : {
+ "comment" : "Error description when a profile change or deletion occurred before the save operation completed.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mostra chiave API"
+ "value" : "Le profil a été modifié ou supprimé avant la fin de l’enregistrement.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "API-Schlüssel anzeigen"
+ "value" : "Das Profil wurde geändert oder gelöscht, bevor dieser Speichervorgang abgeschlossen wurde."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "APIキーを表示"
+ "value" : "Het profiel is gewijzigd of verwijderd voordat deze opslag was voltooid.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mostrar chave API"
+ "value" : "Το προφίλ άλλαξε ή διαγράφηκε πριν ολοκληρωθεί αυτή η αποθήκευση."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mostrar clave API"
+ "value" : "The profile changed or was deleted before this save completed."
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "API-sleutel tonen"
+ "value" : "O perfil foi alterado ou eliminado antes de esta gravação ser concluída.",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afficher la clé API"
+ "value" : "Il profilo è stato modificato o eliminato prima del completamento del salvataggio."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εμφάνιση κλειδιού API"
+ "value" : "この保存が完了する前に、プロファイルが変更されたか削除されました。",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Visa API-nyckel"
+ "value" : "Profilen ändrades eller raderades innan den här sparningen slutfördes.",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Show API Key"
+ "value" : "El perfil cambió o se eliminó antes de que se completara este guardado.",
+ "state" : "translated"
}
}
}
},
- "The agent reached its maximum number of steps." : {
- "comment" : "Error message displayed when the agent has reached its maximum number of steps.",
+ "Unavailable" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "L'agente ha raggiunto il numero massimo di passi."
+ "value" : "Μη διαθέσιμος",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Der Agent hat die maximale Anzahl an Schritten erreicht."
+ "value" : "Inte tillgänglig"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "エージェントは最大ステップ数に達しました。"
+ "value" : "利用不可"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O agente atingiu o número máximo de passos."
+ "value" : "Indisponível"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El agente alcanzó su número máximo de pasos."
+ "value" : "Nicht verfügbar",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De agent heeft het maximale aantal stappen bereikt."
+ "value" : "Niet beschikbaar",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ο πράκτορας έφτασε στον μέγιστο αριθμό βημάτων."
+ "value" : "Unavailable",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "L'agent a atteint son nombre maximal d'étapes."
+ "value" : "No disponible",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Agenten har nått sitt maximala antal steg."
+ "value" : "Indisponible",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The agent has reached its maximum number of steps."
+ "value" : "Non disponibile"
}
}
- }
+ },
+ "comment" : "A label displayed in a list item that indicates that a server is unavailable."
},
- "Photo Library" : {
+ "Selected" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Libreria foto"
+ "value" : "Selected"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fotobibliothek"
+ "value" : "Geselecteerd"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "写真ライブラリ"
+ "value" : "Vald",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Biblioteca de Fotos"
+ "value" : "Selezionato"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Biblioteca de fotos"
+ "value" : "Επιλεγμένο"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fotobibliotheek"
+ "value" : "Selecionado",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Βιβλιοθήκη Φωτογραφιών"
+ "value" : "Seleccionado"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bibliothèque de photos"
+ "value" : "Sélectionné"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fotobibliotek"
+ "value" : "選択済み",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Photo Library"
+ "value" : "Ausgewählt",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label that indicates that a given option is selected."
},
- "Some synchronized data could not be deleted." : {
+ "Tips appear only when their related features are available." : {
+ "comment" : "A description of the feature tips section.",
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Non è stato possibile eliminare alcuni dati sincronizzati."
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Einige synchronisierte Daten konnten nicht gelöscht werden."
+ "value" : "Tipps erscheinen nur, wenn die zugehörigen Funktionen verfügbar sind."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "一部の同期データを削除できませんでした。"
+ "value" : "Tips appear only when their related features are available."
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível eliminar alguns dados sincronizados."
+ "value" : "I suggerimenti appaiono solo quando le relative funzionalità sono disponibili."
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se han podido eliminar algunos datos sincronizados."
+ "value" : "Tips verschijnen alleen wanneer de bijbehorende functies beschikbaar zijn.",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sommige gesynchroniseerde gegevens konden niet worden verwijderd."
+ "value" : "Οι συμβουλές εμφανίζονται μόνο όταν είναι διαθέσιμες οι σχετικές λειτουργίες.",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Certaines données synchronisées n’ont pas pu être supprimées."
+ "value" : "Les astuces apparaissent uniquement lorsque leurs fonctionnalités associées sont disponibles.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η διαγραφή ορισμένων συγχρονισμένων δεδομένων."
+ "value" : "ヒントは関連機能が利用可能な場合にのみ表示されます。"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vissa synkroniserade data kunde inte raderas."
+ "value" : "Tips visas endast när deras relaterade funktioner är tillgängliga."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Some synchronized data could not be deleted."
+ "value" : "As dicas aparecem apenas quando as funcionalidades relacionadas estão disponíveis.",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Los consejos aparecen solo cuando sus funciones relacionadas están disponibles.",
+ "state" : "translated"
}
}
}
},
- "Copy Image" : {
- "comment" : "A label for copying an image to the clipboard.",
+ "Loading comments..." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Copia immagine"
+ "value" : "Chargement des commentaires...",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bild kopieren"
+ "value" : "Cargando comentarios..."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "画像をコピー"
+ "value" : "Kommentare werden geladen...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Copiar imagem"
+ "value" : "Caricamento commenti...",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Copiar imagen"
+ "value" : "コメントを読み込み中...",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afbeelding kopiëren"
+ "value" : "Loading comments..."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Copier l’image"
+ "value" : "A carregar comentários...",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αντιγραφή εικόνας"
+ "value" : "Reacties laden..."
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kopiera bild"
+ "value" : "Läser in kommentarer...",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Copy Image"
+ "value" : "Φόρτωση σχολίων...",
+ "state" : "translated"
}
}
}
},
- "Enable Notifications" : {
- "comment" : "A button that enables notifications.",
+ "Documents" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Abilita notifiche"
- }
- },
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Benachrichtigungen aktivieren"
+ "value" : "Dokument"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "通知を有効にする"
+ "value" : "Documenten",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ativar notificações"
+ "value" : "Έγγραφα"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Activar notificaciones"
+ "value" : "Documentos"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Meldingen inschakelen"
+ "value" : "Dokumente"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ενεργοποίηση ειδοποιήσεων"
+ "value" : "Documents"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Activer les notifications"
+ "value" : "ドキュメント"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktivera aviseringar"
+ "value" : "Documenti"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Enable Notifications"
+ "value" : "Documents",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Documentos"
}
}
- }
+ },
+ "comment" : "A section header for a list of documents."
},
- "Export" : {
- "comment" : "A label for exporting a conversation.",
+ "Record Audio" : {
+ "comment" : "A label for the record audio button.",
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Esporta"
+ "value" : "Registra audio",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Exportieren"
+ "value" : "Audio aufnehmen"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "エクスポート"
+ "value" : "Enregistrer l’audio"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Exportar"
+ "value" : "Grabar audio"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Exportar"
+ "value" : "音声を録音",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Exporteren"
+ "value" : "Record Audio"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εξαγωγή"
+ "value" : "Gravar Áudio"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Exporter"
+ "value" : "Spela in ljud",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Exportera"
+ "value" : "Audio opnemen",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Export"
+ "value" : "Εγγραφή ήχου",
+ "state" : "translated"
}
}
}
},
- "This tool is unavailable until its server and input schema can be verified." : {
- "comment" : "A warning message that appears when a tool is unavailable.",
+ "Synchronizing all app data..." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Questo strumento non è disponibile finché non sarà possibile verificare il relativo server e lo schema di input."
+ "value" : "Synchronisation de toutes les données de l’app…",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dieses Tool ist nicht verfügbar, bis sein Server und Eingabeschema verifiziert werden können."
+ "value" : "A sincronizar todos os dados da app…",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "このツールは、サーバーと入力スキーマを検証できるまで利用できません"
+ "value" : "Alle App-Daten werden synchronisiert..."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esta ferramenta está indisponível até ser possível verificar o respetivo servidor e esquema de entrada."
+ "value" : "Συγχρονισμός όλων των δεδομένων της εφαρμογής..."
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Esta herramienta no está disponible hasta que se puedan verificar su servidor y esquema de entrada."
+ "value" : "Sincronizando todos los datos de la app...",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deze tool is niet beschikbaar totdat de server en het invoerschema ervan kunnen worden geverifieerd."
+ "value" : "Alle appgegevens synchroniseren..."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cet outil est indisponible jusqu’à ce que son serveur et son schéma d’entrée puissent être vérifiés."
+ "value" : "Synkroniserar all appdata..."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αυτό το εργαλείο δεν είναι διαθέσιμο έως ότου επαληθευτούν ο διακομιστής και το σχήμα εισόδου του."
+ "value" : "すべてのアプリデータを同期中…",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Det här verktyget är inte tillgängligt förrän dess server och inmatningsschema kan verifieras."
+ "value" : "Synchronizing all app data..."
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "This tool is unavailable until its server and input schema can be verified."
+ "value" : "Sincronizzazione di tutti i dati dell’app..."
}
}
}
},
- "New Memory" : {
- "comment" : "A label for a new memory item.",
+ "Tags" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nuova memoria"
+ "value" : "Tags"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neue Erinnerung"
+ "value" : "Etiquetas"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "新しいメモリー"
+ "value" : "Ετικέτες",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nova Memória"
+ "value" : "タグ"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nueva memoria"
+ "value" : "Tags",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nieuwe herinnering"
+ "value" : "Tag"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Νέα Μνήμη"
+ "value" : "Tags",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nouvelle mémoire"
+ "value" : "Taggar"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nytt minne"
+ "value" : "Etiquetas",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "New Memory"
+ "value" : "Étiquettes"
}
}
- }
+ },
+ "comment" : "A heading displayed above the user's tags."
},
- "MCP tools could not be loaded. Check the server connection and try again." : {
- "comment" : "Error message when MCP is not available.",
+ "Stop" : {
"localizations" : {
- "it" : {
+ "en" : {
+ "stringUnit" : {
+ "value" : "Stop",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile caricare gli strumenti MCP. Controlla la connessione al server e riprova."
+ "value" : "Stoppa"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-Tools konnten nicht geladen werden. Überprüfe die Serververbindung und versuche es erneut."
+ "value" : "Arrêter"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPツールを読み込めませんでした。サーバー接続を確認して、もう一度お試しください。"
+ "value" : "停止"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível carregar as ferramentas MCP. Verifique a ligação ao servidor e tente novamente."
+ "value" : "Parar",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se han podido cargar las herramientas MCP. Comprueba la conexión con el servidor y vuelve a intentarlo."
+ "value" : "Detener"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-tools konden niet worden geladen. Controleer de serververbinding en probeer het opnieuw."
+ "value" : "Stoppen"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Les outils MCP n’ont pas pu être chargés. Vérifiez la connexion au serveur et réessayez."
+ "value" : "Interrompi",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν ήταν δυνατή η φόρτωση των εργαλείων MCP. Ελέγξτε τη σύνδεση με τον διακομιστή και δοκιμάστε ξανά."
- }
- },
- "sv" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "MCP-verktygen kunde inte läsas in. Kontrollera serveranslutningen och försök igen."
+ "value" : "Διακοπή",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP tools could not be loaded. Check the server connection and try again."
+ "value" : "Stopp",
+ "state" : "translated"
}
}
}
},
- "Drag image here" : {
+ "or" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Trascina l'immagine qui"
+ "value" : "ou",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bild hierher ziehen"
+ "value" : "oder"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ここに画像をドラッグしてください"
+ "value" : "ou",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Arraste a imagem aqui"
+ "value" : "ή"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Arrastra la imagen aquí"
+ "value" : "o"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sleep afbeelding hierheen"
+ "value" : "of",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Glissez l’image ici"
+ "value" : "eller"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Σύρετε την εικόνα εδώ"
+ "value" : "または",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dra bilden hit"
+ "value" : "or"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Drag image here"
+ "value" : "o",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Text for the \"or\" option in a list of options."
},
- "Imported %lld conversations and restored %lld attachments." : {
+ "Text to Speech" : {
+ "comment" : "A section title for a list of text-to-speech models.",
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Importate %1$lld conversazioni e ripristinati %2$lld allegati."
+ "value" : "Sintesi vocale",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld Konversationen importiert und %2$lld Anhänge wiederhergestellt."
+ "value" : "Texto a voz",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld 件の会話をインポートし、%2$lld 件の添付ファイルを復元しました。"
+ "value" : "Text to Speech",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Importadas %1$lld conversas e restaurados %2$lld anexos."
+ "value" : "Synthèse vocale"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Se importaron %1$lld conversaciones y se restauraron %2$lld archivos adjuntos."
+ "value" : "Text-zu-Sprache"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld gesprekken geïmporteerd en %2$lld bijlagen hersteld."
+ "value" : "Text-till-tal",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld conversations importées et %2$lld pièces jointes restaurées."
+ "value" : "Tekst-naar-spraak"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εισήχθησαν %1$lld συνομιλίες και αποκαταστάθηκαν %2$lld συνημμένα."
+ "value" : "テキスト読み上げ"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Importerade %1$lld konversationer och återställde %2$lld bilagor."
+ "value" : "Texto para Fala",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "new",
- "value" : "Imported %1$lld conversations and restored %2$lld attachments."
+ "state" : "translated",
+ "value" : "Κείμενο σε Ομιλία"
}
}
}
},
- "Settings" : {
+ "Rejected" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impostazioni"
+ "value" : "Απορρίφθηκε"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Einstellungen"
+ "value" : "Rejected"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "設定"
+ "value" : "Rifiutato"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Definições"
+ "value" : "Abgelehnt"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Configuración"
+ "value" : "Geweigerd"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Instellingen"
+ "value" : "Rejeté",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ρυθμίσεις"
+ "value" : "拒否されました"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Paramètres"
+ "value" : "Rejeitado"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inställningar"
+ "value" : "Avvisad"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Settings"
+ "value" : "Rechazado",
+ "state" : "translated"
}
}
}
},
- "tag.image.generation" : {
- "comment" : "Label for the image generation capability.",
+ "iCloud Sync" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image"
+ "value" : "iCloud-Synchronisierung"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image"
+ "value" : "iCloud Sync"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Image"
+ "value" : "Sincronización iCloud",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image"
+ "value" : "iCloud同期"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Image"
+ "value" : "Sincronização iCloud",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Image"
+ "value" : "Sincronizzazione iCloud",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Image"
+ "value" : "Synchronisation iCloud",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image"
+ "value" : "iCloud-synchronisatie"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image"
+ "value" : "iCloud-synkronisering"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image"
+ "value" : "Συγχρονισμός iCloud"
}
}
}
},
- "iCloud account review required" : {
+ "The model can request this external tool, but execution will be blocked." : {
+ "comment" : "A warning message that appears when a user denies a tool's access.",
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "È necessaria la verifica dell’account iCloud"
+ "value" : "Il modello può richiedere questo strumento esterno, ma l’esecuzione verrà bloccata.",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Überprüfung des iCloud-Accounts erforderlich"
+ "value" : "El modelo puede solicitar esta herramienta externa, pero la ejecución se bloqueará.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloudアカウントの確認が必要です"
+ "value" : "The model can request this external tool, but execution will be blocked.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "É necessária a verificação da conta iCloud"
+ "value" : "Le modèle peut demander cet outil externe, mais son exécution sera bloquée.",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Se requiere revisar la cuenta de iCloud"
+ "value" : "Das Modell kann dieses externe Tool anfordern, aber die Ausführung wird blockiert."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Controle van iCloud-account vereist"
+ "value" : "モデルはこの外部ツールをリクエストできますが、実行はブロックされます。"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Απαιτείται έλεγχος λογαριασμού iCloud"
+ "value" : "O modelo pode solicitar esta ferramenta externa, mas a execução será bloqueada.",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vérification du compte iCloud requise"
+ "value" : "Het model kan deze externe tool aanvragen, maar de uitvoering wordt geblokkeerd."
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Granskning av iCloud-kontot krävs"
+ "value" : "Modellen kan begära det här externa verktyget, men körningen kommer att blockeras."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud account review required"
+ "value" : "Το μοντέλο μπορεί να ζητήσει αυτό το εξωτερικό εργαλείο, αλλά η εκτέλεση θα αποκλειστεί.",
+ "state" : "translated"
}
}
}
},
- "See your latest conversations and jump back in." : {
- "comment" : "Widget description.",
+ "Comments" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Visualizza le tue ultime conversazioni e riprendi da dove avevi interrotto."
+ "value" : "Kommentare"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sieh dir deine neuesten Unterhaltungen an und steige wieder ein."
+ "value" : "Comments",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "最新の会話を確認してすぐに再開できます"
+ "value" : "Σχόλια",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Veja as suas conversas mais recentes e volte a elas."
+ "value" : "Kommentarer"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Consulta tus últimas conversaciones y vuelve a ellas."
+ "value" : "Comentários",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bekijk je laatste gesprekken en ga er direct mee verder."
+ "value" : "Reacties"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voir vos dernières conversations et y revenir."
+ "value" : "Commenti"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δες τις πιο πρόσφατες συνομιλίες σου και συνέχισε από εκεί."
+ "value" : "コメント",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Se dina senaste konversationer och hoppa tillbaka in."
+ "value" : "Commentaires"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "See your latest conversations and jump back in"
+ "value" : "Comentarios"
}
}
}
},
- "Synchronizes conversations and their attachments, profile, memory, and prompt templates across devices. Attachments are synchronized as part of their conversations." : {
+ "Unable to Load MCP Tools" : {
+ "comment" : "A title for a view that indicates that MCP tools cannot be loaded.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sincronizza le conversazioni e i relativi allegati, il profilo, la memoria e i modelli di prompt tra i dispositivi. Gli allegati vengono sincronizzati insieme alle relative conversazioni."
+ "value" : "Impossible de charger les outils MCP",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchronisiert Unterhaltungen und deren Anhänge, Profil, Speicher und Prompt-Vorlagen geräteübergreifend. Anhänge werden als Teil ihrer Unterhaltungen synchronisiert."
+ "value" : "Não foi possível carregar as ferramentas MCP",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "会話とその添付ファイル、プロフィール、メモリ、プロンプトテンプレートをデバイス間で同期します。添付ファイルは会話の一部として同期されます。"
+ "value" : "MCP-Tools konnten nicht geladen werden",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sincroniza conversas e respetivos anexos, perfil, memória e modelos de prompt entre dispositivos. Os anexos são sincronizados como parte das respetivas conversas."
+ "value" : "No se pueden cargar las herramientas de MCP",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sincroniza las conversaciones y sus archivos adjuntos, el perfil, la memoria y las plantillas de indicaciones entre dispositivos. Los archivos adjuntos se sincronizan como parte de sus conversaciones."
+ "value" : "Αδυναμία φόρτωσης εργαλείων MCP",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchroniseert gesprekken en hun bijlagen, profiel, geheugen en promptsjablonen op al je apparaten. Bijlagen worden gesynchroniseerd als onderdeel van hun gesprekken."
+ "value" : "Kan MCP-tools niet laden"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Συγχρονίζει τις συνομιλίες και τα συνημμένα τους, το προφίλ, τη μνήμη και τα πρότυπα προτροπών σε όλες τις συσκευές. Τα συνημμένα συγχρονίζονται ως μέρος των συνομιλιών τους."
+ "value" : "MCPツールを読み込めませんサム、】【analysis (empty) ",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchronise les conversations et leurs pièces jointes, le profil, la mémoire et les modèles de prompts entre les appareils. Les pièces jointes sont synchronisées avec leurs conversations."
+ "value" : "Unable to Load MCP Tools",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synkroniserar konversationer och deras bilagor, profil, minne och promptmallar mellan enheter. Bilagor synkroniseras som en del av deras konversationer."
+ "value" : "Kunde inte läsa in MCP-verktyg"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronizes conversations and their attachments, profile, memory, and prompt templates across devices. Attachments are synchronized as part of their conversations."
+ "value" : "Impossibile caricare gli strumenti MCP"
}
}
}
},
- "Summarizer" : {
- "comment" : "Name of a prompt template that summarizes text.",
+ "Permissions apply to this device and the current MCP server configuration." : {
+ "comment" : "A description of the permissions that apply to this device and the current MCP server configuration.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sintetizzatore"
+ "value" : "Les autorisations s’appliquent à cet appareil et à la configuration actuelle du serveur MCP."
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zusammenfasser"
+ "value" : "Berechtigungen gelten für dieses Gerät und die aktuelle MCP-Serverkonfiguration."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "要約ツール"
+ "value" : "Machtigingen zijn van toepassing op dit apparaat en de huidige MCP-serverconfiguratie."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sumarizador"
+ "value" : "Τα δικαιώματα ισχύουν για αυτήν τη συσκευή και την τρέχουσα διαμόρφωση διακομιστή MCP."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Resumidor"
+ "value" : "As permissões aplicam-se a este dispositivo e à configuração atual do servidor MCP.",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Samenvatter"
+ "value" : "Permissions apply to this device and the current MCP server configuration."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Résumé"
+ "value" : "Le autorizzazioni si applicano a questo dispositivo e alla configurazione attuale del server MCP."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Περίληψη"
+ "value" : "権限はこのデバイスと現在のMCPサーバー構成に適用されます。",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sammanfattare"
+ "value" : "Behörigheterna gäller för den här enheten och den aktuella MCP-serverkonfigurationen.",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Summarizer"
+ "value" : "Los permisos se aplican a este dispositivo y a la configuración actual del servidor MCP.",
+ "state" : "translated"
}
}
}
},
- "Deletes this conversation and its attachments from iCloud and all synchronized devices. Attachments cannot be deleted independently. This action cannot be undone." : {
+ "Images and documents you attach to messages will appear here." : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina questa conversazione e i relativi allegati da iCloud e da tutti i dispositivi sincronizzati. Gli allegati non possono essere eliminati singolarmente. Questa azione non può essere annullata."
+ "value" : "Las imágenes y documentos que adjuntes a los mensajes aparecerán aquí."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Löscht diese Unterhaltung und ihre Anhänge aus iCloud und von allen synchronisierten Geräten. Anhänge können nicht unabhängig gelöscht werden. Diese Aktion kann nicht rückgängig gemacht werden."
+ "value" : "Afbeeldingen en documenten die je aan berichten toevoegt, verschijnen hier.",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "この会話と添付ファイルをiCloudおよび同期済みのすべてのデバイスから削除します。添付ファイルを個別に削除することはできません。この操作は取り消せません。"
+ "value" : "Bilder och dokument som du bifogar i meddelanden visas här.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina esta conversa e os respetivos anexos do iCloud e de todos os dispositivos sincronizados. Não é possível eliminar os anexos individualmente. Esta ação não pode ser anulada."
+ "value" : "Le immagini e i documenti che alleghi ai messaggi appariranno qui."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina esta conversación y sus archivos adjuntos de iCloud y de todos los dispositivos sincronizados. Los archivos adjuntos no se pueden eliminar de forma independiente. Esta acción no se puede deshacer."
+ "value" : "Les images et documents que vous joignez aux messages apparaîtront ici."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verwijdert dit gesprek en de bijlagen ervan uit iCloud en van alle gesynchroniseerde apparaten. Bijlagen kunnen niet afzonderlijk worden verwijderd. Deze actie kan niet ongedaan worden gemaakt."
+ "value" : "Images and documents you attach to messages will appear here."
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαγράφει αυτή τη συνομιλία και τα συνημμένα της από το iCloud και όλες τις συγχρονισμένες συσκευές. Τα συνημμένα δεν μπορούν να διαγραφούν ανεξάρτητα. Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
+ "value" : "Οι εικόνες και τα έγγραφα που επισυνάπτετε στα μηνύματα θα εμφανίζονται εδώ.",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supprime cette conversation et ses pièces jointes d’iCloud et de tous les appareils synchronisés. Les pièces jointes ne peuvent pas être supprimées séparément. Cette action est irréversible."
+ "value" : "As imagens e documentos que anexar às mensagens aparecerão aqui."
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Raderar den här konversationen och dess bilagor från iCloud och alla synkroniserade enheter. Bilagor kan inte raderas separat. Den här åtgärden kan inte ångras."
+ "value" : "メッセージに添付した画像や書類はここに表示されます。"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deletes this conversation and its attachments from iCloud and all synchronized devices. Attachments cannot be deleted independently. This action cannot be undone."
+ "value" : "Bilder und Dokumente, die Sie Nachrichten anhängen, werden hier angezeigt.",
+ "state" : "translated"
}
}
- }
- },
- "Output tokens" : {
- "shouldTranslate" : false,
- "comment" : "A label for the maximum number of output tokens a model can generate."
+ },
+ "comment" : "A description of the content of the view."
},
- "Feature Tips" : {
- "comment" : "A section that allows users to dismiss feature tips.",
+ "OpenClient is free and open source" : {
+ "comment" : "A description of the OpenClient app.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suggerimenti sulle funzionalità"
+ "value" : "O OpenClient é gratuito e de código aberto",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Funktionstipps"
+ "value" : "OpenClient est gratuit et open source",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "機能のヒント"
+ "value" : "OpenClient ist kostenlos und Open Source"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dicas de Funcionalidades"
+ "value" : "Το OpenClient είναι δωρεάν και ανοιχτού κώδικα"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Consejos de funciones"
+ "value" : "OpenClient es gratuito y de código abierto"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Functietips"
+ "value" : "OpenClient is gratis en open source",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conseils sur les fonctionnalités"
+ "value" : "OpenClient är gratis och öppen källkod",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Συμβουλές λειτουργιών"
+ "value" : "OpenClient is free and open source",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Funktionstips"
+ "value" : "OpenClientは無料のオープンソースです"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Feature Tips"
+ "value" : "OpenClient è gratuito e open source",
+ "state" : "translated"
}
}
}
},
- "Some local data could not be reset. No remaining data was discarded." : {
- "comment" : "A description of the error that occurs when the user tries to reset the app's data.",
+ "Only active" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Non è stato possibile reimpostare alcuni dati locali. Nessun dato rimanente è stato eliminato."
+ "value" : "Only active",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Einige lokale Daten konnten nicht zurückgesetzt werden. Es wurden keine verbleibenden Daten verworfen."
+ "value" : "Endast aktiva"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "一部のローカルデータをリセットできませんでした。残りのデータは破棄されていません。"
+ "value" : "Uniquement actif",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível repor alguns dados locais. Não foram eliminados dados restantes."
+ "value" : "Solo attivi",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudieron restablecer algunos datos locales. No se descartaron datos restantes."
+ "value" : "Μόνο ενεργά",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sommige lokale gegevens konden niet worden teruggezet. Er zijn geen resterende gegevens verwijderd."
+ "value" : "Solo activos",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν ήταν δυνατή η επαναφορά ορισμένων τοπικών δεδομένων. Δεν απορρίφθηκαν δεδομένα που απέμειναν."
+ "value" : "Apenas ativo",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Certaines données locales n’ont pas pu être réinitialisées. Aucune donnée restante n’a été supprimée."
+ "value" : "アクティブのみ"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vissa lokala data kunde inte återställas. Inga kvarvarande data kasserades."
+ "value" : "Nur aktiv"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Some local data could not be reset. No remaining data was discarded."
+ "value" : "Alleen actief"
}
}
}
},
- "The model finished responding. Tap to continue." : {
- "comment" : "Text displayed in a notification when the LLM has finished responding.",
+ "Private chats are not saved or synced, and they do not read or change personal memory." : {
+ "comment" : "A description of private chats.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il modello ha terminato la risposta. Tocca per continuare."
+ "value" : "Privégesprekken worden niet opgeslagen of gesynchroniseerd en lezen of wijzigen geen persoonlijke herinneringen."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Das Modell hat die Antwort beendet. Tippen, um fortzufahren."
+ "value" : "Οι ιδιωτικές συνομιλίες δεν αποθηκεύονται ή συγχρονίζονται και δεν διαβάζουν ούτε αλλάζουν την προσωπική μνήμη."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "モデルの応答が完了しました。タップして続行してください。"
+ "value" : "Private chats are not saved or synced, and they do not read or modify personal memory."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O modelo terminou de responder. Toque para continuar."
+ "value" : "Los chats privados no se guardan ni sincronizan, y no leen ni modifican la memoria personal.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El modelo terminó de responder. Toca para continuar."
+ "value" : "Les discussions privées ne sont pas enregistrées ni synchronisées, et elles ne lisent ni ne modifient la mémoire personnelle."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Het model is klaar met antwoorden. Tik om door te gaan."
+ "value" : "プライベートチャットは保存や同期されず、個人の記憶を読み取ったり変更したりしません。",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το μοντέλο ολοκλήρωσε την απάντηση. Πατήστε για συνέχεια."
+ "value" : "As conversas privadas não são guardadas nem sincronizadas, e não leem nem alteram a memória pessoal."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le modèle a terminé de répondre. Touchez pour continuer."
+ "value" : "Privata chattar sparas inte eller synkroniseras, och de läser inte eller ändrar personlig minne.",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modellen har slutat svara. Tryck för att fortsätta."
+ "value" : "Le chat private non vengono salvate né sincronizzate, e non leggono né modificano la memoria personale."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The model finished responding. Tap to continue."
+ "value" : "Private Chats werden nicht gespeichert oder synchronisiert und lesen oder ändern das persönliche Gedächtnis nicht."
}
}
}
},
- "Loading suggestions..." : {
+ "%lld messages excluded from this request" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Caricamento suggerimenti..."
+ "value" : "%lld mensagens excluídas deste pedido"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vorschläge werden geladen..."
+ "value" : "このリクエストから %lld 件のメッセージが除外されました"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "提案を読み込み中..."
+ "value" : "%lld berichten uitgesloten van dit verzoek"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A carregar sugestões..."
+ "value" : "%lld Nachrichten von dieser Anfrage ausgeschlossen",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cargando sugerencias..."
+ "value" : "%lld μηνύματα εξαιρέθηκαν από αυτό το αίτημα",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggesties laden..."
+ "value" : "%lld meddelanden uteslutna från denna förfrågan"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Φόρτωση προτάσεων..."
+ "value" : "%lld messages excluded from this request"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chargement des suggestions..."
+ "value" : "%lld messaggi esclusi da questa richiesta",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Laddar förslag..."
+ "value" : "%lld mensajes excluidos de esta solicitud",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Loading suggestions..."
+ "value" : "%lld messages exclus de cette requête",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A message indicating that a certain number of messages have been excluded from a request. The argument is the number of messages that have been excluded."
},
- "New Conversation" : {
+ "All" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nuova conversazione"
+ "value" : "Todos"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neues Gespräch"
+ "value" : "Alles"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "新しい会話"
+ "value" : "Alla"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nova Conversa"
+ "value" : "Tutti",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nueva conversación"
+ "value" : "All"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nieuw gesprek"
+ "value" : "Tout"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Νέα Συνομιλία"
+ "value" : "Όλα"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nouvelle conversation"
+ "value" : "Tudo"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ny konversation"
+ "value" : "すべて",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "New Conversation"
+ "value" : "Alle"
}
}
}
},
- "You are a professional email writing assistant. Draft clear, concise, and appropriately toned emails based on the user's brief. Adapt the tone (formal, casual, or persuasive) to the context described." : {
- "comment" : "Description of an email composer prompt template.",
+ "Edit" : {
+ "comment" : "A button that opens a sheet for editing a template.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sei un assistente professionale per la scrittura di email. Redigi email chiare, concise e con un tono adeguato in base al breve riassunto fornito dall’utente. Adatti il tono (formale, informale o persuasivo) al contesto descritto."
+ "value" : "Editar"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sie sind ein professioneller Assistent zum Verfassen von E-Mails. Erstellen Sie klare, prägnante und angemessen formulierte E-Mails basierend auf der Kurzzusammenfassung des Nutzers. Passen Sie den Ton (formell, locker oder überzeugend) an den beschriebenen Kontext an."
+ "value" : "Bewerken",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "あなたはプロのメール作成アシスタントです。ユーザーの要望に基づき、明確で簡潔かつ適切なトーンのメールを作成します。状況に応じてトーン(フォーマル、カジュアル、説得力のある)を調整します。"
+ "value" : "Redigera",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "É um assistente profissional de redação de emails. Elabore emails claros, concisos e com o tom adequado com base no resumo do utilizador. Adapte o tom (formal, informal ou persuasivo) ao contexto descrito."
+ "value" : "Modifica",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eres un asistente profesional para redactar correos electrónicos. Redacta correos claros, concisos y con el tono adecuado según el resumen del usuario. Adapta el tono (formal, informal o persuasivo) al contexto descrito."
+ "value" : "Edit"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je bent een professionele e-mailassistent. Stel heldere, beknopte en passend getoonde e-mails op op basis van de samenvatting van de gebruiker. Pas de toon (formeel, informeel of overtuigend) aan op de beschreven context."
+ "value" : "Modifier",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Είστε επαγγελματίας βοηθός σύνταξης email. Δημιουργήστε σαφή, συνοπτικά και κατάλληλα διατυπωμένα email βάσει της περίληψης του χρήστη. Προσαρμόστε τον τόνο (επίσημο, ανεπίσημο ή πειστικό) ανάλογα με το περιγραφόμενο πλαίσιο."
+ "value" : "Επεξεργασία"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vous êtes un assistant professionnel de rédaction d’e-mails. Rédigez des e-mails clairs, concis et au ton approprié selon le résumé de l’utilisateur. Adaptez le ton (formel, informel ou persuasif) au contexte décrit."
+ "value" : "Editar",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Du är en professionell assistent för e-postskrivning. Skapa tydliga, koncisa och passande tonade e-postmeddelanden baserat på användarens sammanfattning. Anpassa tonen (formell, avslappnad eller övertygande) efter den beskrivna kontexten."
+ "value" : "編集",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "You are a professional email writing assistant. Draft clear, concise, and appropriately toned emails based on the user's brief. Adapt the tone (formal, casual, or persuasive) to the context described."
+ "value" : "Bearbeiten"
}
}
}
},
- "No Templates" : {
- "comment" : "A title that describes the absence of templates.",
+ "Delete All Synchronized Data?" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessun modello"
+ "value" : "Delete All Synchronized Data?"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keine Vorlagen"
+ "value" : "Alle synchronisierten Daten löschen?",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "テンプレートなし"
+ "value" : "Alle gesynchroniseerde gegevens verwijderen?",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sem Modelos"
+ "value" : "Διαγραφή όλων των συγχρονισμένων δεδομένων;",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sin plantillas"
+ "value" : "Radera alla synkroniserade data?",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geen sjablonen"
+ "value" : "¿Eliminar todos los datos sincronizados?",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucun modèle"
+ "value" : "Supprimer toutes les données synchronisées ?",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Χωρίς Πρότυπα"
+ "value" : "Eliminare tutti i dati sincronizzati?"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga mallar"
+ "value" : "Eliminar todos os dados sincronizados?"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No Templates"
+ "value" : "同期済みデータをすべて削除しますか?",
+ "state" : "translated"
}
}
}
},
- "Fetch the list of search tools configured in your LiteLLM server." : {
- "comment" : "A description of the action to fetch the list of search tools.",
+ "Set instructions for the assistant's behavior in this conversation." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Recupera l'elenco degli strumenti di ricerca configurati nel tuo server LiteLLM."
+ "value" : "Set instructions for the assistant's behavior in this conversation.",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rufe die Liste der in deinem LiteLLM-Server konfigurierten Suchwerkzeuge ab."
+ "value" : "Establecer instrucciones para el comportamiento del asistente en esta conversación.",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "LiteLLMサーバーに設定されている検索ツールの一覧を取得します。"
+ "value" : "Anweisungen für das Verhalten des Assistenten in diesem Gespräch festlegen.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Obter a lista de ferramentas de pesquisa configuradas no seu servidor LiteLLM."
+ "value" : "Ορίστε οδηγίες για τη συμπεριφορά του βοηθού σε αυτή τη συνομιλία."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Obtener la lista de herramientas de búsqueda configuradas en su servidor LiteLLM."
+ "value" : "この会話におけるアシスタントの動作指示を設定してください。",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Haal de lijst met zoekhulpmiddelen op die zijn geconfigureerd in uw LiteLLM-server."
+ "value" : "Imposta le istruzioni per il comportamento dell'assistente in questa conversazione.",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Récupérer la liste des outils de recherche configurés sur votre serveur LiteLLM."
+ "value" : "Defina as instruções para o comportamento do assistente nesta conversa."
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ανάκτηση της λίστας εργαλείων αναζήτησης που έχουν ρυθμιστεί στον διακομιστή LiteLLM σας."
+ "value" : "Stel instructies in voor het gedrag van de assistent in dit gesprek.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hämta listan över sökverktyg som är konfigurerade i din LiteLLM-server."
+ "value" : "Ange instruktioner för assistentens beteende i denna konversation.",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fetch the list of search tools configured on your LiteLLM server."
+ "value" : "Définir les instructions pour le comportement de l’assistant dans cette conversation.",
+ "state" : "translated"
}
}
}
},
- "Could not connect to the server." : {
+ "No Conversations" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile connettersi al server."
+ "value" : "Geen gesprekken"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verbindung zum Server konnte nicht hergestellt werden."
+ "value" : "Nessuna conversazione",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サーバーに接続できませんでした。"
+ "value" : "会話なし"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível ligar ao servidor."
+ "value" : "Sem Conversas"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pudo conectar al servidor."
+ "value" : "Sin conversaciones"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kan geen verbinding maken met de server."
+ "value" : "Καμία συνομιλία",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η σύνδεση με τον διακομιστή."
+ "value" : "Inga konversationer"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossible de se connecter au serveur."
+ "value" : "Aucune conversation"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kunde inte ansluta till servern."
+ "value" : "No Conversations"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Could not connect to the server."
+ "value" : "Keine Unterhaltungen"
}
}
}
},
- "Add an **Open URLs** action." : {
- "comment" : "Step 2 of creating a shortcut using the Shortcuts app.",
+ "Copy Image" : {
+ "comment" : "A label for copying an image to the clipboard.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aggiungi un’azione **Apri URL**."
+ "value" : "Αντιγραφή εικόνας",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Füge eine Aktion **URLs öffnen** hinzu."
+ "value" : "Copia immagine"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "**URLを開く**アクションを追加してください。"
+ "value" : "Copiar imagen"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Adicionar uma ação **Abrir URLs**."
+ "value" : "Afbeelding kopiëren"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Agregar una acción **Abrir URLs**."
+ "value" : "画像をコピー"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voeg een **Open URL's**-actie toe."
+ "value" : "Bild kopieren"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσθέστε μια ενέργεια **Άνοιγμα URL**."
+ "value" : "Copier l’image"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ajouter une action **Ouvrir des URL**."
+ "value" : "Copy Image",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Lägg till en åtgärd för **Öppna URL:er**."
+ "value" : "Copiar imagem",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Add an **Open URLs** action"
+ "value" : "Kopiera bild",
+ "state" : "translated"
}
}
}
},
- "Title (Minimum 3 characters)" : {
+ "Sends the arguments below to %@. It may access, create, change, or delete external data and may incur costs." : {
+ "comment" : "A tooltip that describes the potential impact of sending the arguments of a request to a server.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Titolo (Minimo 3 caratteri)"
+ "value" : "Αποστέλλει τα παρακάτω ορίσματα στο %@. Ενδέχεται να αποκτήσει πρόσβαση, να δημιουργήσει, να αλλάξει ή να διαγράψει εξωτερικά δεδομένα και να επιφέρει χρεώσεις."
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Titel (mindestens 3 Zeichen)"
+ "value" : "以下の引数を%@に送信します。外部データへのアクセス、作成、変更、削除が行われ、費用が発生する場合があります。"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "タイトル(最低3文字)"
+ "value" : "Sendet die folgenden Argumente an %@. Dabei können externe Daten abgerufen, erstellt, geändert oder gelöscht werden, und es können Kosten entstehen."
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Título (Mínimo 3 caracteres)"
+ "value" : "Envia os argumentos abaixo para %@. Poderá aceder, criar, alterar ou eliminar dados externos e poderá incorrer em custos."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Título (mínimo 3 caracteres)"
+ "value" : "Envía los argumentos siguientes a %@. Puede acceder a datos externos, crearlos, modificarlos o eliminarlos, y puede generar costes."
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Titel (Minimaal 3 tekens)"
+ "value" : "Envoie les arguments ci-dessous à %@. Celui-ci peut accéder à des données externes, en créer, les modifier ou les supprimer, et peut occasionner des frais."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Titre (Minimum 3 caractères)"
+ "value" : "Skickar argumenten nedan till %@. Den kan komma åt, skapa, ändra eller radera externa data och kan medföra kostnader."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Τίτλος (Ελάχιστο 3 χαρακτήρες)"
+ "value" : "Invia gli argomenti riportati di seguito a %@. Potrebbe accedere a dati esterni, crearli, modificarli o eliminarli e potrebbe comportare dei costi."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Titel (Minst 3 tecken)"
+ "value" : "Sends the arguments below to %@. It may access, create, change, or delete external data and may incur costs.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Title (Minimum 3 characters)"
+ "value" : "Stuurt de onderstaande argumenten naar %@. De server kan externe gegevens openen, aanmaken, wijzigen of verwijderen en er kunnen kosten in rekening worden gebracht."
}
}
}
},
- "Quick Actions" : {
- "comment" : "Widget name.",
+ "No conversations found with the selected tag" : {
+ "comment" : "A message displayed when there are no conversations with a specific tag.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Azioni rapide"
+ "value" : "Aucune conversation trouvée avec le tag sélectionné",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Schnellaktionen"
+ "value" : "Nenhuma conversa encontrada com a etiqueta selecionada",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "クイックアクション"
+ "value" : "Keine Unterhaltungen mit dem ausgewählten Tag gefunden"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ações Rápidas"
+ "value" : "No se encontraron conversaciones con la etiqueta seleccionada",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Acciones rápidas"
+ "value" : "Δεν βρέθηκαν συνομιλίες με την επιλεγμένη ετικέτα"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Snelle acties"
+ "value" : "Geen gesprekken gevonden met het geselecteerde label"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Γρήγορες Ενέργειες"
+ "value" : "Inga konversationer hittades med den valda taggen",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Actions rapides"
+ "value" : "No conversations found with the selected tag",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Snabba åtgärder"
+ "value" : "選択したタグの会話は見つかりませんでした"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Quick Actions"
+ "value" : "Nessuna conversazione trovata con il tag selezionato"
}
}
}
},
- "Description (optional)" : {
+ "Privacy Policy" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Descrizione (opzionale)"
+ "value" : "Politique de confidentialité",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beschreibung (optional)"
+ "value" : "Política de Privacidade"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "説明(任意)"
+ "value" : "Datenschutzerklärung",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Descrição (opcional)"
+ "value" : "プライバシーポリシー"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Descripción (opcional)"
+ "value" : "Privacybeleid"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beschrijving (optioneel)"
+ "value" : "Πολιτική Απορρήτου"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Περιγραφή (προαιρετικό)"
+ "value" : "Privacy Policy",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Description (optionnel)"
+ "value" : "Política de privacidad"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beskrivning (valfritt)"
+ "value" : "Informativa sulla privacy"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Description (optional)"
+ "value" : "Integritetspolicy"
}
}
}
},
- "Describe the issue in detail..." : {
+ "Data Analyst" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Descrivi il problema in dettaglio..."
+ "value" : "Analyste de données",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beschreiben Sie das Problem ausführlich..."
+ "value" : "Datenanalyst",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "問題を詳しく説明してください..."
+ "value" : "Data-analist"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Descreva o problema em detalhe..."
+ "value" : "Αναλυτής Δεδομένων"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Describe el problema en detalle..."
+ "value" : "Data Analyst",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beschrijf het probleem in detail..."
+ "value" : "Analista de Dados",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Décrivez le problème en détail..."
+ "value" : "Analista Dati",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Περιγράψτε το πρόβλημα με λεπτομέρεια..."
+ "value" : "データアナリスト",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beskriv problemet i detalj..."
+ "value" : "Dataanalytiker",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Describe the issue in detail..."
+ "value" : "Analista de datos"
}
}
- }
+ },
+ "comment" : "Description of a prompt template for a data analyst assistant."
},
- "Suggest Features" : {
+ "Always Allow %@?" : {
+ "comment" : "A confirmation prompt asking the user whether to allow a tool to continue executing without user intervention. The argument is the name of the tool.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suggerisci funzionalità"
+ "value" : "Always Allow %@?",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Funktionen vorschlagen"
+ "value" : "%@ immer erlauben?"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "機能提案"
+ "value" : "Να επιτρέπεται πάντα στο %@;"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sugerir Funcionalidades"
+ "value" : "Tillåt alltid %@?",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sugerir funciones"
+ "value" : "Permitir sempre %@?",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Functies voorstellen"
+ "value" : "%@ altijd toestaan?",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suggérer des fonctionnalités"
+ "value" : "Consentire sempre a %@?",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Προτείνετε λειτουργίες"
+ "value" : "%@を常に許可しますか?",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Föreslå funktioner"
+ "value" : "Toujours autoriser %@ ?"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggest Features"
+ "value" : "¿Permitir siempre %@?"
}
}
}
},
- "Set instructions for the assistant's behavior in this conversation." : {
+ "iCloud files could not be accessed for: %@." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Imposta le istruzioni per il comportamento dell'assistente in questa conversazione."
+ "value" : "Δεν ήταν δυνατή η πρόσβαση στα αρχεία iCloud για: %@."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Anweisungen für das Verhalten des Assistenten in diesem Gespräch festlegen."
+ "value" : "iCloud-bestanden konden niet worden geopend voor: %@.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "この会話におけるアシスタントの動作指示を設定してください。"
+ "value" : "iCloud files could not be accessed for: %@.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Defina as instruções para o comportamento do assistente nesta conversa."
+ "value" : "Impossibile accedere ai file iCloud per: %@."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Establecer instrucciones para el comportamiento del asistente en esta conversación."
+ "value" : "Impossible d’accéder aux fichiers iCloud pour : %@."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Stel instructies in voor het gedrag van de assistent in dit gesprek."
+ "value" : "No se pudo acceder a los archivos de iCloud para: %@.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ορίστε οδηγίες για τη συμπεριφορά του βοηθού σε αυτή τη συνομιλία."
+ "value" : "Não foi possível aceder aos ficheiros do iCloud para: %@.",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Définir les instructions pour le comportement de l’assistant dans cette conversation."
+ "value" : "Det gick inte att komma åt iCloud-filer för: %@."
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ange instruktioner för assistentens beteende i denna konversation."
+ "value" : "次の iCloud ファイルにアクセスできませんでした:%@。"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Set instructions for the assistant's behavior in this conversation."
+ "value" : "Auf iCloud-Dateien konnte nicht zugegriffen werden für: %@."
}
}
}
},
- "Coding Assistant" : {
- "comment" : "Name of the prompt template for coding-related tasks.",
+ "Synchronized data deleted" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Assistente di Codifica"
+ "value" : "Τα συγχρονισμένα δεδομένα διαγράφηκαν"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Coding-Assistent"
+ "value" : "同期済みデータを削除しました",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "コーディングアシスタント"
+ "value" : "Synchronisierte Daten gelöscht"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Assistente de Programação"
+ "value" : "Dados sincronizados eliminados"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Asistente de codificación"
+ "value" : "Datos sincronizados eliminados"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Programmeerassistent"
+ "value" : "Données synchronisées supprimées"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Βοηθός Κωδικοποίησης"
+ "value" : "Synkroniserade data har raderats"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Assistant de codage"
+ "value" : "Dati sincronizzati eliminati"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kodassistent"
+ "value" : "Synchronized data deleted",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Coding Assistant"
+ "value" : "Gesynchroniseerde gegevens verwijderd"
}
}
}
},
- "%lld compacted · %lld excluded" : {
- "comment" : "A description of the number of messages that were compacted or excluded from the context. The first argument is the number of compacted messages. The second argument is the number of excluded messages.",
+ "Edit Message" : {
+ "comment" : "A label for the view that appears when editing a message.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld compattati · %2$lld esclusi"
+ "value" : "Modifier le message"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld komprimiert · %2$lld ausgeschlossen"
+ "value" : "Nachricht bearbeiten"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld 件を圧縮 · %2$lld 件を除外"
+ "value" : "Bericht bewerken"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld compactados · %2$lld excluídos"
+ "value" : "Επεξεργασία μηνύματος"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld compactados · %2$lld excluidos"
+ "value" : "Editar Mensagem"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld gecomprimeerd · %2$lld uitgesloten"
+ "value" : "Edit Message",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld compactés · %2$lld exclus"
+ "value" : "Modifica messaggio"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld συμπιεσμένα · %2$lld εξαιρέθηκαν"
+ "value" : "メッセージを編集",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld komprimerade · %2$lld uteslutna"
+ "value" : "Redigera meddelande",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "new",
- "value" : "%1$lld compacted · %2$lld excluded"
+ "value" : "Editar mensaje",
+ "state" : "translated"
}
}
}
},
- "%lld tokens" : {
- "shouldTranslate" : false,
+ "Custom..." : {
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld tokens"
- }
- }
- }
- },
- "The server returned an invalid response." : {
- "localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Il server ha restituito una risposta non valida."
+ "value" : "Custom..."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Der Server hat eine ungültige Antwort zurückgegeben."
+ "value" : "Anpassad..."
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "サーバーが無効な応答を返しました。"
+ "value" : "Personalizzato...",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O servidor devolveu uma resposta inválida."
+ "value" : "Personalizado..."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El servidor devolvió una respuesta no válida."
+ "value" : "Personnalisé...",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De server gaf een ongeldige reactie terug."
+ "value" : "カスタム..."
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ο διακομιστής επέστρεψε μη έγκυρη απάντηση."
+ "value" : "Aangepast..."
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le serveur a renvoyé une réponse invalide."
+ "value" : "Personalizado..."
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Servern returnerade ett ogiltigt svar."
+ "value" : "Benutzerdefiniert..."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The server returned an invalid response."
+ "value" : "Προσαρμοσμένο...",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A button that opens a sheet for entering a custom voice ID."
},
- "Enter your LiteLLM proxy URL, the gateway to any AI model." : {
- "comment" : "A description of the purpose of the server URL field.",
+ "Model Parameters" : {
+ "comment" : "A title for a view that allows the user to configure the parameters of a chat model.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inserisci l’URL del proxy LiteLLM, il gateway per qualsiasi modello AI."
+ "value" : "Model Parameters"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geben Sie Ihre LiteLLM-Proxy-URL ein, das Tor zu jedem KI-Modell."
+ "value" : "Modelparameters",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "LiteLLMプロキシURLを入力してください。これはあらゆるAIモデルへのゲートウェイです。"
+ "value" : "Parametri del modello"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Introduza a URL do seu proxy LiteLLM, a porta de entrada para qualquer modelo de IA."
+ "value" : "Modellparametrar"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Introduce la URL de tu proxy LiteLLM, la puerta de acceso a cualquier modelo de IA."
+ "value" : "Παράμετροι Μοντέλου"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voer uw LiteLLM-proxy-URL in, de toegangspoort tot elk AI-model."
+ "value" : "Parámetros del modelo",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εισαγάγετε το URL διακομιστή μεσολάβησης LiteLLM, την πύλη σε οποιοδήποτε μοντέλο AI."
+ "value" : "Parâmetros do Modelo"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Entrez l’URL de votre proxy LiteLLM, la passerelle vers n’importe quel modèle d’IA."
+ "value" : "モデルパラメータ"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ange din LiteLLM-proxy-URL, porten till vilken AI-modell som helst."
+ "value" : "Paramètres du modèle"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enter your LiteLLM proxy URL, the gateway to any AI model."
+ "value" : "Modellparameter"
}
}
}
},
- "Unpin" : {
- "comment" : "A label for un-pinning a conversation.",
+ "Saved to memory: %@" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sblocca dalla barra"
+ "value" : "In den Speicher gespeichert: %@"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anheften aufheben"
+ "value" : "Saved to memory: %@"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ピン留め解除"
+ "value" : "Salvato nella memoria: %@",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Desafixar"
+ "value" : "Opgeslagen in geheugen: %@",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Desfijar"
+ "value" : "Αποθηκεύτηκε στη μνήμη: %@"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Losmaken"
+ "value" : "Enregistré en mémoire : %@"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αποκόλληση"
+ "value" : "メモリに保存されました: %@"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Détacher"
+ "value" : "Guardado na memória: %@"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ta bort fästning"
+ "value" : "Sparat i minnet: %@",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Unpin"
+ "value" : "Guardado en la memoria: %@"
}
}
- }
+ },
+ "comment" : "A message that is displayed when a piece of information is successfully saved to the user's memory. The argument is the content that was saved."
},
- "Backup Error" : {
+ "Automate OpenClient with the Shortcuts app using the URL scheme actions above." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Errore di backup"
+ "value" : "Automatiseer OpenClient met de Opdrachten-app via de bovenstaande URL-scheme-acties.",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sicherungsfehler"
+ "value" : "Automatiza OpenClient con la app Atajos usando las acciones del esquema de URL mencionadas arriba."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "バックアップエラー"
+ "value" : "Αυτοματοποιήστε το OpenClient με την εφαρμογή Συντομεύσεις χρησιμοποιώντας τις παραπάνω ενέργειες σχήματος URL.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Erro de Cópia de Segurança"
+ "value" : "上記のURLスキームアクションを使って、ショートカットアプリでOpenClientを自動化します。"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Error de copia de seguridad"
+ "value" : "Automatisieren Sie OpenClient mit der Kurzbefehle-App unter Verwendung der oben genannten URL-Schema-Aktionen.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Back-upfout"
+ "value" : "Automatizza OpenClient con l’app Comandi usando le azioni dello schema URL sopra."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Σφάλμα αντιγράφου ασφαλείας"
+ "value" : "Automate OpenClient with the Shortcuts app using the URL scheme actions above.",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Erreur de sauvegarde"
+ "value" : "Automatisera OpenClient med appen Genvägar med hjälp av URL-schemakommandona ovan.",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Säkerhetskopieringsfel"
+ "value" : "Automatize o OpenClient com a app Atalhos usando as ações do esquema URL acima."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Backup Error"
+ "value" : "Automatisez OpenClient avec l’app Raccourcis en utilisant les actions du schéma d’URL ci-dessus."
}
}
- }
+ },
+ "comment" : "A description of how to use the Shortcuts app to open OpenClient."
},
- "The latest turn exceeds the available context" : {
+ "Chats" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "L'ultimo turno supera il contesto disponibile"
- }
- },
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Der letzte Zug überschreitet den verfügbaren Kontext"
+ "value" : "Chats",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "最新のターンが利用可能なコンテキストを超えています"
+ "value" : "Discussions",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A última jogada excede o contexto disponível"
+ "value" : "Chats"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El último turno supera el contexto disponible"
+ "value" : "Chats"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De laatste beurt overschrijdt de beschikbare context"
+ "value" : "Chat",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le dernier tour dépasse le contexte disponible"
+ "value" : "チャット",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η τελευταία κίνηση υπερβαίνει το διαθέσιμο πλαίσιο"
+ "value" : "Conversas",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Det senaste draget överskrider det tillgängliga sammanhanget"
+ "value" : "Chattar"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The latest turn exceeds the available context"
+ "value" : "Chats"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Συζητήσεις"
}
}
}
},
- "This file is not an OpenClient backup." : {
+ "No conversations for this tag" : {
+ "comment" : "A message displayed when a tag has no conversations.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "value" : "Questo file non è un backup di OpenClient.",
+ "value" : "No conversations for this tag",
"state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Diese Datei ist keine OpenClient-Sicherung."
+ "value" : "Inga konversationer för denna tagg"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "value" : "このファイルはOpenClientのバックアップではありません。",
+ "value" : "Aucune conversation pour cette étiquette",
"state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "value" : "Este ficheiro não é uma cópia de segurança OpenClient.",
+ "value" : "このタグの会話はありません",
"state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "value" : "Este archivo no es una copia de seguridad de OpenClient.",
+ "value" : "Sem conversas para esta etiqueta",
"state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "value" : "Dit bestand is geen OpenClient-back-up.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "No hay conversaciones para esta etiqueta"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "value" : "Αυτό το αρχείο δεν είναι αντίγραφο ασφαλείας OpenClient.",
+ "value" : "Nessuna conversazione per questo tag",
"state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ce fichier n’est pas une sauvegarde OpenClient."
+ "value" : "Geen gesprekken voor deze tag"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "value" : "Den här filen är inte en OpenClient-säkerhetskopia.",
+ "value" : "Δεν υπάρχουν συνομιλίες για αυτή την ετικέτα",
"state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "This file is not an OpenClient backup."
+ "value" : "Keine Unterhaltungen für dieses Schlagwort",
+ "state" : "translated"
}
}
}
},
- "Dismiss banner" : {
- "comment" : "A label for dismissing a banner.",
+ "Ultraviolet" : {
+ "comment" : "Icon name for the ultraviolet theme.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chiudi il banner"
+ "value" : "Ultraviolett",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Banner schließen"
+ "value" : "Ultraviolet",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "バナーを閉じる"
+ "value" : "Ultravioleta",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fechar faixa de aviso"
+ "value" : "Ultraviolet",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Descartar banner"
+ "value" : "Ultravioletto",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Banner sluiten"
+ "value" : "紫外線"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fermer la bannière"
+ "value" : "Ultraviolett",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Απόρριψη banner"
+ "value" : "Ultravioleta"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Stäng bannern"
+ "value" : "Ultraviolet"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dismiss banner"
+ "value" : "Υπεριώδες",
+ "state" : "translated"
}
}
}
},
- "Quantum entanglement is a phenomenon where..." : {
- "comment" : "Text of a message preview in a conversation.",
+ "Always Allow" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "L’entanglement quantistico è un fenomeno in cui..."
+ "value" : "Altijd toestaan",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Quantenverschränkung ist ein Phänomen, bei dem..."
+ "value" : "Tillåt alltid"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "量子もつれは、...という現象です"
+ "value" : "Να επιτρέπεται πάντα",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O entrelaçamento quântico é um fenómeno onde..."
+ "value" : "Permitir siempre"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El entrelazamiento cuántico es un fenómeno donde..."
+ "value" : "常に許可",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Quantumverstrengeling is een fenomeen waarbij..."
+ "value" : "Immer erlauben",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L’intrication quantique est un phénomène où..."
+ "value" : "Toujours autoriser"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η κβαντική εμπλοκή είναι ένα φαινόμενο όπου..."
+ "value" : "Consenti sempre",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kvantintrassling är ett fenomen där..."
+ "value" : "Always Allow"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Quantum entanglement is a phenomenon where..."
+ "value" : "Permitir sempre"
}
}
- }
+ },
+ "comment" : "Title of a permission option that allows the model to always request this external tool."
},
- "Share" : {
+ "Attach Image" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Condividi"
+ "value" : "Anexar imagem"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Teilen"
+ "value" : "画像を添付"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "共有"
+ "value" : "Afbeelding toevoegen"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Partilhar"
+ "value" : "Bild anhängen",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Compartir"
+ "value" : "Επισύναψη εικόνας",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Delen"
+ "value" : "Bifoga bild"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κοινή χρήση"
+ "value" : "Attach Image"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Partager"
+ "value" : "Allega immagine",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dela"
+ "value" : "Adjuntar imagen"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Share"
+ "value" : "Joindre une image"
}
}
}
},
- "New Chat" : {
+ "Waiting for iCloud downloads for: %@." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nuova chat"
+ "value" : "Waiting for iCloud downloads for: %@.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neuer Chat"
+ "value" : "Väntar på iCloud-nedladdningar för: %@."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "新しいチャット"
+ "value" : "En attente des téléchargements iCloud pour : %@.",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nova Conversa"
+ "value" : "A aguardar pelas transferências do iCloud para: %@.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nuevo chat"
+ "value" : "%@ の iCloud ダウンロードを待機中。",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nieuw gesprek"
+ "value" : "Esperando las descargas de iCloud para: %@.",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Νέα Συνομιλία"
+ "value" : "Wachten op iCloud-downloads voor: %@."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nouveau chat"
+ "value" : "In attesa dei download di iCloud per: %@.",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ny chatt"
+ "value" : "Αναμονή για λήψεις από το iCloud για: %@.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "New Chat"
+ "value" : "Warten auf iCloud-Downloads für: %@.",
+ "state" : "translated"
}
}
}
},
- "No conversations for this tag" : {
- "comment" : "A message displayed when a tag has no conversations.",
+ "tag.tools" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessuna conversazione per questo tag"
+ "value" : "Tools"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keine Unterhaltungen für dieses Schlagwort"
+ "value" : "Tools",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "このタグの会話はありません"
+ "value" : "Tools",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sem conversas para esta etiqueta"
+ "value" : "Tools",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No hay conversaciones para esta etiqueta"
+ "value" : "Tools",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geen gesprekken voor deze tag"
+ "value" : "Tools"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν υπάρχουν συνομιλίες για αυτή την ετικέτα"
+ "value" : "Tools"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucune conversation pour cette étiquette"
+ "value" : "Tools",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inga konversationer för denna tagg"
+ "value" : "Tools",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No conversations for this tag"
- }
- }
- }
- },
- "%lld\/%lld" : {
- "shouldTranslate" : false,
- "comment" : "A label showing the current character count and the maximum allowed.",
- "localizations" : {
- "en" : {
- "stringUnit" : {
- "state" : "new",
- "value" : "%1$lld\/%2$lld"
+ "value" : "Tools"
}
}
- }
+ },
+ "comment" : "Label for a capability that allows calling functions in other tools."
},
- "The model returned an empty response. Please try again." : {
- "comment" : "Error message displayed when the assistant returns an empty response.",
+ "This is separate from Reset App Data, which only resets local app data." : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Il modello ha restituito una risposta vuota. Riprova."
+ "value" : "Esto es independiente de Restablecer datos de la app, que solo restablece los datos locales de la app.",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Das Modell hat eine leere Antwort zurückgegeben. Bitte versuchen Sie es erneut."
+ "value" : "Isto é separado de Repor os dados da aplicação, que apenas repõe os dados locais da aplicação.",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "モデルが空の応答を返しました。もう一度お試しください。"
+ "value" : "Cette option est distincte de Réinitialiser les données de l’app, qui réinitialise uniquement les données locales de l’app.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O modelo devolveu uma resposta vazia. Por favor, tente novamente."
+ "value" : "This is separate from Reset App Data, which only resets local app data.",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El modelo devolvió una respuesta vacía. Por favor, inténtalo de nuevo."
+ "value" : "Αυτό είναι ξεχωριστό από την Επαναφορά δεδομένων εφαρμογής, η οποία επαναφέρει μόνο τα τοπικά δεδομένα της εφαρμογής.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Het model gaf een lege reactie terug. Probeer het opnieuw."
+ "value" : "Dies ist unabhängig von „App-Daten zurücksetzen“, wodurch nur die lokalen App-Daten zurückgesetzt werden.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το μοντέλο επέστρεψε κενή απάντηση. Παρακαλώ δοκιμάστε ξανά."
+ "value" : "これは、アプリのローカルデータのみをリセットする「アプリデータをリセット」とは別の機能です。"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le modèle a renvoyé une réponse vide. Veuillez réessayer."
+ "value" : "Dit staat los van ‘Appgegevens opnieuw instellen’, waarmee alleen lokale appgegevens worden gereset.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modellen gav inget svar. Försök igen."
+ "value" : "Detta är separat från Återställ appdata, som endast återställer lokala appdata.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The model returned an empty response. Please try again."
+ "value" : "Questo è separato da «Reimposta dati dell’app», che reimposta solo i dati locali dell’app.",
+ "state" : "translated"
}
}
}
},
- "Your support keeps development and updates going!" : {
- "comment" : "A description of the benefits of supporting OpenClient.",
+ "Image generation requires a text prompt without attachments." : {
+ "comment" : "Error message displayed when trying to generate an image without providing a text prompt.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il tuo supporto permette di continuare lo sviluppo e gli aggiornamenti!"
+ "value" : "Image generation requires a text prompt without attachments."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deine Unterstützung ermöglicht die weitere Entwicklung und Updates!"
+ "value" : "La génération d’images nécessite une invite textuelle sans pièces jointes.",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "皆さまのご支援が、開発とアップデートの継続につながります!"
+ "value" : "Voor het genereren van een afbeelding is een tekstprompt zonder bijlagen vereist.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O seu apoio permite dar continuidade ao desenvolvimento e às atualizações!"
+ "value" : "La generazione dell'immagine richiede un prompt testuale senza allegati."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "¡Tu apoyo permite continuar con el desarrollo y las actualizaciones!"
+ "value" : "Η δημιουργία εικόνας απαιτεί μια περιγραφή κειμένου χωρίς συνημμένα."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Jouw steun houdt de ontwikkeling en updates gaande!"
+ "value" : "La generación de imágenes requiere un texto descriptivo sin archivos adjuntos."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Votre soutien permet de poursuivre le développement et les mises à jour !"
+ "value" : "画像を生成するには、添付ファイルなしでテキストプロンプトを入力してください。"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η υποστήριξή σας βοηθά να συνεχίζονται η ανάπτυξη και οι ενημερώσεις!"
+ "value" : "A geração de imagens requer um prompt de texto sem anexos."
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ditt stöd håller utvecklingen och uppdateringarna igång!"
+ "value" : "Für die Bildgenerierung ist eine Texteingabe ohne Anhänge erforderlich."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Your support keeps development and updates going!"
+ "value" : "Bildgenerering kräver en textprompt utan bilagor.",
+ "state" : "translated"
}
}
}
},
- "Get Started" : {
+ "The cloud deletion is waiting for required downloads." : {
+ "comment" : "Error description for when the cloud deletion is waiting for required downloads.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inizia"
+ "value" : "Η διαγραφή από το cloud αναμένει τις απαιτούμενες λήψεις.",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Loslegen"
+ "value" : "The cloud deletion is waiting for required downloads."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "はじめる"
+ "value" : "La eliminación en la nube está esperando que se completen las descargas necesarias.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Começar"
+ "value" : "クラウドの削除は必要なダウンロードの完了待ちです",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Comenzar"
+ "value" : "A eliminação da nuvem está a aguardar as transferências necessárias."
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aan de slag"
+ "value" : "L’eliminazione dal cloud è in attesa dei download richiesti."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ξεκινήστε"
+ "value" : "La suppression du cloud est en attente des téléchargements requis.",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Commencer"
+ "value" : "De verwijdering uit de cloud wacht op vereiste downloads."
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kom igång"
+ "value" : "Molnraderingen väntar på nödvändiga nedladdningar.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Get Started"
+ "value" : "Das Löschen aus der Cloud wartet auf erforderliche Downloads."
}
}
}
},
"Open the app from Shortcuts, other apps, or a browser using `openclient:\/\/`." : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Apri l’app da Comandi, altre app o un browser usando `openclient:\/\/`."
- }
- },
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Öffnen Sie die App über Kurzbefehle, andere Apps oder einen Browser mit `openclient:\/\/`."
+ "value" : "Open de app via Opdrachten, andere apps of een browser met `openclient:\/\/`."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ショートカット、他のアプリ、またはブラウザから `openclient:\/\/` を使ってアプリを開く"
+ "value" : "Open the app from Shortcuts, other apps, or a browser using `openclient:\/\/`.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abra a app a partir de Atalhos, outras apps ou um navegador usando `openclient:\/\/`."
+ "value" : "Άνοιξε την εφαρμογή από Συντομεύσεις, άλλες εφαρμογές ή πρόγραμμα περιήγησης χρησιμοποιώντας `openclient:\/\/`."
}
},
"es" : {
@@ -26202,5606 +26164,5608 @@
"value" : "Abre la app desde Atajos, otras apps o un navegador usando `openclient:\/\/`."
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Open de app via Opdrachten, andere apps of een browser met `openclient:\/\/`."
+ "value" : "Öppna appen från Genvägar, andra appar eller en webbläsare med `openclient:\/\/`."
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Άνοιξε την εφαρμογή από Συντομεύσεις, άλλες εφαρμογές ή πρόγραμμα περιήγησης χρησιμοποιώντας `openclient:\/\/`."
+ "value" : "Öffnen Sie die App über Kurzbefehle, andere Apps oder einen Browser mit `openclient:\/\/`."
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ouvrez l’application depuis Raccourcis, d’autres applications ou un navigateur en utilisant `openclient:\/\/`."
+ "value" : "Ouvrez l’application depuis Raccourcis, d’autres applications ou un navigateur en utilisant `openclient:\/\/`.",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
+ "stringUnit" : {
+ "value" : "Apri l’app da Comandi, altre app o un browser usando `openclient:\/\/`.",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Öppna appen från Genvägar, andra appar eller en webbläsare med `openclient:\/\/`."
+ "value" : "Abra a app a partir de Atalhos, outras apps ou um navegador usando `openclient:\/\/`."
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Open the app from Shortcuts, other apps, or a browser using `openclient:\/\/`."
+ "value" : "ショートカット、他のアプリ、またはブラウザから `openclient:\/\/` を使ってアプリを開く"
}
}
}
},
- "This information is added to every conversation so models can personalise their responses." : {
- "comment" : "A description of the information that is added to every conversation.",
+ "Message..." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Queste informazioni vengono aggiunte a ogni conversazione affinché i modelli possano personalizzare le loro risposte."
+ "value" : "Mensagem..."
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Diese Informationen werden jeder Unterhaltung hinzugefügt, damit Modelle ihre Antworten personalisieren können."
+ "value" : "メッセージ..."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "この情報は、モデルが応答をパーソナライズできるように、すべての会話に追加されます。"
+ "value" : "Bericht..."
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esta informação é adicionada a cada conversa para que os modelos possam personalizar as suas respostas."
+ "value" : "Nachricht..."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esta información se añade a cada conversación para que los modelos puedan personalizar sus respuestas."
+ "value" : "Μήνυμα..."
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deze informatie wordt aan elk gesprek toegevoegd zodat modellen hun antwoorden kunnen personaliseren."
+ "value" : "Meddelande...",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αυτές οι πληροφορίες προστίθενται σε κάθε συνομιλία ώστε τα μοντέλα να προσωποποιούν τις απαντήσεις τους."
+ "value" : "Message..."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ces informations sont ajoutées à chaque conversation pour que les modèles puissent personnaliser leurs réponses."
+ "value" : "Messaggio...",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Denna information läggs till i varje konversation så att modeller kan anpassa sina svar."
+ "value" : "Mensaje...",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "This information is added to every conversation so models can personalize their responses."
+ "value" : "Message...",
+ "state" : "translated"
}
}
}
},
- "MCP tool settings changed. Affected allow decisions were cleared. Deny those calls or close this review." : {
- "comment" : "Error message displayed when the MCP tool settings have changed.",
+ "Edit Memory" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le impostazioni dello strumento MCP sono cambiate. Le decisioni di autorizzazione interessate sono state cancellate. Nega queste chiamate o chiudi questa revisione."
+ "value" : "Επεξεργασία Μνήμης"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die MCP-Tool-Einstellungen wurden geändert. Betroffene Zulassungsentscheidungen wurden gelöscht. Lehnen Sie diese Aufrufe ab oder schließen Sie diese Überprüfung."
+ "value" : "Modifica memoria",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCPツールの設定が変更されました。影響を受ける許可の判断はクリアされました。これらの呼び出しを拒否するか、このレビューを閉じてください。"
+ "value" : "Editar memoria",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "As definições da ferramenta MCP foram alteradas. As decisões de permissão afetadas foram eliminadas. Negue essas chamadas ou feche esta revisão."
+ "value" : "Geheugen bewerken",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La configuración de la herramienta MCP ha cambiado. Se borraron las decisiones de autorización afectadas. Deniega esas llamadas o cierra esta revisión."
+ "value" : "メモリを編集",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De MCP-toolinstellingen zijn gewijzigd. De betreffende toestemmingsbeslissingen zijn gewist. Weiger die aanroepen of sluit deze beoordeling."
+ "value" : "Erinnerung bearbeiten",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les réglages de l’outil MCP ont changé. Les décisions d’autorisation concernées ont été effacées. Refusez ces appels ou fermez cet examen."
+ "value" : "Modifier la mémoire"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Οι ρυθμίσεις του εργαλείου MCP άλλαξαν. Οι επηρεαζόμενες αποφάσεις έγκρισης διαγράφηκαν. Απορρίψτε αυτές τις κλήσεις ή κλείστε αυτήν την αξιολόγηση."
+ "value" : "Editar Memória",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-verktygsinställningarna har ändrats. Berörda tillåtelsebeslut har rensats. Neka dessa anrop eller stäng den här granskningen."
+ "value" : "Edit Memory"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP tool settings changed. Affected allow decisions were cleared. Deny those calls or close this review."
+ "value" : "Redigera minne",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A title for a view that edits a memory item."
},
- "Continue Chat" : {
- "comment" : "Widget title.",
+ "There is no synchronized app data in iCloud." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Continua chat"
+ "value" : "Δεν υπάρχουν συγχρονισμένα δεδομένα εφαρμογών στο iCloud."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chat fortsetzen"
+ "value" : "Er zijn geen gesynchroniseerde appgegevens in iCloud.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "チャットを続ける"
+ "value" : "There is no synchronized app data in iCloud."
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Continuar Conversa"
+ "value" : "Non ci sono dati dell’app sincronizzati su iCloud.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Continuar chat"
+ "value" : "Aucune donnée d’app synchronisée dans iCloud.",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chat voortzetten"
+ "value" : "Não existem dados da aplicação sincronizados no iCloud.",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Continuer la discussion"
+ "value" : "No hay datos de la app sincronizados en iCloud."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Συνέχεια συνομιλίας"
+ "value" : "Det finns inga synkroniserade appdata i iCloud.",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fortsätt chatt"
+ "value" : "iCloudに同期されたアプリデータはありません。"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Continue Chat"
+ "value" : "Es sind keine synchronisierten App-Daten in iCloud vorhanden."
}
}
}
},
- "Custom Template" : {
+ "Support type" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modello personalizzato"
+ "value" : "Τύπος υποστήριξης",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Benutzerdefinierte Vorlage"
+ "value" : "サポートの種類",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "カスタムテンプレート"
+ "value" : "Supporttyp"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modelo personalizado"
+ "value" : "Tipo de suporte",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Plantilla personalizada"
+ "value" : "Tipo de soporte"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aangepaste sjabloon"
+ "value" : "Type d’assistance"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσαρμοσμένο πρότυπο"
+ "value" : "Typ av support"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modèle personnalisé"
+ "value" : "Tipo di supporto"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anpassad mall"
+ "value" : "Type ondersteuning"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Custom Template"
+ "value" : "Support type",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label that describes the type of support being selected."
},
- "Retry Deletion" : {
+ "Notifications not authorized" : {
+ "comment" : "A label that indicates that the app has not yet been authorized to send notifications.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Riprova eliminazione"
+ "value" : "Meldingen niet toegestaan"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Löschen erneut versuchen"
+ "value" : "Aviseringar inte godkända",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "削除を再試行"
+ "value" : "Notifications non autorisées",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tentar eliminar novamente"
+ "value" : "Notificaciones no autorizadas",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reintentar eliminación"
+ "value" : "Οι ειδοποιήσεις δεν έχουν εξουσιοδοτηθεί"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verwijdering opnieuw proberen"
+ "value" : "Benachrichtigungen nicht erlaubt",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επανάληψη διαγραφής"
+ "value" : "通知が許可されていません"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Réessayer la suppression"
+ "value" : "Notifiche non autorizzate"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Försök ta bort igen"
+ "value" : "Notifications not authorized",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Retry Deletion"
+ "value" : "Notificações não autorizadas"
}
}
}
},
- "Required iCloud data is still downloading." : {
- "comment" : "Error description when required iCloud data is still downloading.",
+ "Untitled Template" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "I dati iCloud richiesti sono ancora in fase di download."
+ "value" : "Πρότυπο χωρίς τίτλο"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Erforderliche iCloud-Daten werden noch heruntergeladen."
+ "value" : "Untitled Template",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "必要なiCloudデータをダウンロード中です"
+ "value" : "Plantilla sin título",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Os dados necessários do iCloud ainda estão a ser descarregados."
+ "value" : "無題のテンプレート"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Los datos necesarios de iCloud aún se están descargando."
+ "value" : "Modelo sem título"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vereiste iCloud-gegevens worden nog gedownload."
+ "value" : "Modello senza titolo",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Τα απαιτούμενα δεδομένα iCloud εξακολουθούν να λαμβάνονται."
+ "value" : "Modèle sans titre"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les données iCloud requises sont toujours en cours de téléchargement."
+ "value" : "Naamloze template"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nödvändiga iCloud-data laddas fortfarande ner."
+ "value" : "Namnlös mall",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Required iCloud data is still downloading."
+ "value" : "Unbenannte Vorlage",
+ "state" : "translated"
}
}
}
},
- "Models" : {
+ "The server is not reachable." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modelli"
+ "value" : "Der Server ist nicht erreichbar."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modelle"
+ "value" : "De server is niet bereikbaar.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "モデル"
+ "value" : "The server is not reachable."
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modelos"
+ "value" : "Il server non è raggiungibile.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modelos"
+ "value" : "Le serveur est inaccessible.",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modellen"
+ "value" : "O servidor não está acessível.",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μοντέλα"
+ "value" : "El servidor no es accesible."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modèles"
+ "value" : "Servern är inte nåbar."
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modeller"
+ "value" : "Ο διακομιστής δεν είναι προσβάσιμος.",
+ "state" : "translated"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Models"
+ "value" : "サーバーに接続できません。"
}
}
}
},
- "Touch and hold a message to edit, regenerate, branch, or save it as a favourite." : {
- "comment" : "A description of the action to edit, regenerate, branch, or save a message.",
+ "Cloud" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tocca e tieni premuto un messaggio per modificarlo, rigenerarlo, creare un ramo o salvarlo tra i preferiti."
+ "value" : "クラウド"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tippen und halten Sie eine Nachricht, um sie zu bearbeiten, neu zu generieren, zu verzweigen oder als Favorit zu speichern."
+ "value" : "Nuvem",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メッセージを長押しして編集、再生成、分岐、またはお気に入りに保存します。"
+ "value" : "Moln"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toque e mantenha uma mensagem para editar, regenerar, ramificar ou guardar como favorita."
+ "value" : "Νέφος"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mantén pulsado un mensaje para editarlo, regenerarlo, ramificarlo o guardarlo como favorito."
+ "value" : "Cloud",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Raak een bericht aan en houd vast om het te bewerken, opnieuw te genereren, vertakken of als favoriet op te slaan."
+ "value" : "Cloud"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πατήστε παρατεταμένα ένα μήνυμα για να το επεξεργαστείτε, αναγεννήσετε, διακλαδώσετε ή αποθηκεύσετε στα αγαπημένα."
+ "value" : "Cloud"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Touchez et maintenez un message pour le modifier, régénérer, créer une branche ou l’enregistrer en favori."
+ "value" : "Cloud",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tryck och håll på ett meddelande för att redigera, generera om, förgrena eller spara det som favorit."
+ "value" : "Cloud",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Touch and hold a message to edit, regenerate, branch, or save it as a favorite."
+ "value" : "Cloud",
+ "state" : "translated"
}
}
}
},
- "Completed" : {
+ "%@%@" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Completato"
+ "value" : "%1$@%2$@"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abgeschlossen"
+ "value" : "%1$@%2$@",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "完了"
+ "value" : "%1$@%2$@"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Concluído"
+ "state" : "new",
+ "value" : "%1$@%2$@"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Completado"
+ "value" : "%1$@%2$@",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voltooid"
+ "value" : "%1$@%2$@"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ολοκληρώθηκε"
+ "value" : "%1$@%2$@"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Terminé"
+ "value" : "%1$@%2$@",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Slutförd"
+ "value" : "%1$@%2$@"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Completed"
+ "value" : "%1$@%2$@",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A view that displays a message with a cursor that blinks."
},
- "Buy Me a Coffee" : {
- "comment" : "A button that opens a payment interface to support the app's development.",
+ "Show Less" : {
+ "comment" : "A label that shows a chevron up icon.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Offrimi un caffè"
+ "value" : "Show Less",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kauf mir einen Kaffee"
+ "value" : "Εμφάνιση λιγότερων"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "コーヒーをおごる"
+ "value" : "Weniger anzeigen",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Oferecer um Café"
+ "value" : "Visa mindre",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Invítame a un café"
+ "value" : "Mostrar menos"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Trakteer me op een koffie"
+ "value" : "Minder weergeven"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Κάνε μου μια δωρεά καφέ"
+ "value" : "Mostra meno",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Offrez-moi un café"
+ "value" : "表示を減らす",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bjud mig på en kaffe"
+ "value" : "Afficher moins"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Buy Me a Coffee"
+ "value" : "Mostrar menos"
}
}
}
},
- "Help us fix it by describing the issue you encountered." : {
+ "Always Deny %@?" : {
+ "comment" : "A confirmation prompt asking the user to deny a tool's access to a server. The argument is the name of the tool.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aiutaci a risolverlo descrivendo il problema riscontrato."
+ "value" : "%@ altijd weigeren?"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hilf uns, das Problem zu beheben, indem du das aufgetretene Problem beschreibst."
+ "value" : "Zugriff auf %@ immer verweigern?"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "発生した問題について説明して、修正にご協力ください。"
+ "value" : "Να αρνείστε πάντα την πρόσβαση στο %@;",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ajude-nos a corrigir descrevendo o problema que encontrou."
+ "value" : "¿Denegar siempre el acceso de %@?",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ayúdanos a solucionarlo describiendo el problema que encontraste."
+ "value" : "Neka alltid %@?"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Help ons het op te lossen door het probleem dat je bent tegengekomen te beschrijven."
+ "value" : "Always Deny %@?",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aidez-nous à le corriger en décrivant le problème rencontré."
+ "value" : "Toujours refuser l’accès de %@ ?"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Βοηθήστε μας να το διορθώσουμε περιγράφοντας το πρόβλημα που αντιμετωπίσατε."
+ "value" : "Negare sempre l’accesso a %@?"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hjälp oss att åtgärda det genom att beskriva problemet du stötte på."
+ "value" : "Negar sempre o acesso de %@?"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Help us fix it by describing the issue you encountered."
+ "value" : "常に%@を拒否しますか?",
+ "state" : "translated"
}
}
}
},
- "The backup file is invalid." : {
+ "iCloud account unavailable" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il file di backup non è valido."
+ "value" : "iCloudアカウントを利用できません"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Sicherungsdatei ist ungültig."
+ "value" : "iCloud-Account nicht verfügbar"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "バックアップファイルが無効です。"
+ "value" : "iCloud-account niet beschikbaar"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O ficheiro de backup é inválido."
+ "value" : "iCloud-kontot är inte tillgängligt"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El archivo de respaldo no es válido."
+ "value" : "Conta do iCloud indisponível"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het back-upbestand is ongeldig."
+ "value" : "Ο λογαριασμός iCloud δεν είναι διαθέσιμος"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le fichier de sauvegarde est invalide."
+ "value" : "Cuenta de iCloud no disponible",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το αρχείο αντιγράφου ασφαλείας είναι άκυρο."
+ "value" : "Account iCloud non disponibile",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Säkerhetskopieringsfilen är ogiltig."
+ "value" : "iCloud account unavailable"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The backup file is invalid."
+ "value" : "Compte iCloud indisponible"
}
}
}
},
- "Anonymous" : {
+ "GPT, Claude, Gemini, Llama and more via LiteLLM, Ollama, LM Studio..." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anonimo"
+ "value" : "GPT, Claude, Gemini, Llama med flera via LiteLLM, Ollama, LM Studio..."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anonym"
+ "value" : "GPT, Claude, Gemini, Llama en meer via LiteLLM, Ollama, LM Studio..."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "匿名"
+ "value" : "GPT, Claude, Gemini, Llama et plus encore via LiteLLM, Ollama, LM Studio...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Anónimo"
+ "value" : "GPT, Claude, Gemini, Llama y más a través de LiteLLM, Ollama, LM Studio...",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Anónimo"
+ "value" : "GPT, Claude, Gemini, Llama und mehr über LiteLLM, Ollama, LM Studio...",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Anoniem"
+ "value" : "LiteLLM、Ollama、LM Studioを通じて利用可能なGPT、Claude、Gemini、Llamaなど...",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ανώνυμος"
+ "value" : "GPT, Claude, Gemini, Llama και άλλα μέσω LiteLLM, Ollama, LM Studio..."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anonyme"
+ "value" : "GPT, Claude, Gemini, Llama e altri tramite LiteLLM, Ollama, LM Studio..."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anonym"
+ "value" : "GPT, Claude, Gemini, Llama and more via LiteLLM, Ollama, LM Studio..."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anonymous"
+ "value" : "GPT, Claude, Gemini, Llama e mais via LiteLLM, Ollama, LM Studio..."
}
}
- }
+ },
+ "comment" : "A description of the features of the app."
},
- "The app opens with a new conversation pre-filled with your content." : {
+ "All app data is synchronized" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L’app si apre con una nuova conversazione precompilata con i tuoi contenuti."
+ "value" : "すべてのアプリデータが同期されています"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die App öffnet sich mit einer neuen Unterhaltung, die mit Ihrem Inhalt vorausgefüllt ist."
+ "value" : "Alle appgegevens zijn gesynchroniseerd",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "アプリはあなたの内容が事前入力された新しい会話で開きます。"
+ "value" : "All app data is synchronized"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A app abre com uma nova conversa preenchida com o seu conteúdo."
+ "value" : "Tutti i dati dell’app sono sincronizzati"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La app se abre con una nueva conversación prellenada con tu contenido."
+ "value" : "Toutes les données de l’app sont synchronisées"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De app opent met een nieuw gesprek vooraf ingevuld met jouw inhoud."
+ "value" : "Todos os dados da aplicação estão sincronizados",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η εφαρμογή ανοίγει με μια νέα συνομιλία προγεμισμένη με το περιεχόμενό σας."
+ "value" : "Todos los datos de la app están sincronizados"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L’application s’ouvre avec une nouvelle conversation préremplie avec votre contenu."
+ "value" : "All appdata är synkroniserade"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appen öppnas med en ny konversation förifylld med ditt innehåll."
+ "value" : "Όλα τα δεδομένα της εφαρμογής έχουν συγχρονιστεί"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The app opens with a new conversation pre-filled with your content."
+ "value" : "Alle App-Daten sind synchronisiert",
+ "state" : "translated"
}
}
}
},
- "Embedding" : {
- "shouldTranslate" : false,
- "comment" : "A label for an LLM model."
- },
- "Select a model to start chatting" : {
+ "The server returned an invalid response." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Seleziona un modello per iniziare a chattare"
+ "value" : "Le serveur a renvoyé une réponse invalide.",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Wähle ein Modell, um das Gespräch zu beginnen"
+ "value" : "El servidor devolvió una respuesta no válida.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "チャットを始めるモデルを選択してください"
+ "value" : "Ο διακομιστής επέστρεψε μη έγκυρη απάντηση."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Selecione um modelo para começar a conversar"
+ "value" : "Servern returnerade ett ogiltigt svar.",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Selecciona un modelo para empezar a chatear"
+ "value" : "Il server ha restituito una risposta non valida."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Selecteer een model om te beginnen met chatten"
+ "value" : "Der Server hat eine ungültige Antwort zurückgegeben."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sélectionnez un modèle pour commencer la conversation"
+ "value" : "The server returned an invalid response.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επιλέξτε ένα μοντέλο για να ξεκινήσετε τη συνομιλία"
+ "value" : "サーバーが無効な応答を返しました。"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Välj en modell för att börja chatta"
+ "value" : "O servidor devolveu uma resposta inválida.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Select a model to start chatting"
+ "value" : "De server gaf een ongeldige reactie terug.",
+ "state" : "translated"
}
}
}
},
- "Your server is ready. Let's start a conversation." : {
- "comment" : "A description of the onboarding screen when the server is ready.",
+ "This Week" : {
+ "comment" : "Title of a conversation section for conversations from the current week.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il tuo server è pronto. Iniziamo una conversazione."
+ "value" : "This Week"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ihr Server ist bereit. Beginnen wir ein Gespräch."
+ "value" : "Diese Woche"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "サーバーの準備ができました。会話を始めましょう。"
+ "value" : "Questa settimana",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O seu servidor está pronto. Vamos começar uma conversa."
+ "value" : "Deze week"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tu servidor está listo. Comencemos una conversación."
+ "value" : "Αυτή την εβδομάδα",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je server is klaar. Laten we een gesprek beginnen."
+ "value" : "Cette semaine",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ο διακομιστής σας είναι έτοιμος. Ας ξεκινήσουμε μια συνομιλία."
+ "value" : "今週",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Votre serveur est prêt. Commençons une conversation."
+ "value" : "Den här veckan"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Din server är redo. Låt oss börja en konversation."
+ "value" : "Esta Semana",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Your server is ready. Let's start a conversation."
+ "value" : "Esta semana"
}
}
}
},
- "Sends an image or PDF to a new OpenClient conversation." : {
- "comment" : "Description of the intent that sends an image or PDF to a new OpenClient conversation.",
+ "Notifications disabled" : {
+ "comment" : "A label that indicates that notifications are disabled.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Invia un'immagine o un PDF a una nuova conversazione OpenClient."
+ "value" : "Notifications disabled",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sendet ein Bild oder PDF an eine neue OpenClient-Konversation."
+ "value" : "Meldingen uitgeschakeld",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "画像またはPDFを新しいOpenClientの会話に送信します。"
+ "value" : "Aviseringar avstängda"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Envia uma imagem ou PDF para uma nova conversa OpenClient."
+ "value" : "Notifiche disattivate",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Envía una imagen o PDF a una nueva conversación de OpenClient."
+ "value" : "Ειδοποιήσεις απενεργοποιημένες",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verzendt een afbeelding of PDF naar een nieuw OpenClient-gesprek."
+ "value" : "Notificaciones desactivadas",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Στέλνει μια εικόνα ή PDF σε μια νέα συνομιλία OpenClient."
+ "value" : "Notifications désactivées"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Envoie une image ou un PDF dans une nouvelle conversation OpenClient."
+ "value" : "Notificações desativadas"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Skickar en bild eller PDF till en ny OpenClient-konversation."
+ "value" : "通知が無効になっています"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sends an image or PDF to a new OpenClient conversation"
+ "value" : "Benachrichtigungen deaktiviert",
+ "state" : "translated"
}
}
}
},
- "Loading tools..." : {
- "comment" : "A loading message for MCP tools.",
+ "This external tool may access, create, change, or delete data and may incur costs." : {
+ "comment" : "A description of the impact of using this tool.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Caricamento strumenti..."
+ "value" : "この外部ツールはデータにアクセス、作成、変更、または削除する場合があり、費用が発生する可能性があります。",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Werkzeuge werden geladen..."
+ "value" : "This external tool may access, create, change, or delete data and may incur costs."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ツールを読み込み中..."
+ "value" : "Deze externe tool kan gegevens openen, aanmaken, wijzigen of verwijderen en kan kosten met zich meebrengen.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A carregar ferramentas..."
+ "value" : "Det här externa verktyget kan komma åt, skapa, ändra eller ta bort data och kan medföra kostnader."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cargando herramientas..."
+ "value" : "Esta ferramenta externa pode aceder, criar, alterar ou eliminar dados e pode implicar custos."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tools laden..."
+ "value" : "Αυτό το εξωτερικό εργαλείο μπορεί να αποκτήσει πρόσβαση, να δημιουργήσει, να τροποποιήσει ή να διαγράψει δεδομένα και ενδέχεται να επιφέρει χρεώσεις.",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Φόρτωση εργαλείων..."
+ "value" : "Esta herramienta externa puede acceder a datos, crearlos, modificarlos o eliminarlos, y puede generar costes."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chargement des outils..."
+ "value" : "Cet outil externe peut accéder à vos données, en créer, les modifier ou les supprimer, et peut entraîner des frais."
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Laddar verktyg..."
+ "value" : "Dieses externe Tool kann auf Daten zugreifen, Daten erstellen, ändern oder löschen und Kosten verursachen."
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Loading tools..."
+ "value" : "Questo strumento esterno potrebbe accedere, creare, modificare o eliminare dati e potrebbe comportare dei costi.",
+ "state" : "translated"
}
}
}
},
- "Here is a concise summary of the meeting." : {
- "comment" : "Last message preview text for a conversation.",
+ "Terms of Use" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ecco un riassunto conciso della riunione"
+ "value" : "Nutzungsbedingungen",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hier ist eine kurze Zusammenfassung des Treffens."
+ "value" : "Termini di utilizzo"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会議の簡潔な要約です"
+ "value" : "利用規約"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aqui está um resumo conciso da reunião."
+ "value" : "Termos de Utilização"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aquí un resumen conciso de la reunión."
+ "value" : "Términos de uso"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hier is een beknopte samenvatting van de vergadering."
+ "value" : "Όροι Χρήσης"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voici un résumé concis de la réunion"
+ "value" : "Användarvillkor",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εδώ είναι μια σύντομη περίληψη της συνάντησης."
+ "value" : "Conditions d’utilisation",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Här är en kort sammanfattning av mötet."
+ "value" : "Terms of Use"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Here is a concise summary of the meeting"
+ "value" : "Gebruiksvoorwaarden"
}
}
}
},
- "Subscriptions" : {
- "comment" : "A label for a section of the tip jar view that shows subscription options.",
+ "Purchases restored" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abbonamenti"
+ "value" : "Compras restauradas"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abonnements"
- }
- },
- "ja" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "サブスクリプション"
+ "value" : "Käufe wiederhergestellt",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Subscrições"
+ "value" : "Achats restaurés",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suscripciones"
+ "value" : "購入内容を復元しました"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abonnementen"
+ "value" : "Aankopen hersteld"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abonnements"
+ "value" : "Οι αγορές αποκαταστάθηκαν",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συνδρομές"
+ "value" : "Compras restauradas"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Prenumerationer"
+ "value" : "Köp återställda"
}
},
"en" : {
+ "stringUnit" : {
+ "value" : "Purchases restored",
+ "state" : "translated"
+ }
+ },
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Subscriptions"
+ "value" : "Acquisti ripristinati"
}
}
- }
+ },
+ "comment" : "A title for an alert that informs the user that their App Store purchases have been synchronized."
},
- "Model Info" : {
- "comment" : "A title for a screen that shows information about a specific LLM model.",
+ "Name" : {
+ "comment" : "A label displayed above the user's name.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Informazioni sul modello"
+ "value" : "名前"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modellinformationen"
+ "value" : "Nom",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "モデル情報"
+ "value" : "Naam",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Informações do Modelo"
+ "value" : "Namn"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Información del modelo"
+ "value" : "Nome"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modelinformatie"
+ "value" : "Όνομα"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πληροφορίες Μοντέλου"
+ "value" : "Nombre"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Infos sur le modèle"
+ "value" : "Name",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modellinformation"
+ "value" : "Name"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Model Info"
+ "value" : "Nome",
+ "state" : "translated"
}
}
}
},
- "Any additional context for the assistant" : {
- "comment" : "A label for a text field where the user can add additional context for the assistant.",
+ "Could not find the server. Please check the URL." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Contesto aggiuntivo per l’assistente"
+ "value" : "Serveur introuvable. Veuillez vérifier l’URL.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zusätzlicher Kontext für den Assistenten"
+ "value" : "Kan de server niet vinden. Controleer de URL."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アシスタントへの追加情報"
+ "value" : "Could not find the server. Please check the URL.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Contexto adicional para o assistente"
+ "value" : "No se pudo encontrar el servidor. Por favor, verifica la URL.",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Contexto adicional para el asistente"
+ "value" : "Δεν βρέθηκε ο διακομιστής. Ελέγξτε τη διεύθυνση URL.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aanvullende context voor de assistent"
+ "value" : "Impossibile trovare il server. Controlla l'URL."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Πρόσθετο πλαίσιο για τον βοηθό"
+ "value" : "Não foi possível encontrar o servidor. Por favor, verifique o URL.",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contexte supplémentaire pour l’assistant"
+ "value" : "Server konnte nicht gefunden werden. Bitte überprüfen Sie die URL."
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ytterligare information för assistenten"
+ "value" : "サーバーが見つかりません。URLを確認してください。",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Additional context for the assistant"
+ "value" : "Kunde inte hitta servern. Kontrollera URL:en.",
+ "state" : "translated"
}
}
}
},
- "OpenClient is under maintenance" : {
- "comment" : "A message displayed when the app is under maintenance.",
+ "Search" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient è in manutenzione"
+ "value" : "検索"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient wird gewartet"
+ "value" : "Search",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClientはメンテナンス中です"
+ "value" : "Zoeken",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O OpenClient está em manutenção"
+ "value" : "Sökning"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient está en mantenimiento"
+ "value" : "Pesquisar"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient wordt onderhouden"
+ "value" : "Αναζήτηση",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το OpenClient βρίσκεται υπό συντήρηση"
+ "value" : "Cerca"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient est en maintenance"
+ "value" : "Suche",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient genomgår underhållarbeiten"
+ "value" : "Recherche",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient is under maintenance"
+ "value" : "Buscar",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A title for a screen that searches for conversations."
},
- "Start a new conversation" : {
- "comment" : "Shortcut action to start a new chat.",
+ "A brief description about yourself" : {
+ "comment" : "A placeholder for a user's description.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inizia una nuova conversazione"
+ "value" : "Une brève description de vous-même"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neue Unterhaltung starten"
+ "value" : "Eine kurze Beschreibung von dir"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "新しい会話を始める"
+ "value" : "Een korte beschrijving over jezelf"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Iniciar nova conversa"
+ "value" : "Μια σύντομη περιγραφή για εσάς"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Iniciar una nueva conversación"
+ "value" : "Uma breve descrição sobre si próprio"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Begin een nieuw gesprek"
+ "value" : "A brief description about yourself"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ξεκινήστε μια νέα συνομιλία"
+ "value" : "Una breve descrizione di te stesso"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Commencer une nouvelle conversation"
+ "value" : "あなたについての簡単な説明",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Starta en ny konversation"
+ "value" : "En kort beskrivning om dig själv"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Start a new conversation"
+ "value" : "Una breve descripción sobre ti mismo"
}
}
}
},
- "Are you sure you want to delete this suggestion?" : {
+ "Support OpenClient" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Sei sicuro di voler eliminare questo suggerimento?"
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Möchten Sie diesen Vorschlag wirklich löschen?"
+ "value" : "OpenClient unterstützen"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "この提案を削除してもよろしいですか?"
+ "value" : "Soutenir OpenClient"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tem a certeza de que pretende eliminar esta sugestão?"
+ "value" : "OpenClient steunen"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "¿Seguro que quieres eliminar esta sugerencia?"
+ "value" : "Apoyar a OpenClient"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Weet je zeker dat je deze suggestie wilt verwijderen?"
+ "value" : "Sostieni OpenClient"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Êtes-vous sûr de vouloir supprimer cette suggestion ?"
+ "value" : "OpenClientを支援する"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή την πρόταση;"
+ "value" : "Apoiar o OpenClient"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Är du säker på att du vill ta bort detta förslag?"
+ "value" : "Stöd OpenClient"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Are you sure you want to delete this suggestion?"
+ "value" : "Support OpenClient"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Υποστήριξη του OpenClient",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A title for a screen that lets users support OpenClient."
},
- "No complete synchronization has succeeded yet." : {
+ "Some synchronized data could not be deleted." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessuna sincronizzazione completa è ancora riuscita."
+ "value" : "Não foi possível eliminar alguns dados sincronizados."
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Noch keine vollständige Synchronisierung war erfolgreich."
+ "value" : "一部の同期データを削除できませんでした。",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期が完全に成功したことはまだありません。"
+ "value" : "Sommige gesynchroniseerde gegevens konden niet worden verwijderd.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ainda não foi concluída nenhuma sincronização."
+ "value" : "Einige synchronisierte Daten konnten nicht gelöscht werden.",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aún no se ha completado correctamente ninguna sincronización."
+ "value" : "Δεν ήταν δυνατή η διαγραφή ορισμένων συγχρονισμένων δεδομένων."
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Er is nog geen volledige synchronisatie geslaagd."
+ "value" : "Vissa synkroniserade data kunde inte raderas."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aucune synchronisation complète n’a encore réussi."
+ "value" : "Some synchronized data could not be deleted."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν έχει ολοκληρωθεί ακόμη με επιτυχία κανένας συγχρονισμός."
+ "value" : "Non è stato possibile eliminare alcuni dati sincronizzati.",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ingen fullständig synkronisering har lyckats ännu."
+ "value" : "No se han podido eliminar algunos datos sincronizados.",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No complete synchronization has succeeded yet."
+ "value" : "Certaines données synchronisées n’ont pas pu être supprimées."
}
}
}
},
- "Enter a brief title for the issue" : {
+ "Copied" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inserisci un titolo breve per il problema"
+ "value" : "Copié"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geben Sie einen kurzen Titel für das Problem ein"
+ "value" : "Αντιγράφηκε"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "問題の簡単なタイトルを入力してください"
+ "value" : "Copiado"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Introduza um título breve para o problema"
+ "value" : "Kopierad",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Introduce un título breve para el problema"
+ "value" : "Copiato"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voer een korte titel voor het probleem in"
+ "value" : "Copied"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εισαγάγετε έναν σύντομο τίτλο για το ζήτημα"
+ "value" : "Copiado"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Entrez un titre bref pour le problème"
+ "value" : "コピー済み"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ange en kort titel för problemet"
+ "value" : "Kopiert"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enter a brief title for the issue"
+ "value" : "Gekopieerd"
}
}
}
},
- "%lld." : {
- "shouldTranslate" : false,
- "comment" : "A label that shows the index of a search result. The argument is the index of the search result.",
+ "Right-click a conversation to pin, rename, or add tags." : {
"localizations" : {
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%lld."
+ "value" : "Cliquez avec le bouton droit sur une conversation pour l’épingler, la renommer ou ajouter des tags."
}
- }
- }
- },
- "The agent timed out before completing the response." : {
- "localizations" : {
- "it" : {
+ },
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L'agente ha superato il tempo limite prima di completare la risposta."
+ "value" : "Klicken Sie mit der rechten Maustaste auf eine Unterhaltung, um sie anzuheften, umzubenennen oder Tags hinzuzufügen."
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Der Agent hat die Antwort nicht rechtzeitig abgeschlossen."
+ "value" : "Clique com o botão direito numa conversa para fixar, renomear ou adicionar etiquetas."
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "エージェントが応答を完了する前にタイムアウトしました。"
+ "value" : "会話を右クリックしてピン留め、名前変更、タグ追加を行います。"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O agente expirou antes de concluir a resposta."
+ "value" : "Klik met de rechtermuisknop op een gesprek om vast te zetten, hernoemen of tags toe te voegen."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El agente agotó el tiempo antes de completar la respuesta."
+ "value" : "Κάντε δεξί κλικ σε μια συνομιλία για καρφίτσωμα, μετονομασία ή προσθήκη ετικετών."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De agent heeft te lang gewacht om de reactie te voltooien."
+ "value" : "Right-click a conversation to pin, rename, or add tags."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ο πράκτορας διέκοψε τη σύνδεση πριν ολοκληρώσει την απάντηση."
+ "value" : "Fai clic con il tasto destro su una conversazione per fissarla, rinominarla o aggiungere tag."
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le délai de réponse de l’agent a expiré avant la fin."
+ "value" : "Haz clic derecho en una conversación para anclar, renombrar o agregar etiquetas."
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Agenten tog för lång tid på sig att slutföra svaret."
- }
- },
- "en" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "The agent timed out before completing the response."
+ "value" : "Högerklicka på en konversation för att fästa, byta namn eller lägga till taggar."
}
}
}
},
- "Start a new conversation to begin chatting" : {
+ "Open in App" : {
+ "comment" : "A button that opens the app.",
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Inizia una nuova conversazione per iniziare a chattare"
- }
- },
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beginnen Sie eine neue Unterhaltung, um zu chatten"
+ "value" : "Ouvrir dans l’app",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "新しい会話を始めてチャットを開始してください"
+ "value" : "アプリで開く"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inicie uma nova conversa para começar a conversar"
+ "value" : "Abrir na App"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inicia una nueva conversación para comenzar a chatear"
+ "value" : "Abrir en la app",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Begin een nieuw gesprek om te chatten"
+ "value" : "Apri nell’app",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Commencez une nouvelle conversation pour commencer à discuter"
+ "value" : "Open in App",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ξεκινήστε μια νέα συνομιλία για να αρχίσετε να συνομιλείτε"
+ "value" : "In App öffnen"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Starta en ny konversation för att börja chatta"
+ "value" : "Öppna i appen"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Start a new conversation to begin chatting"
+ "value" : "Openen in app"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Άνοιγμα στην εφαρμογή"
}
}
}
},
- "Support" : {
- "comment" : "A heading for the support options in the settings.",
+ "Remove from Favourites" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Supporto"
+ "value" : "Quitar de Favoritos",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Support"
+ "value" : "Remove from Favorites"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サポート"
+ "value" : "Ta bort från favoriter"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suporte"
+ "value" : "Retirer des favoris"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Soporte"
+ "value" : "Verwijderen uit favorieten"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ondersteuning"
+ "value" : "Aus Favoriten entfernen",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Υποστήριξη"
+ "value" : "Rimuovi dai Preferiti"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Assistance"
+ "value" : "お気に入りから削除"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Support"
+ "value" : "Αφαίρεση από Αγαπημένα"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Support"
+ "value" : "Remover dos Favoritos"
}
}
- }
+ },
+ "comment" : "A label for removing a message from the user's favourites."
},
- "Synchronized prompt template data is invalid." : {
+ "Opens a new conversation in OpenClient." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "I dati del modello del prompt sincronizzato non sono validi."
+ "value" : "Ouvre une nouvelle conversation dans OpenClient."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die Daten der synchronisierten Prompt-Vorlage sind ungültig."
+ "value" : "Ανοίγει μια νέα συνομιλία στο OpenClient.",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期されたプロンプトテンプレートのデータが無効です。"
+ "value" : "Öffnet eine neue Unterhaltung in OpenClient.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Os dados do modelo de prompt sincronizado são inválidos."
+ "value" : "Opens a new conversation in OpenClient",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Los datos de la plantilla de solicitudes sincronizada no son válidos."
+ "value" : "OpenClientで新しい会話を開始します"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De gegevens van de gesynchroniseerde promptsjabloon zijn ongeldig."
+ "value" : "Abre una nueva conversación en OpenClient.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τα δεδομένα του συγχρονισμένου προτύπου προτροπής δεν είναι έγκυρα."
+ "value" : "Abre uma nova conversa no OpenClient.",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Les données du modèle d’invite synchronisé ne sont pas valides."
+ "value" : "Öppnar en ny konversation i OpenClient.",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synkroniserade data för prompter är ogiltiga."
+ "value" : "Opent een nieuw gesprek in OpenClient.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronized prompt template data is invalid."
+ "value" : "Apre una nuova conversazione in OpenClient"
}
}
- }
+ },
+ "comment" : "Description of the control center widget that opens a new conversation in OpenClient."
},
- "The attachment file path is invalid." : {
- "comment" : "Error message when the attachment file path is invalid.",
+ "Your name" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Il percorso del file allegato non è valido."
+ "value" : "Ditt namn",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Der Dateipfad des Anhangs ist ungültig."
+ "value" : "Votre nom",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "添付ファイルのパスが無効です。"
+ "value" : "Il tuo nome"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O caminho do ficheiro anexado é inválido."
+ "value" : "Tu nombre"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La ruta del archivo adjunto no es válida."
+ "value" : "Your name"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het bestandspad van de bijlage is ongeldig."
+ "value" : "O seu nome"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le chemin du fichier joint n’est pas valide."
+ "value" : "Uw naam",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η διαδρομή αρχείου του συνημμένου δεν είναι έγκυρη."
+ "value" : "あなたの名前"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sökvägen till den bifogade filen är ogiltig."
+ "value" : "Ihr Name",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The attachment file path is invalid."
+ "value" : "Το όνομά σας"
}
}
- }
+ },
+ "comment" : "A label that describes the user's name."
},
- "Your support means a lot and helps keep the app free and open source." : {
- "comment" : "A message displayed in a thank you alert.",
+ "Manage Subscriptions" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Il tuo supporto è molto importante e aiuta a mantenere l’app gratuita e open source."
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deine Unterstützung bedeutet viel und hilft, die App kostenlos und Open Source zu halten."
+ "value" : "Abonnements verwalten"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ご支援いただくことで、アプリを無料かつオープンソースのまま維持できます。"
+ "value" : "Gérer les abonnements",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O seu apoio é muito importante e ajuda a manter a aplicação gratuita e de código aberto."
+ "value" : "Gestionar suscripciones"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tu apoyo significa mucho y ayuda a mantener la aplicación gratuita y de código abierto."
+ "value" : "Abonnementen beheren"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Je steun betekent veel en helpt de app gratis en open source te houden."
+ "value" : "Gestisci abbonamenti"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Votre soutien est précieux et permet de garder l’application gratuite et open source."
+ "value" : "サブスクリプションを管理",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η υποστήριξή σας σημαίνει πολλά και βοηθά να παραμείνει η εφαρμογή δωρεάν και ανοιχτού κώδικα."
+ "value" : "Gerir subscrições"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ditt stöd betyder mycket och hjälper till att hålla appen gratis och öppen källkod."
+ "value" : "Hantera prenumerationer",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Your support means a lot and helps keep the app free and open source."
+ "value" : "Manage Subscriptions"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Διαχείριση συνδρομών",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A link to manage user subscriptions."
},
- "Deletes all local settings and credentials. iCloud data will not be affected." : {
- "comment" : "A footer for the reset button in the settings.",
+ "Lavender" : {
+ "comment" : "A Japanese word for lavender.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elimina tutte le impostazioni e le credenziali locali. I dati di iCloud non saranno interessati."
+ "value" : "Λεβάντα",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Löscht alle lokalen Einstellungen und Anmeldedaten. iCloud-Daten bleiben unberührt."
+ "value" : "Lavanda",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "すべてのローカル設定と認証情報を削除します。iCloudのデータには影響しません。"
+ "value" : "Lavanda",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apaga todas as definições e credenciais locais. Os dados do iCloud não serão afetados."
+ "value" : "Lavendel",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina todas las configuraciones y credenciales locales. Los datos de iCloud no se verán afectados."
+ "value" : "ラベンダー"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verwijdert alle lokale instellingen en inloggegevens. iCloud-gegevens blijven ongewijzigd."
+ "value" : "Lavendel",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαγράφει όλες τις τοπικές ρυθμίσεις και τα διαπιστευτήρια. Τα δεδομένα iCloud δεν θα επηρεαστούν."
+ "value" : "Lavande"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supprime tous les paramètres et identifiants locaux. Les données iCloud ne seront pas affectées."
+ "value" : "Lavender"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tar bort alla lokala inställningar och inloggningsuppgifter. iCloud-data påverkas inte."
+ "value" : "Lavanda"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deletes all local settings and credentials. iCloud data will not be affected."
+ "value" : "Lavendel",
+ "state" : "translated"
}
}
}
},
- "You are an expert software engineer. Help with code, explain concepts clearly, suggest best practices, and provide working code examples. Always prefer readable and maintainable solutions." : {
- "comment" : "Prompt template content for each role type",
+ "Processing..." : {
+ "comment" : "A message displayed when the user is being processed.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sei un esperto ingegnere del software. Aiuta con il codice, spiega i concetti chiaramente, suggerisci le migliori pratiche e fornisci esempi di codice funzionanti. Preferisci sempre soluzioni leggibili e manutenibili."
+ "value" : "Processing...",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sie sind ein erfahrener Softwareingenieur. Helfen Sie bei Code, erklären Sie Konzepte klar, schlagen Sie Best Practices vor und liefern Sie funktionierende Codebeispiele. Bevorzugen Sie stets lesbare und wartbare Lösungen."
+ "value" : "Bearbetar...",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "あなたは熟練のソフトウェアエンジニアです。コードの支援、概念の明確な説明、ベストプラクティスの提案、動作するコード例の提供を行います。常に読みやすく保守しやすい解決策を優先してください。"
+ "value" : "Elaborazione in corso..."
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "És um engenheiro de software especialista. Ajuda com código, explica conceitos claramente, sugere as melhores práticas e fornece exemplos de código funcionais. Prefere sempre soluções legíveis e fáceis de manter."
+ "value" : "A processar..."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eres un ingeniero de software experto. Ayuda con el código, explica conceptos claramente, sugiere las mejores prácticas y proporciona ejemplos de código funcionales. Siempre prefiere soluciones legibles y mantenibles."
+ "value" : "Traitement en cours..."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Je bent een expert software-engineer. Help met code, leg concepten duidelijk uit, stel best practices voor en geef werkende codevoorbeelden. Geef altijd de voorkeur aan leesbare en onderhoudbare oplossingen."
+ "value" : "処理中..."
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Είστε έμπειρος μηχανικός λογισμικού. Βοηθήστε με κώδικα, εξηγήστε έννοιες με σαφήνεια, προτείνετε βέλτιστες πρακτικές και παρέχετε λειτουργικά παραδείγματα κώδικα. Προτιμήστε πάντα λύσεις που είναι ευανάγνωστες και εύκολες στη συντήρηση."
+ "value" : "Bezig met verwerken...",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vous êtes un ingénieur logiciel expert. Aidez avec le code, expliquez clairement les concepts, suggérez les meilleures pratiques et fournissez des exemples de code fonctionnels. Privilégiez toujours des solutions lisibles et maintenables."
+ "value" : "Procesando..."
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Du är en expertprogrammerare. Hjälp till med kod, förklara koncept tydligt, föreslå bästa praxis och ge fungerande kodexempel. Föredra alltid läsbara och underhållbara lösningar."
+ "value" : "Verarbeitung..."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "You are an expert software engineer. Help with code, explain concepts clearly, suggest best practices, and provide working code examples. Always prefer readable and maintainable solutions."
+ "value" : "Επεξεργασία...",
+ "state" : "translated"
}
}
}
},
- "OpenClient" : {
- "comment" : "The name of the app.",
+ "Continue Chat" : {
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient"
+ "value" : "Continua chat"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient"
+ "value" : "Chat fortsetzen",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient"
+ "value" : "Continuar chat",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient"
+ "value" : "Continuer la discussion",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient"
+ "value" : "Continuar Conversa",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient"
+ "value" : "Continue Chat"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient"
+ "value" : "チャットを続ける",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient"
+ "value" : "Fortsätt chatt",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient"
+ "value" : "Chat voortzetten",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient"
+ "value" : "Συνέχεια συνομιλίας"
}
}
- }
+ },
+ "comment" : "Widget title."
},
- "Your data stays on your own server — no telemetry" : {
- "comment" : "A description of the privacy features of OpenClient.",
+ "The MCP server reported a tool error." : {
+ "comment" : "Error message when an MCP tool call fails.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "I tuoi dati restano sul tuo server — nessuna telemetria"
+ "value" : "De MCP-server meldde een toolfout.",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ihre Daten bleiben auf Ihrem eigenen Server — keine Telemetrie"
+ "value" : "Ο διακομιστής MCP ανέφερε σφάλμα εργαλείου."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "データはお客様のサーバーにのみ保存され、テレメトリーはありません"
+ "value" : "El servidor MCP informó un error de herramienta.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Os seus dados permanecem no seu próprio servidor — sem telemetria"
+ "value" : "The MCP server reported a tool error.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tus datos permanecen en tu propio servidor sin telemetría"
+ "value" : "O servidor MCP reportou um erro na ferramenta."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Uw gegevens blijven op uw eigen server — geen telemetrie"
+ "value" : "Der MCP-Server meldete einen Werkzeugfehler."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vos données restent sur votre propre serveur — pas de télémétrie"
+ "value" : "MCP-servern rapporterade ett verktygsfel."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τα δεδομένα σας παραμένουν στον δικό σας διακομιστή — χωρίς τηλεμετρία"
+ "value" : "MCPサーバーがツールエラーを報告しました。",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dina data stannar på din egen server — ingen telemetri"
+ "value" : "Il server MCP ha segnalato un errore dello strumento."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Your data stays on your own server — no telemetry"
+ "value" : "Le serveur MCP a signalé une erreur d’outil.",
+ "state" : "translated"
}
}
}
},
- "Update" : {
- "comment" : "A button that updates the app.",
+ "Share" : {
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aggiorna"
+ "value" : "Condividi"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktualisieren"
+ "value" : "Compartir"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "アップデート"
+ "value" : "Share"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Atualizar"
+ "value" : "Teilen"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Actualizar"
+ "value" : "Partager"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bijwerken"
+ "value" : "Dela",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mettre à jour"
+ "value" : "共有"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ενημέρωση"
+ "value" : "Partilhar",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Uppdatera"
+ "value" : "Delen",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Update"
+ "value" : "Κοινή χρήση",
+ "state" : "translated"
}
}
}
},
- "Maximum of 3 tags reached. Remove one to add another." : {
- "comment" : "A message displayed when the user tries to add a tag when they've already reached the maximum of 3.",
+ "Retry" : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Raggiunto il massimo di 3 tag. Rimuovi uno per aggiungerne un altro."
+ "value" : "Riprova",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Maximal 3 Tags erreicht. Entferne einen, um einen weiteren hinzuzufügen."
+ "value" : "Reintentar"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "タグは最大3つまでです。追加するには1つ削除してください。"
+ "value" : "Retry"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Máximo de 3 etiquetas atingido. Remova uma para adicionar outra."
+ "value" : "Réessayer"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Se alcanzó el máximo de 3 etiquetas. Elimina una para añadir otra."
+ "value" : "Erneut versuchen",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Maximum van 3 tags bereikt. Verwijder er één om een nieuwe toe te voegen."
+ "value" : "再試行"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nombre maximum de 3 tags atteint. Supprimez-en un pour en ajouter un autre."
+ "value" : "Tentar novamente",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Έχετε φτάσει το μέγιστο όριο των 3 ετικετών. Αφαιρέστε μία για να προσθέσετε άλλη."
+ "value" : "Försök igen"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Maximalt 3 taggar nådda. Ta bort en för att lägga till en annan."
+ "value" : "Opnieuw proberen",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Maximum of 3 tags reached. Remove one to add another."
+ "value" : "Επανάληψη προσπάθειας",
+ "state" : "translated"
}
}
}
},
- "PDF Document" : {
+ "The latest turn exceeds the available context" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Documento PDF"
+ "value" : "Le dernier tour dépasse le contexte disponible",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "PDF-Dokument"
+ "value" : "A última jogada excede o contexto disponível"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "PDFドキュメント"
+ "value" : "El último turno supera el contexto disponible",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Documento PDF"
+ "value" : "Der letzte Zug überschreitet den verfügbaren Kontext"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Documento PDF"
+ "value" : "最新のターンが利用可能なコンテキストを超えています",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "PDF-document"
+ "value" : "The latest turn exceeds the available context",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Έγγραφο PDF"
+ "value" : "L'ultimo turno supera il contesto disponibile",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Document PDF"
+ "value" : "Det senaste draget överskrider det tillgängliga sammanhanget",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "PDF-dokument"
+ "value" : "De laatste beurt overschrijdt de beschikbare context"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "PDF Document"
+ "value" : "Η τελευταία κίνηση υπερβαίνει το διαθέσιμο πλαίσιο",
+ "state" : "translated"
}
}
}
},
- "Synchronization failed" : {
+ "Imported %lld conversations and restored %lld attachments." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sincronizzazione non riuscita"
+ "value" : "Imported %1$lld conversations and restored %2$lld attachments.",
+ "state" : "new"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Synchronisierung fehlgeschlagen"
+ "value" : "Importate %1$lld conversazioni e ripristinati %2$lld allegati.",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "同期に失敗しました"
+ "value" : "%1$lld 件の会話をインポートし、%2$lld 件の添付ファイルを復元しました。"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Falha na sincronização"
+ "value" : "Importadas %1$lld conversas e restaurados %2$lld anexos."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La sincronización ha fallado"
+ "value" : "Se importaron %1$lld conversaciones y se restauraron %2$lld archivos adjuntos."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronisatie mislukt"
+ "value" : "Εισήχθησαν %1$lld συνομιλίες και αποκαταστάθηκαν %2$lld συνημμένα."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ο συγχρονισμός απέτυχε"
+ "value" : "Importerade %1$lld konversationer och återställde %2$lld bilagor."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Échec de la synchronisation"
+ "value" : "%1$lld conversations importées et %2$lld pièces jointes restaurées."
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synkroniseringen misslyckades"
+ "value" : "%1$lld gesprekken geïmporteerd en %2$lld bijlagen hersteld."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronization failed"
+ "value" : "%1$lld Konversationen importiert und %2$lld Anhänge wiederhergestellt."
}
}
}
},
- "Always Deny %@?" : {
- "comment" : "A confirmation prompt asking the user to deny a tool's access to a server. The argument is the name of the tool.",
+ "Recipe for pasta carbonara" : {
+ "comment" : "Title of a recipe for pasta carbonara.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Negare sempre l’accesso a %@?"
+ "value" : "Ricetta per pasta alla carbonara"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zugriff auf %@ immer verweigern?"
+ "value" : "Recept voor pasta carbonara"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "常に%@を拒否しますか?"
+ "value" : "Recipe for pasta carbonara",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Negar sempre o acesso de %@?"
+ "value" : "Receta de pasta carbonara"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "¿Denegar siempre el acceso de %@?"
+ "value" : "Συνταγή για καρμπονάρα ζυμαρικών",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%@ altijd weigeren?"
+ "value" : "Recette de pâtes à la carbonara"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toujours refuser l’accès de %@ ?"
+ "value" : "Rezept für Pasta Carbonara",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Να αρνείστε πάντα την πρόσβαση στο %@;"
+ "value" : "Receita de massa carbonara"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Neka alltid %@?"
+ "value" : "パスタカルボナーラのレシピ",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Always Deny %@?"
+ "value" : "Recept på pasta carbonara",
+ "state" : "translated"
}
}
}
},
- "The cloud deletion could not be completed because iCloud is unavailable." : {
- "comment" : "Error description for when the cloud deletion fails because iCloud is unavailable.",
+ "Add to Favourites" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossibile completare l’eliminazione dal cloud perché iCloud non è disponibile."
+ "value" : "Προσθήκη στα Αγαπημένα",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Löschung aus der Cloud konnte nicht abgeschlossen werden, da iCloud nicht verfügbar ist."
+ "value" : "お気に入りに追加"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudを利用できないため、クラウドの削除を完了できませんでした。"
+ "value" : "Zu Favoriten hinzufügen"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível concluir a eliminação na nuvem porque o iCloud está indisponível."
+ "value" : "Adicionar aos Favoritos"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pudo completar la eliminación en la nube porque iCloud no está disponible."
+ "value" : "Añadir a Favoritos"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De verwijdering uit de cloud kon niet worden voltooid omdat iCloud niet beschikbaar is."
+ "value" : "Ajouter aux favoris"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η ολοκλήρωση της διαγραφής από το cloud, επειδή το iCloud δεν είναι διαθέσιμο."
+ "value" : "Lägg till i favoriter"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La suppression dans le cloud n’a pas pu être effectuée, car iCloud est indisponible."
+ "value" : "Aggiungi ai Preferiti",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Molnraderingen kunde inte slutföras eftersom iCloud inte är tillgängligt."
+ "value" : "Add to Favorites"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The cloud deletion could not be completed because iCloud is unavailable."
+ "value" : "Toevoegen aan favorieten"
}
}
- }
+ },
+ "comment" : "A label for a button that adds a message to the user's favourites."
},
- "Voice" : {
- "comment" : "A label displayed above a list of available voices.",
+ "Done" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voce"
+ "value" : "Hecho",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Stimme"
+ "value" : "ΤΕΛΕΙΩΣΕ"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "音声"
+ "value" : "Terminé"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vozes"
+ "value" : "Klart"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voz"
+ "value" : "Done",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Stem"
+ "value" : "Fatto",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Φωνή"
+ "value" : "完了"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voix"
+ "value" : "Fertig"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Röst"
+ "value" : "Gereed",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voice"
+ "value" : "Concluído"
}
}
}
},
- "Memory Content" : {
- "comment" : "A label displayed above the text field for the memory content.",
+ "Assistant" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contenuto della memoria"
+ "value" : "Assistente"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Speicherinhalt"
+ "value" : "Assistant"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メモリ内容"
+ "value" : "アシスタント",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conteúdo da Memória"
+ "value" : "Assistant",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Contenido de la memoria"
+ "value" : "Assistent",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geheugeninhoud"
+ "value" : "Assistent"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Περιεχόμενο μνήμης"
+ "value" : "Βοηθός"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contenu de la mémoire"
+ "value" : "Assistent"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Minnesinnehåll"
+ "value" : "Assistente",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Memory Content"
+ "value" : "Asistente"
}
}
- }
+ },
+ "comment" : "A name for the assistant."
},
- "One-time support" : {
- "comment" : "A heading for a section of a tip jar view that shows one-time purchases.",
+ "Post" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Supporto una tantum"
+ "value" : "Beitrag",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Einmalige Unterstützung"
+ "value" : "Post"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "単発サポート"
+ "value" : "投稿",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apoio único"
+ "value" : "Publicar"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apoyo puntual"
+ "value" : "Publicar",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eenmalige steun"
+ "value" : "Pubblica"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Soutien ponctuel"
+ "value" : "Publier"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εφάπαξ υποστήριξη"
+ "value" : "Plaatsen"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Engångsstöd"
+ "value" : "Inlägg"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "One-time support"
+ "value" : "Ανάρτηση",
+ "state" : "translated"
}
}
}
},
- "Prepare meeting notes" : {
- "comment" : "Title of a conversation.",
+ "The server URL is not valid." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Prepara appunti della riunione"
+ "value" : "Serverns URL är inte giltig."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Besprechungsnotizen vorbereiten"
+ "value" : "The server URL is not valid."
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会議メモの準備"
+ "value" : "L'URL del server non è valido."
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Preparar notas da reunião"
+ "value" : "O URL do servidor não é válido."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Preparar notas de la reunión"
+ "value" : "L’URL du serveur n’est pas valide.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Notulen voorbereiden"
+ "value" : "サーバーのURLが無効です。",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Προετοιμασία σημειώσεων συνάντησης"
+ "value" : "De server-URL is niet geldig.",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Préparer les notes de réunion"
+ "value" : "La URL del servidor no es válida.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Förbered mötesanteckningar"
+ "value" : "Die Server-URL ist ungültig."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Prepare meeting notes"
+ "value" : "Η διεύθυνση URL του διακομιστή δεν είναι έγκυρη.",
+ "state" : "translated"
}
}
}
},
- "Edit Memory" : {
- "comment" : "A title for a view that edits a memory item.",
+ "Jump back into your latest conversation." : {
+ "comment" : "Description of the widget that opens the most recently updated conversation in OpenClient.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modifica memoria"
+ "value" : "Ritorna alla tua ultima conversazione."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Erinnerung bearbeiten"
+ "value" : "Vuelve a tu última conversación.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メモリを編集"
+ "value" : "Jump back into your latest conversation",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Editar Memória"
+ "value" : "Springe zurück zu deinem letzten Gespräch.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Editar memoria"
+ "value" : "Reprenez votre dernière conversation.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geheugen bewerken"
+ "value" : "最新の会話に戻る",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επεξεργασία Μνήμης"
+ "value" : "Hoppa tillbaka till din senaste konversation."
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modifier la mémoire"
+ "value" : "Ga terug naar je laatste gesprek."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Redigera minne"
+ "value" : "Voltar à sua conversa mais recente.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Edit Memory"
+ "value" : "Επιστροφή στην πιο πρόσφατη συνομιλία σας.",
+ "state" : "translated"
}
}
}
},
- "Description" : {
- "comment" : "A label displayed above the user's profile description.",
+ "Code" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Descrizione"
+ "value" : "Κωδικός",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beschreibung"
+ "value" : "コード",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "説明"
+ "value" : "Code",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Descrição"
+ "value" : "Código",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Descripción"
+ "value" : "Código",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beschrijving"
+ "value" : "Code",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Description"
+ "value" : "Kod",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Περιγραφή"
+ "value" : "Codice"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beskrivning"
+ "value" : "Code"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Description"
+ "value" : "Code",
+ "state" : "translated"
}
}
}
},
- "Support OpenClient" : {
- "comment" : "A title for a screen that lets users support OpenClient.",
+ "All Tags" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sostieni OpenClient"
+ "value" : "Alle tags",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient unterstützen"
+ "value" : "Alle Tags",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClientを支援する"
+ "value" : "すべてのタグ"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apoiar o OpenClient"
+ "value" : "Όλες οι ετικέτες",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apoyar a OpenClient"
+ "value" : "Alla taggar"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient steunen"
+ "value" : "Todas las etiquetas"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Υποστήριξη του OpenClient"
+ "value" : "Tous les tags"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Soutenir OpenClient"
+ "value" : "Tutti i tag"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Stöd OpenClient"
+ "value" : "Todas as Etiquetas",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Support OpenClient"
+ "value" : "All Tags"
}
}
- }
+ },
+ "comment" : "The default tag to be selected when the widget is configured."
},
- "Your iCloud account or container is not currently available." : {
+ "%lld tools available" : {
+ "comment" : "A pluralized string describing the number of tools available. The argument is the number of tools available.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il tuo account o contenitore iCloud non è attualmente disponibile."
+ "value" : "利用可能なツール:%lld個"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dein iCloud-Account oder -Container ist derzeit nicht verfügbar."
+ "value" : "%lld tools available",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "お使いのiCloudアカウントまたはコンテナは現在利用できません。"
+ "value" : "%lld strumenti disponibili"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A sua conta ou contentor do iCloud não está disponível de momento."
+ "value" : "%lld herramientas disponibles"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tu cuenta o contenedor de iCloud no está disponible actualmente."
+ "value" : "%lld ferramentas disponíveis",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je iCloud-account of -container is momenteel niet beschikbaar."
+ "value" : "Διαθέσιμα εργαλεία: %lld",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Votre compte iCloud ou votre conteneur n’est pas disponible actuellement."
+ "value" : "%lld Werkzeuge verfügbar",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ο λογαριασμός ή το κοντέινερ iCloud σας δεν είναι διαθέσιμο αυτήν τη στιγμή."
+ "value" : "%lld outils disponibles"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ditt iCloud-konto eller din iCloud-behållare är inte tillgänglig just nu."
+ "value" : "%lld verktyg tillgängliga"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Your iCloud account or container is not currently available."
+ "value" : "%lld tools beschikbaar"
}
}
}
},
- "New chat with a URL" : {
- "comment" : "A description of how to open a chat with a URL using the URL scheme.",
+ "Settings" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nuova chat con un URL"
+ "value" : "Inställningar"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neuer Chat mit einer URL"
+ "value" : "Instellingen"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "URLで新しいチャットを開始"
+ "value" : "Paramètres"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nova conversa com um URL"
+ "value" : "Configuración",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nueva conversación con una URL"
+ "value" : "Ρυθμίσεις",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nieuw gesprek met een URL"
+ "value" : "Einstellungen"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Νέα συνομιλία με URL"
+ "value" : "設定"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nouvelle conversation avec une URL"
+ "value" : "Impostazioni"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ny chatt med en URL"
+ "value" : "Settings",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "New chat using a URL"
+ "value" : "Definições"
}
}
}
},
- "Unknown" : {
- "comment" : "A label for an unknown LLM model.",
+ "Prepare meeting notes" : {
+ "comment" : "Title of a conversation.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sconosciuto"
+ "value" : "Notulen voorbereiden",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Unbekannt"
+ "value" : "Prepare meeting notes",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "不明"
+ "value" : "Förbered mötesanteckningar",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Desconhecido"
+ "value" : "Prepara appunti della riunione",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Desconocido"
+ "value" : "Προετοιμασία σημειώσεων συνάντησης",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Onbekend"
+ "value" : "Preparar notas da reunião",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inconnu"
+ "value" : "会議メモの準備"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Άγνωστο"
+ "value" : "Préparer les notes de réunion"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Okänd"
+ "value" : "Preparar notas de la reunión",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Unknown"
+ "value" : "Besprechungsnotizen vorbereiten"
}
}
}
},
- "one time" : {
- "comment" : "A label for a one-time tip.",
+ "No pinned conversations" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Una tantum"
+ "value" : "No pinned conversations",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Einmalig"
+ "value" : "Inga fastnålda konversationer"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1回限り"
+ "value" : "Aucune conversation épinglée"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "uma vez"
+ "value" : "Nessuna conversazione fissata"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Una vez"
+ "value" : "Δεν υπάρχουν καρφιτσωμένες συνομιλίες",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "eenmalig"
+ "value" : "No hay conversaciones fijadas"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εφάπαξ"
+ "value" : "Sem conversas fixadas",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Une fois"
+ "value" : "ピン留めされた会話はありません"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Engångsbetalning"
+ "value" : "Keine angehefteten Unterhaltungen",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "one time"
+ "value" : "Geen vastgezette gesprekken"
}
}
- }
+ },
+ "comment" : "A message displayed when the user has no pinned conversations."
},
- "Indigo" : {
- "comment" : "Name of the color indigo.",
+ "Hide Actions" : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Indaco"
+ "value" : "Nascondi azioni",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Indigo"
+ "value" : "Acties verbergen"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "インディゴ"
+ "value" : "Απόκρυψη ενεργειών",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Índigo"
+ "value" : "Hide Actions"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Índigo"
+ "value" : "Ocultar acciones"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Indigo"
+ "value" : "Masquer les actions",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ινδικό"
+ "value" : "Ocultar Ações",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Indigo"
+ "value" : "Aktionen ausblenden",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Indigo"
+ "value" : "アクションを非表示",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Indigo"
+ "value" : "Dölj åtgärder"
}
}
- }
+ },
+ "comment" : "A label for hiding the available actions."
},
- "Image" : {
+ "Description (optional)" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Immagine"
+ "value" : "Description (optionnel)"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bild"
+ "value" : "Descrizione (opzionale)"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "画像"
+ "value" : "説明(任意)"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Imagem"
+ "value" : "Descrição (opcional)",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Imagen"
+ "value" : "Descripción (opcional)",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afbeelding"
+ "value" : "Περιγραφή (προαιρετικό)"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εικόνα"
+ "value" : "Beskrivning (valfritt)"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image"
+ "value" : "Beschrijving (optioneel)"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bild"
+ "value" : "Description (optional)",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image"
+ "value" : "Beschreibung (optional)"
}
}
}
},
- "Suggested anonymously" : {
+ "These tools are unavailable until this server refreshes successfully." : {
+ "comment" : "A warning message that appears when the MCP server is unavailable.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suggerito anonimamente"
+ "value" : "Diese Tools sind nicht verfügbar, bis dieser Server erfolgreich aktualisiert wurde.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Anonym vorgeschlagen"
+ "value" : "Ces outils sont indisponibles jusqu’à l’actualisation réussie de ce serveur.",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "匿名で提案されました"
+ "value" : "Deze tools zijn niet beschikbaar totdat deze server succesvol is vernieuwd.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sugerido anonimamente"
+ "value" : "Questi strumenti non sono disponibili finché il server non viene aggiornato correttamente.",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sugerido de forma anónima"
+ "value" : "These tools are unavailable until this server refreshes successfully.",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anoniem voorgesteld"
+ "value" : "Estas ferramentas não estão disponíveis até este servidor ser atualizado com êxito."
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suggéré anonymement"
+ "value" : "Estas herramientas no estarán disponibles hasta que este servidor se actualice correctamente.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Προταθεί ανώνυμα"
+ "value" : "Dessa verktyg är otillgängliga tills servern har uppdaterats.",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Föreslagen anonymt"
+ "value" : "このサーバーの更新が正常に完了するまで、これらのツールは利用できません。",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggested anonymously"
+ "value" : "Αυτά τα εργαλεία δεν είναι διαθέσιμα μέχρι να ολοκληρωθεί επιτυχώς η ανανέωση αυτού του διακομιστή."
}
}
}
},
- "API Key (Optional)" : {
+ "Renews automatically until canceled. No features are locked." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chiave API (Opzionale)"
+ "value" : "Ανανεώνεται αυτόματα μέχρι να ακυρωθεί. Δεν υπάρχουν κλειδωμένες λειτουργίες.",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "API-Schlüssel (optional)"
+ "value" : "キャンセルするまで自動更新されます。すべての機能をご利用いただけます。",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "APIキー(任意)"
+ "value" : "Verlängert sich automatisch, bis es gekündigt wird. Alle Funktionen sind verfügbar."
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chave API (Opcional)"
+ "value" : "Renova-se automaticamente até ser cancelada. Nenhuma funcionalidade está bloqueada.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Clave API (Opcional)"
+ "value" : "Se renueva automáticamente hasta que se cancele. No hay funciones bloqueadas.",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "API-sleutel (optioneel)"
+ "value" : "Förnyas automatiskt tills den sägs upp. Alla funktioner är tillgängliga.",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Clé API (facultatif)"
+ "value" : "Se renouvelle automatiquement jusqu’à annulation. Aucune fonctionnalité n’est verrouillée.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Κλειδί API (Προαιρετικό)"
+ "value" : "Si rinnova automaticamente fino alla cancellazione. Nessuna funzionalità è bloccata.",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "API-nyckel (valfritt)"
+ "value" : "Renews automatically until canceled. No features are locked.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "API Key (Optional)"
+ "value" : "Wordt automatisch verlengd totdat je opzegt. Alle functies zijn beschikbaar."
}
}
- }
+ },
+ "comment" : "A description of a subscription."
},
- "Suggested by" : {
+ "If you continue, future calls can execute without confirmation for this configuration." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggerito da"
+ "value" : "Als je doorgaat, kunnen toekomstige aanroepen voor deze configuratie zonder bevestiging worden uitgevoerd."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vorgeschlagen von"
+ "value" : "Si continúas, las próximas llamadas podrán ejecutarse sin confirmación para esta configuración.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "からの提案"
+ "value" : "Αν συνεχίσετε, οι μελλοντικές κλήσεις μπορούν να εκτελούνται χωρίς επιβεβαίωση για αυτήν τη διαμόρφωση."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sugerido por"
+ "value" : "続行すると、この構成では今後の呼び出しを確認なしで実行できます。"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sugerido por"
+ "value" : "Wenn Sie fortfahren, können zukünftige Aufrufe für diese Konfiguration ohne Bestätigung ausgeführt werden."
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voorgesteld door"
+ "value" : "Se continui, le chiamate future potranno essere eseguite senza conferma per questa configurazione."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggéré par"
+ "value" : "If you continue, future calls can execute without confirmation for this configuration."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προτεινόμενο από"
+ "value" : "Om du fortsätter kan framtida anrop köras utan bekräftelse för den här konfigurationen."
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Föreslagen av"
+ "value" : "Si vous continuez, les prochains appels pourront être exécutés sans confirmation pour cette configuration.",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggested by"
+ "value" : "Se continuar, as chamadas futuras poderão ser executadas sem confirmação para esta configuração."
}
}
- }
+ },
+ "comment" : "A message that appears in an alert that asks the user to allow a tool to access a resource."
},
- "Optimised for LiteLLM. Any OpenAI-compatible server also works." : {
- "comment" : "A hint that describes the benefits of using a LiteLLM server.",
+ "Permission" : {
+ "comment" : "A label that displays a dropdown menu for selecting the user's permission for an external tool.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ottimizzato per LiteLLM. Funziona anche con qualsiasi server compatibile OpenAI."
+ "value" : "権限"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Optimiert für LiteLLM. Jeder OpenAI-kompatible Server funktioniert ebenfalls."
+ "value" : "Permission"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "LiteLLMに最適化。OpenAI互換のサーバーも利用可能。"
+ "value" : "Machtiging"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Otimizado para LiteLLM. Qualquer servidor compatível com OpenAI também funciona."
+ "value" : "Behörighet"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Optimizado para LiteLLM. También funciona con cualquier servidor compatible con OpenAI."
+ "value" : "Permissão",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geoptimaliseerd voor LiteLLM. Elke OpenAI-compatibele server werkt ook."
+ "value" : "Δικαίωμα πρόσβασης",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Βελτιστοποιημένο για LiteLLM. Λειτουργεί επίσης με οποιονδήποτε διακομιστή συμβατό με OpenAI."
+ "value" : "Autorizzazione"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Optimisé pour LiteLLM. Tout serveur compatible OpenAI fonctionne également."
+ "value" : "Berechtigung",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Optimerad för LiteLLM. Fungerar även med alla OpenAI-kompatibla servrar."
+ "value" : "Permiso",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Optimized for LiteLLM. Any OpenAI-compatible server also works."
+ "value" : "Autorisation"
}
}
}
},
- "How does Swift concurrency work?" : {
- "comment" : "Title of a conversation.",
+ "The iCloud container is unavailable." : {
+ "comment" : "Error description when the iCloud container is unavailable.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Come funziona la concorrenza in Swift?"
+ "value" : "Le conteneur iCloud est indisponible."
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Wie funktioniert Swift Concurrency?"
+ "value" : "Der iCloud-Container ist nicht verfügbar.",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Swiftの並行処理はどう機能するのか?"
+ "value" : "De iCloud-container is niet beschikbaar."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Como funciona a concorrência em Swift?"
+ "value" : "Το κοντέινερ iCloud δεν είναι διαθέσιμο."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "¿Cómo funciona la concurrencia en Swift?"
+ "value" : "The iCloud container is unavailable."
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hoe werkt Swift-concurrentie?"
+ "value" : "O contentor do iCloud está indisponível."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πώς λειτουργεί η ασύγχρονη εκτέλεση στο Swift;"
+ "value" : "Il contenitore iCloud non è disponibile."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Comment fonctionne la concurrence en Swift ?"
+ "value" : "iCloudコンテナを利用できません。"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hur fungerar Swift-konkurens?"
+ "value" : "iCloud-behållaren är inte tillgänglig.",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "How does Swift concurrency work?"
+ "value" : "El contenedor de iCloud no está disponible."
}
}
}
},
- "Be the first to suggest something!" : {
+ "tag.JSON.mode" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sii il primo a suggerire qualcosa!"
+ "value" : "JSON Mode",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sei der Erste, der etwas vorschlägt!"
+ "value" : "JSON Mode"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "最初に提案しましょう!"
+ "value" : "JSON Mode",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Seja o primeiro a sugerir algo!"
+ "value" : "JSON Mode",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "¡Sé el primero en sugerir algo!"
+ "value" : "JSON Mode",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Wees de eerste om iets voor te stellen!"
+ "value" : "JSON Mode"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Να είστε ο πρώτος που θα προτείνει κάτι!"
+ "value" : "JSON Mode",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Soyez le premier à suggérer quelque chose !"
+ "value" : "JSON Mode"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Var den första att föreslå något!"
+ "value" : "JSON Mode"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Be the first to suggest something!"
+ "value" : "JSON Mode"
}
}
- }
+ },
+ "comment" : "Label for a capability that uses JSON schemas."
},
- "GPT, Claude, Gemini, Llama and more via LiteLLM, Ollama, LM Studio..." : {
- "comment" : "A description of the features of the app.",
+ "Your local data will be merged into the current iCloud account. Cancel to keep iCloud Sync disabled." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "GPT, Claude, Gemini, Llama e altri tramite LiteLLM, Ollama, LM Studio..."
+ "value" : "Je lokale gegevens worden samengevoegd met de huidige iCloud-account. Annuleer om iCloud-synchronisatie uitgeschakeld te houden.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "GPT, Claude, Gemini, Llama und mehr über LiteLLM, Ollama, LM Studio..."
+ "value" : "Dina lokala data kommer att slås samman med det aktuella iCloud-kontot. Avbryt för att fortsätta ha iCloud-synkronisering inaktiverad."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "LiteLLM、Ollama、LM Studioを通じて利用可能なGPT、Claude、Gemini、Llamaなど..."
+ "value" : "Τα τοπικά δεδομένα σας θα συγχωνευτούν με τον τρέχοντα λογαριασμό iCloud. Πατήστε «Ακύρωση» για να διατηρήσετε τον συγχρονισμό iCloud απενεργοποιημένο."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "GPT, Claude, Gemini, Llama e mais via LiteLLM, Ollama, LM Studio..."
+ "value" : "Tus datos locales se fusionarán con la cuenta de iCloud actual. Pulsa «Cancelar» para mantener desactivada la sincronización con iCloud.",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "GPT, Claude, Gemini, Llama y más a través de LiteLLM, Ollama, LM Studio..."
+ "value" : "Deine lokalen Daten werden mit dem aktuellen iCloud-Account zusammengeführt. Tippe auf „Abbrechen“, um die iCloud-Synchronisierung deaktiviert zu lassen.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "GPT, Claude, Gemini, Llama en meer via LiteLLM, Ollama, LM Studio..."
+ "value" : "ローカルデータが現在のiCloudアカウントに統合されます。iCloud同期を無効のままにするには「キャンセル」を選択してください。",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "GPT, Claude, Gemini, Llama et plus encore via LiteLLM, Ollama, LM Studio..."
+ "value" : "Vos données locales seront fusionnées avec le compte iCloud actuel. Touchez Annuler pour laisser la synchronisation iCloud désactivée.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "GPT, Claude, Gemini, Llama και άλλα μέσω LiteLLM, Ollama, LM Studio..."
+ "value" : "I tuoi dati locali verranno uniti all’account iCloud attuale. Tocca Annulla per mantenere disabilitata la sincronizzazione iCloud."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "GPT, Claude, Gemini, Llama med flera via LiteLLM, Ollama, LM Studio..."
+ "value" : "Your local data will be merged into the current iCloud account. Cancel to keep iCloud Sync disabled.",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "GPT, Claude, Gemini, Llama and more via LiteLLM, Ollama, LM Studio..."
+ "value" : "Os seus dados locais serão fundidos com a conta iCloud atual. Cancele para manter a sincronização com o iCloud desativada."
}
}
}
},
- "Attachments (part of conversations)" : {
+ "%lld." : {
+ "shouldTranslate" : false,
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Allegati (parte delle conversazioni)"
+ "value" : "%lld."
}
- },
- "de" : {
+ }
+ },
+ "comment" : "A label that shows the index of a search result. The argument is the index of the search result."
+ },
+ "This information is added to every conversation so models can personalise their responses." : {
+ "comment" : "A description of the information that is added to every conversation.",
+ "localizations" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anhänge (Teil von Unterhaltungen)"
+ "value" : "This information is added to every conversation so models can personalize their responses."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会話の一部である添付ファイル"
+ "value" : "Αυτές οι πληροφορίες προστίθενται σε κάθε συνομιλία ώστε τα μοντέλα να προσωποποιούν τις απαντήσεις τους."
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Anexos (parte das conversas)"
+ "value" : "Diese Informationen werden jeder Unterhaltung hinzugefügt, damit Modelle ihre Antworten personalisieren können.",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Denna information läggs till i varje konversation så att modeller kan anpassa sina svar.",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Archivos adjuntos (parte de las conversaciones)"
+ "value" : "Esta informação é adicionada a cada conversa para que os modelos possam personalizar as suas respostas."
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bijlagen (onderdeel van gesprekken)"
+ "value" : "Deze informatie wordt aan elk gesprek toegevoegd zodat modellen hun antwoorden kunnen personaliseren.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Συνημμένα (μέρος των συνομιλιών)"
+ "value" : "Queste informazioni vengono aggiunte a ogni conversazione affinché i modelli possano personalizzare le loro risposte.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pièces jointes (dans les conversations)"
+ "value" : "この情報は、モデルが応答をパーソナライズできるように、すべての会話に追加されます。"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bilagor (del av konversationer)"
+ "value" : "Ces informations sont ajoutées à chaque conversation pour que les modèles puissent personnaliser leurs réponses.",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Attachments (part of conversations)"
+ "value" : "Esta información se añade a cada conversación para que los modelos puedan personalizar sus respuestas."
}
}
}
},
- "Only completed" : {
+ "Copy URL" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Solo completati"
+ "value" : "Copiar URL"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nur abgeschlossen"
+ "value" : "Copy URL"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "完了のみ"
+ "value" : "Kopiera URL"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apenas concluídos"
+ "value" : "Copier l’URL",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Solo completados"
+ "value" : "URL kopiëren"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alleen voltooid"
+ "value" : "URL kopieren"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Uniquement terminés"
+ "value" : "Copia URL",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μόνο ολοκληρωμένα"
+ "value" : "URLをコピー",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Endast slutförda"
+ "value" : "Αντιγραφή URL"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Only completed"
+ "value" : "Copiar URL"
}
}
}
},
- "Help us improve by suggesting new features or improvements." : {
+ "Coding Assistant" : {
+ "comment" : "Name of the prompt template for coding-related tasks.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "value" : "Aiutaci a migliorare suggerendo nuove funzionalità o miglioramenti.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Assistente de Programação"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "value" : "Hilf uns, indem du neue Funktionen oder Verbesserungen vorschlägst.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Assistant de codage"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "新機能や改善点の提案でご協力ください。"
+ "value" : "Asistente de codificación"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "value" : "Ajude-nos a melhorar sugerindo novas funcionalidades ou melhorias.",
+ "value" : "Coding Assistant",
"state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ayúdanos a mejorar sugiriendo nuevas funciones o mejoras."
+ "value" : "Βοηθός Κωδικοποίησης"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "value" : "Help ons verbeteren door nieuwe functies of verbeteringen voor te stellen.",
+ "value" : "Coding-Assistent",
"state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "value" : "Βοηθήστε μας να βελτιωθούμε προτείνοντας νέες λειτουργίες ή βελτιώσεις.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "コーディングアシスタント"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "value" : "Aidez-nous à améliorer en suggérant de nouvelles fonctionnalités ou améliorations.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Programmeerassistent"
}
},
"sv" : {
"stringUnit" : {
- "value" : "Hjälp oss förbättra genom att föreslå nya funktioner eller förbättringar.",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "Kodassistent"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Help us improve by suggesting new features or improvements."
+ "value" : "Assistente di Codifica",
+ "state" : "translated"
}
}
}
},
- "You are a data analysis expert. Help interpret data, identify patterns, suggest visualisations, and explain statistical concepts. Provide clear and actionable insights from any data the user shares." : {
- "comment" : "Description of a data analyst assistant.",
+ "Merge and Enable Sync" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sei un esperto di analisi dei dati. Aiuta a interpretare i dati, identificare modelli, suggerire visualizzazioni e spiegare concetti statistici. Fornisci approfondimenti chiari e concreti da qualsiasi dato l’utente condivida."
+ "value" : "Combinar y activar la sincronización",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sie sind ein Experte für Datenanalyse. Helfen Sie dabei, Daten zu interpretieren, Muster zu erkennen, Visualisierungen vorzuschlagen und statistische Konzepte zu erklären. Liefern Sie klare und umsetzbare Erkenntnisse aus allen vom Nutzer bereitgestellten Daten."
+ "value" : "Συγχώνευση και ενεργοποίηση συγχρονισμού"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "あなたはデータ分析の専門家です。データの解釈、パターンの特定、可視化の提案、統計概念の説明を行います。ユーザーが共有するあらゆるデータから明確で実用的な洞察を提供します。"
+ "value" : "Slå ihop och aktivera synkronisering"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "É um especialista em análise de dados. Ajuda a interpretar dados, identificar padrões, sugerir visualizações e explicar conceitos estatísticos. Fornece insights claros e acionáveis a partir de quaisquer dados que o utilizador partilhe."
+ "value" : "Merge and Enable Sync"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eres un experto en análisis de datos. Ayuda a interpretar datos, identificar patrones, sugerir visualizaciones y explicar conceptos estadísticos. Proporciona información clara y accionable a partir de cualquier dato que el usuario comparta."
+ "value" : "Fusionner et activer la synchronisation",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je bent een expert in data-analyse. Help met het interpreteren van data, het identificeren van patronen, het voorstellen van visualisaties en het uitleggen van statistische concepten. Bied duidelijke en bruikbare inzichten uit alle data die de gebruiker deelt."
+ "value" : "Unisci e abilita la sincronizzazione",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Είστε ειδικός στην ανάλυση δεδομένων. Βοηθήστε στην ερμηνεία δεδομένων, την αναγνώριση προτύπων, την πρόταση οπτικοποιήσεων και την εξήγηση στατιστικών εννοιών. Παρέχετε σαφείς και εφαρμόσιμες πληροφορίες από οποιαδήποτε δεδομένα μοιραστεί ο χρήστης."
+ "value" : "統合して同期を有効にする",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vous êtes un expert en analyse de données. Aidez à interpréter les données, identifier les tendances, suggérer des visualisations et expliquer les concepts statistiques. Fournissez des analyses claires et exploitables à partir de toutes les données partagées par l’utilisateur."
+ "value" : "Zusammenführen und Synchronisierung aktivieren"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Du är en expert på dataanalys. Hjälp till att tolka data, identifiera mönster, föreslå visualiseringar och förklara statistiska begrepp. Ge tydliga och användbara insikter från all data som användaren delar."
+ "value" : "Samenvoegen en synchronisatie inschakelen",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "You are a data analysis expert. Help interpret data, identify patterns, suggest visualizations, and explain statistical concepts. Provide clear and actionable insights from any data the user shares."
+ "value" : "Fundir e ativar a sincronização",
+ "state" : "translated"
}
}
}
},
- "Your AI conversations" : {
- "comment" : "A description of the app's privacy policy.",
+ "Submit" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le tue conversazioni con l'IA"
+ "value" : "Enviar",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ihre KI-Gespräche"
+ "value" : "送信"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "あなたのAIとの会話"
+ "value" : "Verzenden"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "As suas conversas com IA"
+ "value" : "Senden"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tus conversaciones con IA"
+ "value" : "Υποβολή"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Jouw AI-gesprekken"
+ "value" : "Skicka"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vos conversations avec l’IA"
+ "value" : "Submit"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Οι συνομιλίες σας με την Τεχνητή Νοημοσύνη"
+ "value" : "Invia"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dina AI-konversationer"
+ "value" : "Enviar"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Your AI conversations"
+ "value" : "Envoyer"
}
}
}
},
- "Profile Sync Conflict" : {
+ "Invalid synchronized data was preserved for: %@." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conflitto di sincronizzazione del profilo"
+ "value" : "無効な同期データが次の項目に保持されました:%@。"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konflikt bei der Profilsynchronisierung"
+ "value" : "Des données synchronisées non valides ont été conservées pour : %@."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "プロフィール同期の競合"
+ "value" : "Ongeldige gesynchroniseerde gegevens zijn bewaard voor: %@."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conflito de sincronização do perfil"
+ "value" : "Ogiltiga synkroniserade data sparades för: %@."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conflicto de sincronización del perfil"
+ "value" : "Foram preservados dados sincronizados inválidos para: %@.",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profielsynchronisatieconflict"
+ "value" : "Invalid synchronized data was preserved for: %@."
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Σύγκρουση συγχρονισμού προφίλ"
+ "value" : "Μη έγκυρα συγχρονισμένα δεδομένα διατηρήθηκαν για: %@.",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conflit de synchronisation du profil"
+ "value" : "Ungültige synchronisierte Daten wurden beibehalten für: %@."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konflikt vid profilsynkronisering"
+ "value" : "Sono stati conservati dati sincronizzati non validi per: %@."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profile Sync Conflict"
+ "value" : "Se conservaron datos sincronizados no válidos para: %@."
}
}
}
},
- "Optional" : {
+ "Add" : {
+ "comment" : "A button that adds a tag.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Opzionale"
+ "value" : "Hinzufügen"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Optional"
+ "value" : "Add",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "任意"
+ "value" : "Προσθήκη",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Opcional"
+ "value" : "Lägg till"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Opcional"
+ "value" : "Adicionar",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Optioneel"
+ "value" : "Toevoegen"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Optionnel"
+ "value" : "Aggiungi"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προαιρετικό"
+ "value" : "追加"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Valfri"
+ "value" : "Ajouter",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Optional"
+ "value" : "Añadir"
}
}
}
},
- "No Memory Items" : {
- "comment" : "A message displayed when the user has no memory items.",
+ "Reset" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessun elemento di memoria"
+ "value" : "Réinitialiser"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keine Speicherobjekte"
+ "value" : "Επαναφορά",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メモリ項目なし"
+ "value" : "Restablecer",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sem itens de memória"
+ "value" : "Återställ"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No hay elementos de memoria"
+ "value" : "Reimposta"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geen geheugenitems"
+ "value" : "Reset",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucun élément mémorisé"
+ "value" : "Zurücksetzen",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν υπάρχουν στοιχεία μνήμης"
+ "value" : "リセット",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga minnesobjekt"
+ "value" : "Repor"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No Memory Items"
+ "value" : "Resetten"
}
}
}
},
- "Share your thoughts..." : {
+ "Chat without saving history" : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Condividi i tuoi pensieri..."
+ "value" : "Chat senza salvare la cronologia",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Teile deine Gedanken..."
+ "value" : "Chat without saving history",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "あなたの考えを共有してください..."
+ "value" : "履歴を保存しないチャット"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Partilhe as suas ideias..."
+ "value" : "Chat sin guardar historial",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Comparte tus pensamientos..."
+ "value" : "Chat sem guardar histórico"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deel je gedachten..."
+ "value" : "Chat ohne Verlauf speichern"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μοιραστείτε τις σκέψεις σας..."
+ "value" : "Συνομιλία χωρίς αποθήκευση ιστορικού",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Partagez vos pensées..."
+ "value" : "Discussion sans enregistrer l’historique",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dela dina tankar..."
+ "value" : "Chatt utan att spara historik",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Share your thoughts..."
+ "value" : "Chatten zonder geschiedenis op te slaan"
}
}
- }
+ },
+ "comment" : "Localized title for a shortcut action that opens a private chat."
},
- "This external tool may access, create, change, or delete data and may incur costs." : {
- "comment" : "A description of the impact of using this tool.",
+ "Results" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Questo strumento esterno potrebbe accedere, creare, modificare o eliminare dati e potrebbe comportare dei costi."
+ "value" : "Results"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dieses externe Tool kann auf Daten zugreifen, Daten erstellen, ändern oder löschen und Kosten verursachen."
+ "value" : "Resultados"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "この外部ツールはデータにアクセス、作成、変更、または削除する場合があり、費用が発生する可能性があります。"
+ "value" : "Ergebnisse"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Esta ferramenta externa pode aceder, criar, alterar ou eliminar dados e pode implicar custos."
+ "value" : "Résultats",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esta herramienta externa puede acceder a datos, crearlos, modificarlos o eliminarlos, y puede generar costes."
+ "value" : "Resultaten"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deze externe tool kan gegevens openen, aanmaken, wijzigen of verwijderen en kan kosten met zich meebrengen."
+ "value" : "結果",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αυτό το εξωτερικό εργαλείο μπορεί να αποκτήσει πρόσβαση, να δημιουργήσει, να τροποποιήσει ή να διαγράψει δεδομένα και ενδέχεται να επιφέρει χρεώσεις."
+ "value" : "Resultados"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cet outil externe peut accéder à vos données, en créer, les modifier ou les supprimer, et peut entraîner des frais."
+ "value" : "Resultat"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Det här externa verktyget kan komma åt, skapa, ändra eller ta bort data och kan medföra kostnader."
+ "value" : "Risultati",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "This external tool may access, create, change, or delete data and may incur costs."
+ "value" : "Αποτελέσματα"
}
}
- }
+ },
+ "comment" : "A label displayed in the footer of a settings section."
},
- "The message to fork from could not be found." : {
- "comment" : "Error message displayed when the message to fork from cannot be found.",
+ "Keep your important conversations close at hand." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile trovare il messaggio da cui fare il fork."
+ "value" : "Keep your important conversations close at hand."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Nachricht, von der verzweigt werden soll, konnte nicht gefunden werden."
+ "value" : "Ha dina viktiga konversationer nära till hands."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "フォーク元のメッセージが見つかりませんでした。"
+ "value" : "Gardez vos conversations importantes à portée de main."
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A mensagem para a qual se pretende criar um fork não foi encontrada."
+ "value" : "Tenha as suas conversas importantes sempre à mão.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pudo encontrar el mensaje del cual bifurcar."
+ "value" : "重要な会話をすぐにアクセスできる場所に保ちましょう"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het bericht om van te forken kon niet worden gevonden."
+ "value" : "Mantén tus conversaciones importantes a mano."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το μήνυμα για διακλάδωση δεν βρέθηκε."
+ "value" : "Tieni le tue conversazioni importanti sempre a portata di mano.",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le message à partir duquel bifurquer est introuvable."
+ "value" : "Houd je belangrijke gesprekken binnen handbereik."
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Meddelandet att förgrena från kunde inte hittas."
+ "value" : "Κρατήστε τις σημαντικές συνομιλίες σας κοντά σας."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The message to fork from could not be found."
+ "value" : "Behalte deine wichtigen Unterhaltungen griffbereit."
}
}
- }
+ },
+ "comment" : "Description of the Pinned Conversations widget."
},
- "There is no synchronized app data in iCloud." : {
+ "Maximum of 3 tags reached. Remove one to add another." : {
+ "comment" : "A message displayed when the user tries to add a tag when they've already reached the maximum of 3.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Non ci sono dati dell’app sincronizzati su iCloud."
+ "value" : "タグは最大3つまでです。追加するには1つ削除してください。",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Es sind keine synchronisierten App-Daten in iCloud vorhanden."
+ "value" : "Maximal 3 Tags erreicht. Entferne einen, um einen weiteren hinzuzufügen.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloudに同期されたアプリデータはありません。"
+ "value" : "Έχετε φτάσει το μέγιστο όριο των 3 ετικετών. Αφαιρέστε μία για να προσθέσετε άλλη.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não existem dados da aplicação sincronizados no iCloud."
+ "value" : "Maximum van 3 tags bereikt. Verwijder er één om een nieuwe toe te voegen."
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No hay datos de la app sincronizados en iCloud."
+ "value" : "Maximalt 3 taggar nådda. Ta bort en för att lägga till en annan."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Er zijn geen gesynchroniseerde appgegevens in iCloud."
+ "value" : "Se alcanzó el máximo de 3 etiquetas. Elimina una para añadir otra."
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucune donnée d’app synchronisée dans iCloud."
+ "value" : "Nombre maximum de 3 tags atteint. Supprimez-en un pour en ajouter un autre.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν υπάρχουν συγχρονισμένα δεδομένα εφαρμογών στο iCloud."
+ "value" : "Raggiunto il massimo di 3 tag. Rimuovi uno per aggiungerne un altro."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Det finns inga synkroniserade appdata i iCloud."
+ "value" : "Máximo de 3 etiquetas atingido. Remova uma para adicionar outra."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "There is no synchronized app data in iCloud."
+ "value" : "Maximum of 3 tags reached. Remove one to add another."
}
}
}
},
- "Deny" : {
- "comment" : "Title of a permission option to deny access to an external tool.",
+ "Photo Library" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nega"
+ "value" : "Bibliothèque de photos"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verweigern"
+ "value" : "Βιβλιοθήκη Φωτογραφιών"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "拒否する"
+ "value" : "Biblioteca de fotos"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recusar"
+ "value" : "Fotobibliotek"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Denegar"
+ "value" : "Libreria foto",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Weigeren"
+ "value" : "Biblioteca de Fotos",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Άρνηση"
+ "value" : "Fotobibliothek"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Refuser"
+ "value" : "写真ライブラリ"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neka"
+ "value" : "Photo Library"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deny"
+ "value" : "Fotobibliotheek"
}
}
}
},
- "Translator" : {
- "comment" : "Name of the prompt template for translating text.",
+ "No speech-to-text model available. Configure a Whisper model in LiteLLM." : {
+ "comment" : "Error message displayed when no speech-to-text model is configured.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Traduttore"
+ "value" : "No hay modelo de reconocimiento de voz disponible. Configure un modelo Whisper en LiteLLM.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Übersetzer"
+ "value" : "Geen spraak-naar-tekstmodel beschikbaar. Stel een Whisper-model in LiteLLM in.",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "翻訳者"
+ "value" : "Ingen tal-till-text-modell tillgänglig. Konfigurera en Whisper-modell i LiteLLM.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tradutor"
+ "value" : "Nessun modello di riconoscimento vocale disponibile. Configura un modello Whisper in LiteLLM."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Traductor"
+ "value" : "Aucun modèle de reconnaissance vocale disponible. Configurez un modèle Whisper dans LiteLLM.",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vertaler"
+ "value" : "No speech-to-text model available. Configure a Whisper model in LiteLLM.",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μεταφραστής"
+ "value" : "Δεν υπάρχει διαθέσιμο μοντέλο ομιλίας σε κείμενο. Διαμορφώστε ένα μοντέλο Whisper στο LiteLLM.",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Traducteur"
+ "value" : "Nenhum modelo de reconhecimento de voz disponível. Configure um modelo Whisper no LiteLLM.",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Översättare"
+ "value" : "音声認識モデルが利用できません。LiteLLMでWhisperモデルを設定してください。",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Translator"
+ "value" : "Kein Speech-to-Text-Modell verfügbar. Konfigurieren Sie ein Whisper-Modell in LiteLLM."
}
}
}
},
- "Deletion Incomplete" : {
+ "Configure your personal context and memory items to personalise model responses." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminazione incompleta"
+ "value" : "Configure o seu contexto pessoal e itens de memória para personalizar as respostas do modelo."
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Löschen nicht abgeschlossen"
+ "value" : "モデルの応答をパーソナライズするために、個人のコンテキストとメモリ項目を設定してください。"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "削除未完了"
+ "value" : "Configureer je persoonlijke context- en geheugenitems om modelantwoorden te personaliseren.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminação incompleta"
+ "value" : "Konfigurieren Sie Ihre persönlichen Kontext- und Speicherobjekte, um die Modellantworten zu personalisieren."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminación incompleta"
+ "value" : "Διαμορφώστε το προσωπικό σας πλαίσιο και τα στοιχεία μνήμης για να εξατομικεύσετε τις απαντήσεις του μοντέλου.",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verwijderen niet voltooid"
+ "value" : "Konfigurera din personliga kontext och minnesobjekt för att anpassa modellens svar."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suppression incomplète"
+ "value" : "Configure your personal context and memory items to personalize model responses."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η διαγραφή δεν ολοκληρώθηκε"
+ "value" : "Configura il tuo contesto personale e gli elementi di memoria per personalizzare le risposte del modello.",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Borttagningen är inte slutförd"
+ "value" : "Configura tu contexto personal y elementos de memoria para personalizar las respuestas del modelo.",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deletion Incomplete"
+ "value" : "Configurez votre contexte personnel et vos éléments de mémoire pour personnaliser les réponses du modèle."
}
}
- }
+ },
+ "comment" : "A description of the personalization section."
},
- "Cancel Recording" : {
- "comment" : "A button that cancels the current recording.",
+ "Attachments (part of conversations)" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Annulla registrazione"
+ "value" : "Anexos (parte das conversas)",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aufnahme abbrechen"
+ "value" : "Pièces jointes (dans les conversations)"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "録音をキャンセル"
+ "value" : "Archivos adjuntos (parte de las conversaciones)",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cancelar Gravação"
+ "value" : "Attachments (part of conversations)",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cancelar grabación"
+ "value" : "Συνημμένα (μέρος των συνομιλιών)",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Opname annuleren"
+ "value" : "Anhänge (Teil von Unterhaltungen)"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ακύρωση εγγραφής"
+ "value" : "会話の一部である添付ファイル"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Annuler l’enregistrement"
+ "value" : "Bijlagen (onderdeel van gesprekken)",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Avbryt inspelning"
+ "value" : "Bilagor (del av konversationer)",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cancel Recording"
+ "value" : "Allegati (parte delle conversazioni)"
}
}
}
},
- "Chat Message" : {
+ "More actions for messages" : {
+ "comment" : "A tip that shows when the user has enabled the message actions.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Messaggio chat"
+ "value" : "Περισσότερες ενέργειες για μηνύματα",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chatnachricht"
+ "value" : "Meer acties voor berichten",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "チャットメッセージ"
+ "value" : "More actions for messages"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mensagem de Chat"
+ "value" : "Altre azioni per i messaggi"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mensaje de chat"
+ "value" : "Plus d’actions pour les messages",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chatbericht"
+ "value" : "Más acciones para mensajes"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Message de chat"
+ "value" : "Mais ações para mensagens",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μήνυμα συνομιλίας"
+ "value" : "Fler åtgärder för meddelanden",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chattmeddelande"
+ "value" : "メッセージの追加操作",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chat Message"
+ "value" : "Weitere Aktionen für Nachrichten"
}
}
}
},
- "The response was cut short. Open the app to see what was received." : {
- "comment" : "Text displayed in a notification when the response to a prompt was cut short.",
+ "We're making a few improvements. Please try again later." : {
+ "comment" : "A message displayed when the app is under maintenance.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La risposta è stata interrotta. Apri l’app per vedere cosa è stato ricevuto."
+ "value" : "Estamos realizando algunas mejoras. Vuelve a intentarlo más tarde.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Antwort wurde abgeschnitten. Öffnen Sie die App, um zu sehen, was empfangen wurde."
+ "value" : "We voeren enkele verbeteringen door. Probeer het later opnieuw."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "応答が途中で切れました。受信内容を確認するにはアプリを開いてください。"
+ "value" : "Vi gör några förbättringar. Försök igen senare."
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A resposta foi interrompida. Abra a app para ver o que foi recebido."
+ "value" : "Stiamo apportando alcuni miglioramenti. Riprova più tardi."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La respuesta se cortó. Abre la app para ver lo recibido."
+ "value" : "We're making a few improvements. Please try again later.",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het antwoord is afgebroken. Open de app om te zien wat er is ontvangen."
+ "value" : "Nous apportons quelques améliorations. Veuillez réessayer plus tard."
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η απάντηση διακόπηκε. Άνοιξε την εφαρμογή για να δεις τι λήφθηκε."
+ "value" : "Κάνουμε μερικές βελτιώσεις. Δοκιμάστε ξανά αργότερα."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La réponse a été interrompue. Ouvrez l’application pour voir ce qui a été reçu."
+ "value" : "Estamos a fazer algumas melhorias. Tente novamente mais tarde."
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Svaret avbröts. Öppna appen för att se vad som mottogs."
+ "value" : "いくつか改善を行っています。しばらくしてからもう一度お試しください。"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The response was cut short. Open the app to see what was received."
+ "value" : "Wir nehmen einige Verbesserungen vor. Bitte versuchen Sie es später erneut."
}
}
}
},
- "Memory" : {
- "comment" : "A title for a screen that lists and manages user-created notes.",
+ "Focused" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Memoria"
+ "value" : "Focused"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Notizen"
+ "value" : "Enfocado"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メモリー"
+ "value" : "Fokussiert"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Memórias"
+ "value" : "Concentrato"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Memoria"
+ "value" : "フォーカス済み"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geheugen"
+ "value" : "Concentré",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mémoire"
+ "value" : "Focado",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μνήμη"
+ "value" : "Gefocust",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Anteckningar"
+ "value" : "Fokuserad",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Notes"
+ "value" : "Εστιασμένο",
+ "state" : "translated"
}
}
}
},
- "MCP Approval Required" : {
- "comment" : "A title for a screen that requires user approval for MCP permissions.",
+ "Help us improve by suggesting new features or improvements." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Approvazione MCP richiesta"
+ "value" : "Ajude-nos a melhorar sugerindo novas funcionalidades ou melhorias."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-Genehmigung erforderlich"
+ "value" : "Aidez-nous à améliorer en suggérant de nouvelles fonctionnalités ou améliorations."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPの承認が必要です"
+ "value" : "Hilf uns, indem du neue Funktionen oder Verbesserungen vorschlägst."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "É necessária a aprovação do MCP"
+ "value" : "新機能や改善点の提案でご協力ください。"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Se requiere aprobación de MCP"
+ "value" : "Help ons verbeteren door nieuwe functies of verbeteringen voor te stellen."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Goedkeuring voor MCP vereist"
+ "value" : "Βοηθήστε μας να βελτιωθούμε προτείνοντας νέες λειτουργίες ή βελτιώσεις.",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Approbation MCP requise"
+ "value" : "Ayúdanos a mejorar sugiriendo nuevas funciones o mejoras.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Απαιτείται έγκριση MCP"
+ "value" : "Aiutaci a migliorare suggerendo nuove funzionalità o miglioramenti.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-godkännande krävs"
+ "value" : "Hjälp oss förbättra genom att föreslå nya funktioner eller förbättringar."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP Approval Required"
+ "value" : "Help us improve by suggesting new features or improvements."
}
}
}
},
- "Waiting for iCloud download" : {
+ "Edit & Resend" : {
+ "comment" : "A label for editing and resending a chat message.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "In attesa del download da iCloud"
+ "value" : "Editar y reenviar",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Warten auf den iCloud-Download"
+ "value" : "Edit & Resend"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudからのダウンロードを待機中"
+ "value" : "Επεξεργασία & Αποστολή ξανά"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A aguardar a transferência do iCloud"
+ "value" : "Modifier et renvoyer"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esperando la descarga de iCloud"
+ "value" : "Bewerken & Opnieuw verzenden"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Wachten op download uit iCloud"
+ "value" : "Bearbeiten & erneut senden"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "En attente du téléchargement depuis iCloud"
+ "value" : "Modifica e rinvia",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αναμονή για λήψη από το iCloud"
+ "value" : "編集して再送信",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Väntar på iCloud-nedladdning"
+ "value" : "Redigera och skicka igen"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Waiting for iCloud download"
+ "value" : "Editar e Reenviar",
+ "state" : "translated"
}
}
}
},
- "A brief description about yourself" : {
- "comment" : "A placeholder for a user's description.",
+ "Update OpenClient to version %@ to continue using the app." : {
+ "comment" : "A description of the update process.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Una breve descrizione di te stesso"
+ "value" : "Update OpenClient to version %@ to continue using the app."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eine kurze Beschreibung von dir"
+ "value" : "Actualiza OpenClient a la versión %@ para seguir usando la aplicación."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "あなたについての簡単な説明"
+ "value" : "Aktualisieren Sie OpenClient auf Version %@, um die App weiterhin zu verwenden.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Uma breve descrição sobre si próprio"
+ "value" : "Uppdatera OpenClient till version %@ för att fortsätta använda appen."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Una breve descripción sobre ti mismo"
+ "value" : "アプリを引き続き使用するには、OpenClientをバージョン%@にアップデートしてください。"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Een korte beschrijving over jezelf"
+ "value" : "Ενημερώστε το OpenClient στην έκδοση %@ για να συνεχίσετε να χρησιμοποιείτε την εφαρμογή."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μια σύντομη περιγραφή για εσάς"
+ "value" : "Atualize o OpenClient para a versão %@ para continuar a utilizar a aplicação."
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Une brève description de vous-même"
+ "value" : "Werk OpenClient bij naar versie %@ om de app te blijven gebruiken."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "En kort beskrivning om dig själv"
+ "value" : "Aggiorna OpenClient alla versione %@ per continuare a utilizzare l’app."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A brief description about yourself"
+ "value" : "Mettez OpenClient à jour vers la version %@ pour continuer à utiliser l’app."
}
}
}
},
- "Nucleus sampling. Lower values make output more focused." : {
+ "Synchronization is incomplete" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Campionamento a nucleo. Valori più bassi rendono l'output più focalizzato."
+ "value" : "Synchronisatie is niet voltooid"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nucleus-Sampling. Niedrigere Werte machen die Ausgabe fokussierter."
+ "value" : "Die Synchronisierung ist nicht abgeschlossen",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ニュークレオスサンプリング。値を低くすると出力がより集中します。"
+ "value" : "Ο συγχρονισμός δεν ολοκληρώθηκε"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Amostragem por núcleo. Valores mais baixos tornam a saída mais focada."
+ "value" : "La sincronización no está completa",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Muestreo de núcleo. Valores más bajos hacen que la salida sea más enfocada."
+ "value" : "Synkroniseringen är inte slutförd",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nucleus sampling. Lagere waarden maken de output gerichter."
+ "value" : "Synchronization is incomplete",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δειγματοληψία πυρήνα. Οι χαμηλότερες τιμές κάνουν την έξοδο πιο εστιασμένη."
+ "value" : "La synchronisation est incomplète"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Échantillonnage nucleus. Des valeurs plus basses rendent la sortie plus ciblée."
+ "value" : "La sincronizzazione è incompleta"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nukleussampling. Lägre värden gör resultatet mer fokuserat."
+ "value" : "A sincronização está incompleta",
+ "state" : "translated"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nucleus sampling. Lower values make the output more focused."
+ "value" : "同期が完了していません",
+ "state" : "translated"
}
}
}
@@ -31809,34 +31773,28 @@
"Fully open source on GitHub — inspect or contribute" : {
"comment" : "A description of the Open Source aspect of OpenClient.",
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Completamente open source su GitHub — ispeziona o contribuisci"
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
"value" : "Vollständig Open Source auf GitHub — ansehen oder mitwirken"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "GitHubで完全にオープンソース — 調査や貢献が可能"
+ "value" : "Fully open source on GitHub — inspect or contribute",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Totalmente open source no GitHub — inspecione ou contribua"
+ "value" : "Completamente open source su GitHub — ispeziona o contribuisci"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Totalmente de código abierto en GitHub: revisa o contribuye"
+ "value" : "Πλήρως ανοιχτού κώδικα στο GitHub — επιθεωρήστε ή συνεισφέρετε",
+ "state" : "translated"
}
},
"nl" : {
@@ -31847,14 +31805,20 @@
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Entièrement open source sur GitHub — inspectez ou contribuez"
+ "value" : "Entièrement open source sur GitHub — inspectez ou contribuez",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
+ "stringUnit" : {
+ "value" : "GitHubで完全にオープンソース — 調査や貢献が可能",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πλήρως ανοιχτού κώδικα στο GitHub — επιθεωρήστε ή συνεισφέρετε"
+ "value" : "Totalmente open source no GitHub — inspecione ou contribua"
}
},
"sv" : {
@@ -31863,1174 +31827,1186 @@
"value" : "Helt öppen källkod på GitHub — granska eller bidra"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fully open source on GitHub — inspect or contribute"
+ "value" : "Totalmente de código abierto en GitHub: revisa o contribuye",
+ "state" : "translated"
}
}
}
},
- "Invalid synchronized data was preserved for: %@." : {
+ "New Tag" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sono stati conservati dati sincronizzati non validi per: %@."
+ "value" : "Nieuwe tag",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ungültige synchronisierte Daten wurden beibehalten für: %@."
+ "value" : "Νέα ετικέτα"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "無効な同期データが次の項目に保持されました:%@。"
+ "value" : "New Tag"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Foram preservados dados sincronizados inválidos para: %@."
+ "value" : "Nouveau tag",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Se conservaron datos sincronizados no válidos para: %@."
+ "value" : "Nueva etiqueta",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ongeldige gesynchroniseerde gegevens zijn bewaard voor: %@."
+ "value" : "新しいタグ"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Des données synchronisées non valides ont été conservées pour : %@."
+ "value" : "Nova Etiqueta"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μη έγκυρα συγχρονισμένα δεδομένα διατηρήθηκαν για: %@."
+ "value" : "Ny tagg",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ogiltiga synkroniserade data sparades för: %@."
+ "value" : "Nuovo tag"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Invalid synchronized data was preserved for: %@."
+ "value" : "Neues Tag"
}
}
- }
+ },
+ "comment" : "A label displayed above a text field to add a new tag."
},
- "Tools Could Not Be Loaded" : {
- "comment" : "A title for a view that displays an error message when loading MCP server tools.",
+ "This tool is unavailable until its server and input schema can be verified." : {
+ "comment" : "A warning message that appears when a tool is unavailable.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile caricare gli strumenti"
+ "value" : "Deze tool is niet beschikbaar totdat de server en het invoerschema ervan kunnen worden geverifieerd."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tools konnten nicht geladen werden"
+ "value" : "Cet outil est indisponible jusqu’à ce que son serveur et son schéma d’entrée puissent être vérifiés.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ツールを読み込めませんでした"
+ "value" : "Αυτό το εργαλείο δεν είναι διαθέσιμο έως ότου επαληθευτούν ο διακομιστής και το σχήμα εισόδου του.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível carregar as ferramentas"
+ "value" : "This tool is unavailable until its server and input schema can be verified."
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudieron cargar las herramientas"
+ "value" : "Esta herramienta no está disponible hasta que se puedan verificar su servidor y esquema de entrada.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hulpmiddelen konden niet worden geladen"
+ "value" : "このツールは、サーバーと入力スキーマを検証できるまで利用できません"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossible de charger les outils"
+ "value" : "Esta ferramenta está indisponível até ser possível verificar o respetivo servidor e esquema de entrada.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η φόρτωση των εργαλείων"
+ "value" : "Det här verktyget är inte tillgängligt förrän dess server och inmatningsschema kan verifieras."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verktygen kunde inte läsas in"
+ "value" : "Questo strumento non è disponibile finché non sarà possibile verificare il relativo server e lo schema di input."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tools Could Not Be Loaded"
+ "value" : "Dieses Tool ist nicht verfügbar, bis sein Server und Eingabeschema verifiziert werden können.",
+ "state" : "translated"
}
}
}
},
- "About" : {
+ "Privacy First" : {
+ "comment" : "A description of the privacy features of OpenClient.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Informazioni"
+ "value" : "Confidentialité prioritaire"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Info"
+ "value" : "Datenschutz zuerst",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "情報"
+ "value" : "Privacy eerst"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Acerca"
+ "value" : "Προτεραιότητα στην ιδιωτικότητα",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Acerca de"
+ "value" : "Privacy First"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Over"
+ "value" : "Privacidade em Primeiro Lugar"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "À propos"
+ "value" : "Privacy prima di tutto",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Σχετικά"
+ "value" : "プライバシー最優先"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Om"
+ "value" : "Sekretess i första hand"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "About"
+ "value" : "Privacidad ante todo"
}
}
}
},
- "Could not read the server response." : {
+ "The profile has conflicting changes with the same revision." : {
+ "comment" : "Error message when a profile change is detected to be conflicting with a previous revision.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile leggere la risposta del server."
+ "value" : "Profilen har motstridiga ändringar med samma revision."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serverantwort konnte nicht gelesen werden."
+ "value" : "Le profil comporte des modifications en conflit avec la même révision.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "サーバーの応答を読み取れませんでした。"
+ "value" : "Il profilo presenta modifiche in conflitto con la stessa revisione.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível ler a resposta do servidor."
+ "value" : "Het profiel bevat conflicterende wijzigingen met dezelfde revisie.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pudo leer la respuesta del servidor."
+ "value" : "プロフィールに同じリビジョンとの競合する変更があります。"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kan de serverreactie niet lezen."
+ "value" : "O perfil tem alterações em conflito com a mesma revisão."
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η ανάγνωση της απάντησης του διακομιστή."
+ "value" : "El perfil tiene cambios en conflicto con la misma revisión."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossible de lire la réponse du serveur."
+ "value" : "The profile has conflicting changes with the same revision."
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kunde inte läsa serverns svar."
+ "value" : "Das Profil enthält widersprüchliche Änderungen mit derselben Revision.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Could not read the server response."
+ "value" : "Το προφίλ έχει αντικρουόμενες αλλαγές με την ίδια αναθεώρηση.",
+ "state" : "translated"
}
}
}
},
- "Open **Shortcuts** and create a new shortcut." : {
- "comment" : "Step 1 of creating a shortcut using the Shortcuts app.",
+ "Your local profile and iCloud profile have different content with the same revision. Which profile would you like to keep?" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apri **Comandi** e crea un nuovo comando."
+ "value" : "Tu perfil local y tu perfil de iCloud tienen contenido diferente con la misma revisión. ¿Qué perfil quieres conservar?"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Öffne **Kurzbefehle** und erstelle einen neuen Kurzbefehl."
+ "value" : "Your local profile and iCloud profile have different content with the same revision. Which profile would you like to keep?"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "**ショートカット**を開き、新しいショートカットを作成します。"
+ "value" : "Din lokala profil och din iCloud-profil har olika innehåll med samma revision. Vilken profil vill du behålla?",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abra as **Atalhos** e crie um novo atalho."
+ "value" : "Votre profil local et votre profil iCloud contiennent des données différentes avec la même révision. Quel profil souhaitez-vous conserver ?",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abre **Atajos** y crea un nuevo atajo."
+ "value" : "Je lokale profiel en je iCloud-profiel bevatten verschillende gegevens met dezelfde revisie. Welk profiel wil je behouden?",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Open **Opdrachten** en maak een nieuwe opdracht aan."
+ "value" : "Ihr lokales Profil und Ihr iCloud-Profil enthalten bei derselben Revision unterschiedliche Inhalte. Welches Profil möchten Sie behalten?"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Άνοιξε τις **Συντομεύσεις** και δημιούργησε μια νέα συντόμευση."
+ "value" : "Το τοπικό προφίλ και το προφίλ iCloud έχουν διαφορετικό περιεχόμενο με την ίδια αναθεώρηση. Ποιο προφίλ θέλετε να διατηρήσετε;"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ouvrez **Raccourcis** et créez un nouveau raccourci."
+ "value" : "ローカルプロフィールとiCloudプロフィールの内容が同じリビジョンで異なります。どちらのプロフィールを残しますか?"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Öppna **Genvägar** och skapa en ny genväg."
+ "value" : "Il tuo profilo locale e il profilo iCloud hanno contenuti diversi con la stessa revisione. Quale profilo vuoi mantenere?",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Open **Shortcuts** and create a new shortcut."
+ "value" : "O seu perfil local e o perfil do iCloud têm conteúdos diferentes com a mesma revisão. Que perfil pretende manter?"
}
}
}
},
- "http:\/\/localhost:4000" : {
- "comment" : "A placeholder URL for the server URL field.",
+ "Output tokens" : {
+ "comment" : "A label for the maximum number of output tokens a model can generate.",
+ "shouldTranslate" : false
+ },
+ "Scroll the share sheet and tap **OpenClient**." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "http:\/\/localhost:4000"
+ "value" : "Faites défiler la feuille de partage et appuyez sur **OpenClient**."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "http:\/\/localhost:4000"
+ "value" : "Desplaza la hoja para compartir y toca **OpenClient**."
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "http:\/\/localhost:4000"
+ "value" : "Scorri il foglio di condivisione e tocca **OpenClient**."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "http:\/\/localhost:4000"
+ "value" : "Bläddra i delningsmenyn och tryck på **OpenClient**."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "http:\/\/localhost:4000"
+ "value" : "共有シートをスクロールして**OpenClient**をタップしてください。"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "http:\/\/localhost:4000"
+ "value" : "Blättern Sie im Freigabeblatt und tippen Sie auf **OpenClient**."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "http:\/\/localhost:4000"
+ "value" : "Desloque a folha de partilha e toque em **OpenClient**.",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "http:\/\/localhost:4000"
+ "value" : "Scroll door het deelvenster en tik op **OpenClient**."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "http:\/\/localhost:4000"
+ "value" : "Scroll the share sheet and tap **OpenClient**."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "http:\/\/localhost:4000"
+ "value" : "Κύλιση στο φύλλο κοινής χρήσης και πατήστε **OpenClient**."
}
}
}
},
- "The MCP server reported a tool error." : {
- "comment" : "Error message when an MCP tool call fails.",
+ "Purple" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il server MCP ha segnalato un errore dello strumento."
+ "value" : "Lila"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Der MCP-Server meldete einen Werkzeugfehler."
+ "value" : "Violet",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPサーバーがツールエラーを報告しました。"
+ "value" : "Púrpura"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O servidor MCP reportou um erro na ferramenta."
+ "value" : "Paars",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El servidor MCP informó un error de herramienta."
+ "value" : "Viola"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De MCP-server meldde een toolfout."
+ "value" : "パープル",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ο διακομιστής MCP ανέφερε σφάλμα εργαλείου."
+ "value" : "Roxo"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le serveur MCP a signalé une erreur d’outil."
+ "value" : "Lila",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-servern rapporterade ett verktygsfel."
+ "value" : "Purple"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The MCP server reported a tool error."
+ "value" : "Μωβ"
}
}
- }
+ },
+ "comment" : "Name of a tag color."
},
- "Generated Image" : {
- "comment" : "Name of the image attachment displayed in the chat.",
+ "Input tokens" : {
+ "shouldTranslate" : false,
+ "comment" : "A label for the maximum number of input tokens for a model."
+ },
+ "Here is a concise summary of the meeting." : {
+ "comment" : "Last message preview text for a conversation.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Immagine generata"
+ "value" : "Here is a concise summary of the meeting"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Generiertes Bild"
+ "value" : "Voici un résumé concis de la réunion"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "生成画像"
+ "value" : "Här är en kort sammanfattning av mötet."
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Imagem Gerada"
+ "value" : "Ecco un riassunto conciso della riunione",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Imagen generada"
+ "value" : "Εδώ είναι μια σύντομη περίληψη της συνάντησης."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gegenereerde afbeelding"
+ "value" : "Aquí un resumen conciso de la reunión.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Παραγόμενη εικόνα"
+ "value" : "Aqui está um resumo conciso da reunião."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image générée"
+ "value" : "会議の簡潔な要約です"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Genererad bild"
+ "value" : "Hier ist eine kurze Zusammenfassung des Treffens.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Generated Image"
+ "value" : "Hier is een beknopte samenvatting van de vergadering."
}
}
}
},
- "The memory change could not be saved. Please try again." : {
- "comment" : "Error message displayed when an error occurs while saving a memory change.",
+ "Thank you! ☕" : {
+ "comment" : "A title for a system alert that appears after a user purchases a tip.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Non è stato possibile salvare la modifica della memoria. Riprova."
+ "value" : "Bedankt! ☕",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Speicheränderung konnte nicht gespeichert werden. Bitte versuchen Sie es erneut."
+ "value" : "Ευχαριστούμε! ☕"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メモリの変更を保存できませんでした。もう一度お試しください。"
+ "value" : "Merci ! ☕"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível guardar a alteração da memória. Tente novamente."
+ "value" : "Thank you! ☕",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se ha podido guardar el cambio de memoria. Inténtalo de nuevo."
+ "value" : "¡Gracias! ☕",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De geheugenwijziging kon niet worden opgeslagen. Probeer het opnieuw."
+ "value" : "ありがとうございます!☕"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La modification de la mémoire n’a pas pu être enregistrée. Veuillez réessayer."
+ "value" : "Obrigado! ☕",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η αποθήκευση της αλλαγής μνήμης. Δοκιμάστε ξανά."
+ "value" : "Tack! ☕"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Minnesändringen kunde inte sparas. Försök igen."
+ "value" : "Grazie! ☕",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The memory change could not be saved. Please try again."
+ "value" : "Danke! ☕",
+ "state" : "translated"
}
}
}
},
- "Recent" : {
- "comment" : "A heading for the recent conversations section.",
+ "Review each external tool before anything is executed." : {
+ "comment" : "A description of the warning displayed in the MCP authorization view.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recenti"
+ "value" : "Review each external tool before anything is executed."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Neueste"
+ "value" : "Examinez chaque outil externe avant toute exécution.",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "最近の会話"
+ "value" : "Granska varje externt verktyg innan något körs.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recentes"
+ "value" : "Esamina ogni strumento esterno prima di eseguire qualsiasi operazione."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Recientes"
+ "value" : "Ελέγξτε κάθε εξωτερικό εργαλείο πριν από οποιαδήποτε εκτέλεση.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recentelijk"
+ "value" : "Revisa cada herramienta externa antes de ejecutar cualquier acción"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πρόσφατα"
+ "value" : "実行する前に、各外部ツールを確認してください。"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Récent"
+ "value" : "Reveja cada ferramenta externa antes de executar qualquer ação.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Senaste"
+ "value" : "Überprüfe jedes externe Tool, bevor etwas ausgeführt wird."
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Recent"
+ "value" : "Controleer elk extern hulpprogramma voordat er iets wordt uitgevoerd."
}
}
}
},
- "Delete All Synchronized Data" : {
+ "Summarizer" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina tutti i dati sincronizzati"
+ "value" : "Sumarizador"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alle synchronisierten Daten löschen"
+ "value" : "Summarizer"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期済みデータをすべて削除"
+ "value" : "要約ツール",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar todos os dados sincronizados"
+ "value" : "Résumé"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar todos los datos sincronizados"
+ "value" : "Samenvatter"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alle gesynchroniseerde gegevens verwijderen"
+ "value" : "Zusammenfasser"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαγραφή όλων των συγχρονισμένων δεδομένων"
+ "value" : "Sintetizzatore"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Supprimer toutes les données synchronisées"
+ "value" : "Περίληψη",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Radera alla synkroniserade data"
+ "value" : "Sammanfattare"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Delete All Synchronized Data"
+ "value" : "Resumidor"
}
}
- }
+ },
+ "comment" : "Name of a prompt template that summarizes text."
},
- "Your comment" : {
+ "~$%.4f" : {
+ "comment" : "A monetary value displayed in the chat interface.",
+ "shouldTranslate" : false
+ },
+ "per year" : {
+ "comment" : "A description of the billing period for an annual subscription.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Il tuo commento"
+ "value" : "per year",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ihr Kommentar"
+ "value" : "per år",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "あなたのコメント"
+ "value" : "all’anno"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O seu comentário"
+ "value" : "por ano"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tu comentario"
+ "value" : "par an"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Je opmerking"
+ "value" : "年額"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το σχόλιό σας"
+ "value" : "per jaar"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Votre commentaire"
+ "value" : "por año",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Din kommentar"
+ "value" : "pro Jahr",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Your comment"
+ "value" : "ανά έτος",
+ "state" : "translated"
}
}
}
},
- "Choose the tag shown by the conversations widget." : {
- "comment" : "Title of the widget configuration intent.",
+ "Invalid API key. Please check your credentials." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Scegli il tag mostrato dal widget delle conversazioni"
+ "value" : "Invalid API key. Please check your credentials."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Wähle das vom Konversations-Widget angezeigte Tag."
+ "value" : "Chiave API non valida. Controlla le tue credenziali."
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会話ウィジェットで表示するタグを選択してください"
+ "value" : "無効なAPIキーです。認証情報を確認してください。"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Escolha a etiqueta mostrada pelo widget de conversas"
+ "value" : "Clave API no válida. Por favor, verifica tus credenciales.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elige la etiqueta que muestra el widget de conversaciones"
+ "value" : "Chave API inválida. Por favor, verifique as suas credenciais.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kies de tag die door de gesprekken-widget wordt weergegeven"
+ "value" : "Ungültiger API-Schlüssel. Bitte überprüfen Sie Ihre Zugangsdaten."
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Choisissez l’étiquette affichée par le widget de conversations"
+ "value" : "Μη έγκυρο κλειδί API. Ελέγξτε τα διαπιστευτήριά σας.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επιλέξτε την ετικέτα που εμφανίζεται στο widget συνομιλιών"
+ "value" : "Clé API invalide. Veuillez vérifier vos identifiants."
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Välj taggen som visas i konversationswidgeten"
+ "value" : "Ogiltig API-nyckel. Kontrollera dina uppgifter."
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Choose the tag displayed by the conversations widget"
+ "value" : "Ongeldige API-sleutel. Controleer uw gegevens.",
+ "state" : "translated"
}
}
}
},
- "iCloud Unavailable" : {
+ "Server-provided description: %@" : {
+ "comment" : "A label that displays a server-provided description of a tool.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud non disponibile"
+ "value" : "Περιγραφή παρεχόμενη από τον διακομιστή: %@"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud nicht verfügbar"
+ "value" : "Descrizione fornita dal server: %@",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloudを利用できません"
+ "value" : "Descripción proporcionada por el servidor: %@",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud indisponível"
+ "value" : "Door de server verstrekte beschrijving: %@"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud no disponible"
+ "value" : "サーバー提供の説明:%@",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud niet beschikbaar"
+ "value" : "Vom Server bereitgestellte Beschreibung: %@",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud indisponible"
+ "value" : "Description fournie par le serveur : %@"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το iCloud δεν είναι διαθέσιμο"
+ "value" : "Descrição fornecida pelo servidor: %@",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud är inte tillgängligt"
+ "value" : "Server-provided description: %@",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud Unavailable"
+ "value" : "Serverbeskrivning: %@",
+ "state" : "translated"
}
}
}
},
- "Orange" : {
- "comment" : "Name of the color orange.",
+ "A local prompt template file is invalid and was preserved." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Arancione"
+ "value" : "Eine lokale Prompt-Vorlagendatei ist ungültig und wurde beibehalten."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Orange"
+ "value" : "Un fichier de modèle d’invite local n’est pas valide et a été conservé."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "オレンジ"
+ "value" : "Un archivo de plantilla de mensajes local no es válido y se conservó."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Laranja"
+ "value" : "Een lokaal bestand met een promptsjabloon is ongeldig en is behouden.",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Naranja"
+ "value" : "Un file modello di prompt locale non è valido ed è stato conservato."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Oranje"
+ "value" : "ローカルのプロンプトテンプレートファイルが無効なため、保持されました。"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Orange"
+ "value" : "Um ficheiro de modelo de pedido local é inválido e foi preservado.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Πορτοκαλί"
+ "value" : "En lokal mallfil för ledtext är ogiltig och har bevarats.",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Orange"
+ "value" : "A local prompt template file is invalid and was preserved."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Orange"
+ "value" : "Ένα τοπικό αρχείο προτύπου προτροπής δεν είναι έγκυρο και διατηρήθηκε.",
+ "state" : "translated"
}
}
}
},
- "MCP servers unavailable" : {
+ "per month" : {
+ "comment" : "A description of the billing period for a monthly subscription.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Server MCP non disponibili"
+ "value" : "per month"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP-Server nicht verfügbar"
+ "value" : "per maand",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "value" : "MCPサーバーを利用できません",
+ "value" : "per månad",
"state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "value" : "Servidores MCP indisponíveis",
+ "value" : "al mese",
"state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Servidores MCP no disponibles"
+ "value" : "ανά μήνα",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "value" : "MCP-servers niet beschikbaar",
+ "value" : "por mês",
"state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "value" : "Οι διακομιστές MCP δεν είναι διαθέσιμοι",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "月額"
}
},
"fr" : {
"stringUnit" : {
- "value" : "Serveurs MCP indisponibles",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "par mois"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "value" : "MCP-servrar är inte tillgängliga",
+ "value" : "por mes",
"state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "value" : "MCP servers unavailable",
- "state" : "translated"
+ "state" : "translated",
+ "value" : "pro Monat"
}
}
- },
- "comment" : "A label that indicates that MCP servers are unavailable."
+ }
},
- "Each conversation can use a different model. Features depend on its capabilities." : {
- "comment" : "A description of the features available for each model.",
+ "File" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ogni conversazione può utilizzare un modello diverso. Le funzionalità dipendono dalle sue capacità."
+ "value" : "Αρχείο"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Jede Unterhaltung kann ein anderes Modell verwenden. Die Funktionen hängen von dessen Fähigkeiten ab."
+ "value" : "ファイル"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "各会話は異なるモデルを使用できます。機能はその能力に依存します。"
+ "value" : "Datei"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cada conversa pode usar um modelo diferente. As funcionalidades dependem das suas capacidades."
+ "value" : "Ficheiro",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cada conversación puede usar un modelo diferente. Las funciones dependen de sus capacidades."
+ "value" : "Archivo"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elke conversatie kan een ander model gebruiken. Functies zijn afhankelijk van de mogelijkheden ervan."
+ "value" : "Fil",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κάθε συνομιλία μπορεί να χρησιμοποιεί διαφορετικό μοντέλο. Οι λειτουργίες εξαρτώνται από τις δυνατότητές του."
+ "value" : "Fichier"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chaque conversation peut utiliser un modèle différent. Les fonctionnalités dépendent de ses capacités."
+ "value" : "File",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Varje konversation kan använda en annan modell. Funktionerna beror på dess kapacitet."
+ "value" : "Bestand"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Each conversation can use a different model. Features depend on its capabilities."
+ "value" : "File"
}
}
}
},
- "No speech-to-text model available. Configure a Whisper model in LiteLLM." : {
- "comment" : "Error message displayed when no speech-to-text model is configured.",
+ "Brainstorm ideas for a project" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessun modello di riconoscimento vocale disponibile. Configura un modello Whisper in LiteLLM."
+ "value" : "Καταιγισμός ιδεών για ένα έργο"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kein Speech-to-Text-Modell verfügbar. Konfigurieren Sie ein Whisper-Modell in LiteLLM."
+ "value" : "Trouver des idées pour un projet"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "音声認識モデルが利用できません。LiteLLMでWhisperモデルを設定してください。"
+ "value" : "Brainstorm ideas for a project",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nenhum modelo de reconhecimento de voz disponível. Configure um modelo Whisper no LiteLLM."
+ "value" : "Genera idee per un progetto"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No hay modelo de reconocimiento de voz disponible. Configure un modelo Whisper en LiteLLM."
+ "value" : "Bedenk ideeën voor een project",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geen spraak-naar-tekstmodel beschikbaar. Stel een Whisper-model in LiteLLM in."
+ "value" : "Generar ideas para un proyecto"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν υπάρχει διαθέσιμο μοντέλο ομιλίας σε κείμενο. Διαμορφώστε ένα μοντέλο Whisper στο LiteLLM."
+ "value" : "Gerar ideias para um projeto",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aucun modèle de reconnaissance vocale disponible. Configurez un modèle Whisper dans LiteLLM."
+ "value" : "Brainstorma idéer för ett projekt"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ingen tal-till-text-modell tillgänglig. Konfigurera en Whisper-modell i LiteLLM."
+ "value" : "プロジェクトのアイデアをブレインストーミングする"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No speech-to-text model available. Configure a Whisper model in LiteLLM."
+ "value" : "Ideen für ein Projekt sammeln",
+ "state" : "translated"
}
}
}
@@ -33044,1338 +33020,1350 @@
"value" : "Libreria di Prompt"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Prompt-Bibliothek"
+ "value" : "Promptbibliotheek"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "プロンプトライブラリ"
+ "value" : "Βιβλιοθήκη Ερωτημάτων",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Biblioteca de Prompts"
+ "value" : "Biblioteca de prompts"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Biblioteca de prompts"
+ "value" : "Prompt Library"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Promptbibliotheek"
+ "value" : "Bibliothèque de prompts",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Βιβλιοθήκη Ερωτημάτων"
+ "value" : "Biblioteca de Prompts",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bibliothèque de prompts"
+ "value" : "Prompt-Bibliothek"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Promptbibliotek"
+ "value" : "プロンプトライブラリ",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Prompt Library"
+ "value" : "Promptbibliotek",
+ "state" : "translated"
}
}
}
},
- "Code" : {
+ "The agent reached its maximum number of steps." : {
+ "comment" : "Error message displayed when the agent has reached its maximum number of steps.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Codice"
+ "value" : "Ο πράκτορας έφτασε στον μέγιστο αριθμό βημάτων."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Code"
+ "value" : "The agent has reached its maximum number of steps."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "コード"
+ "value" : "Der Agent hat die maximale Anzahl an Schritten erreicht."
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Código"
+ "value" : "L'agente ha raggiunto il numero massimo di passi."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Código"
+ "value" : "エージェントは最大ステップ数に達しました。"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Code"
+ "value" : "El agente alcanzó su número máximo de pasos."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Code"
+ "value" : "O agente atingiu o número máximo de passos."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κωδικός"
+ "value" : "Agenten har nått sitt maximala antal steg."
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kod"
+ "value" : "De agent heeft het maximale aantal stappen bereikt."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Code"
+ "value" : "L'agent a atteint son nombre maximal d'étapes.",
+ "state" : "translated"
}
}
}
},
- "Enter a brief title for your suggestion" : {
+ "Unknown" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inserisci un titolo breve per il tuo suggerimento"
+ "value" : "Άγνωστο",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geben Sie einen kurzen Titel für Ihren Vorschlag ein"
+ "value" : "Sconosciuto",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "提案の簡単なタイトルを入力してください"
+ "value" : "Desconocido",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Introduza um título breve para a sua sugestão"
+ "value" : "Onbekend",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Introduce un título breve para tu sugerencia"
+ "value" : "不明",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voer een korte titel voor uw suggestie in"
+ "value" : "Unbekannt"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εισαγάγετε έναν σύντομο τίτλο για την πρότασή σας"
+ "value" : "Inconnu"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Entrez un titre bref pour votre suggestion"
+ "value" : "Desconhecido",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ange en kort titel för ditt förslag"
+ "value" : "Unknown"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Enter a brief title for your suggestion"
+ "value" : "Okänd",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label for an unknown LLM model."
},
- "Loading..." : {
- "comment" : "A loading indicator displayed when fetching search tools.",
+ "Support" : {
+ "comment" : "A heading for the support options in the settings.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Caricamento..."
+ "value" : "Assistance",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lädt..."
+ "value" : "Soporte"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "読み込み中..."
+ "value" : "Υποστήριξη"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A carregar..."
+ "value" : "Support"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cargando..."
+ "value" : "Supporto"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bezig met laden..."
+ "value" : "Support",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Φόρτωση..."
+ "value" : "Support"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chargement..."
+ "value" : "サポート"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Läser in..."
+ "value" : "Suporte"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Loading..."
+ "value" : "Ondersteuning",
+ "state" : "translated"
}
}
}
},
- "Pricing" : {
- "comment" : "A section that displays the pricing information for a model.",
+ "Violet" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Prezzi"
+ "value" : "Violet"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Preise"
+ "value" : "Violett"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "価格情報"
+ "value" : "Violet"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Preços"
+ "value" : "Μωβ",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Precios"
+ "value" : "Violeta",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Prijzen"
+ "value" : "Violet",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τιμολόγηση"
+ "value" : "Viola",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tarification"
+ "value" : "紫色"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Prissättning"
+ "value" : "Lila"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pricing"
+ "value" : "Violeta"
}
}
- }
+ },
+ "comment" : "A color name."
},
- "New chat with text" : {
- "comment" : "A description of how to open a new chat with a text message.",
+ "The cloud deletion could not be completed because iCloud is unavailable." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nuova chat con testo"
+ "value" : "Molnraderingen kunde inte slutföras eftersom iCloud inte är tillgängligt.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neuer Chat mit Text"
+ "value" : "La suppression dans le cloud n’a pas pu être effectuée, car iCloud est indisponible."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "テキストで新しいチャットを開始"
+ "value" : "No se pudo completar la eliminación en la nube porque iCloud no está disponible."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nova conversa com texto"
+ "value" : "De verwijdering uit de cloud kon niet worden voltooid omdat iCloud niet beschikbaar is."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nuevo chat con texto"
+ "value" : "The cloud deletion could not be completed because iCloud is unavailable."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nieuw gesprek met tekst"
+ "value" : "Die Löschung aus der Cloud konnte nicht abgeschlossen werden, da iCloud nicht verfügbar ist.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Νέα συνομιλία με κείμενο"
+ "value" : "Impossibile completare l’eliminazione dal cloud perché iCloud non è disponibile."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nouvelle conversation avec texte"
+ "value" : "Não foi possível concluir a eliminação na nuvem porque o iCloud está indisponível."
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ny chatt med text"
+ "value" : "Δεν ήταν δυνατή η ολοκλήρωση της διαγραφής από το cloud, επειδή το iCloud δεν είναι διαθέσιμο.",
+ "state" : "translated"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "New chat with text"
+ "value" : "iCloudを利用できないため、クラウドの削除を完了できませんでした。",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error description for when the cloud deletion fails because iCloud is unavailable."
},
- "Tag" : {
- "comment" : "Label for the tag selection in the conversations widget.",
+ "Models" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tag"
+ "value" : "Modellen",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tag"
+ "value" : "Models",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "タグ"
+ "value" : "Modelli",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Etiqueta"
+ "value" : "Modeller"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Etiqueta"
+ "value" : "Μοντέλα"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Label"
+ "value" : "Modelos",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ετικέτα"
+ "value" : "Modèles",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Étiquette"
+ "value" : "モデル"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tagg"
+ "value" : "Modelos"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tag"
+ "value" : "Modelle"
}
}
}
},
- "Unavailable" : {
- "comment" : "A label displayed in a list item that indicates that a server is unavailable.",
+ "MCP tools could not be loaded. Check the server connection and try again." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Non disponibile"
+ "value" : "MCP-tools konden niet worden geladen. Controleer de serververbinding en probeer het opnieuw.",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nicht verfügbar"
+ "value" : "No se han podido cargar las herramientas MCP. Comprueba la conexión con el servidor y vuelve a intentarlo.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "利用不可"
+ "value" : "Δεν ήταν δυνατή η φόρτωση των εργαλείων MCP. Ελέγξτε τη σύνδεση με τον διακομιστή και δοκιμάστε ξανά.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Indisponível"
+ "value" : "MCPツールを読み込めませんでした。サーバー接続を確認して、もう一度お試しください。",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No disponible"
+ "value" : "MCP-Tools konnten nicht geladen werden. Überprüfe die Serververbindung und versuche es erneut."
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Niet beschikbaar"
+ "value" : "Impossibile caricare gli strumenti MCP. Controlla la connessione al server e riprova.",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Indisponible"
+ "value" : "MCP tools could not be loaded. Check the server connection and try again."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μη διαθέσιμος"
+ "value" : "MCP-verktygen kunde inte läsas in. Kontrollera serveranslutningen och försök igen."
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inte tillgänglig"
+ "value" : "Les outils MCP n’ont pas pu être chargés. Vérifiez la connexion au serveur et réessayez."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Unavailable"
+ "value" : "Não foi possível carregar as ferramentas MCP. Verifique a ligação ao servidor e tente novamente.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error message when MCP is not available."
},
- "Save" : {
+ "Only completed" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Salva"
+ "value" : "完了のみ",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Speichern"
+ "value" : "Μόνο ολοκληρωμένα"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "保存"
+ "value" : "Alleen voltooid",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Guardar"
+ "value" : "Endast slutförda"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Guardar"
+ "value" : "Apenas concluídos"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Opslaan"
+ "value" : "Only completed"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αποθήκευση"
+ "value" : "Solo completados",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enregistrer"
+ "value" : "Solo completati"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Spara"
+ "value" : "Nur abgeschlossen",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Save"
+ "value" : "Uniquement terminés"
}
}
}
},
- "Listen" : {
- "comment" : "A button that triggers the speech-to-text feature.",
+ "Show Token Usage" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ascolta"
+ "value" : "Tokengebruik weergeven"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anhören"
+ "value" : "Mostrar uso de tokens"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Εμφάνιση χρήσης διακριτικού",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "聞く"
+ "value" : "トークン使用量を表示"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ouvir"
+ "value" : "Tokenverbrauch anzeigen",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Escuchar"
+ "value" : "Mostra utilizzo token"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Luisteren"
+ "value" : "Show Token Usage"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Écouter"
+ "value" : "Visa tokenanvändning"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Άκουσμα"
+ "value" : "Afficher l’utilisation des jetons",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lyssna"
+ "value" : "Mostrar Utilização de Token"
}
- },
+ }
+ },
+ "comment" : "A toggle that shows the number of tokens remaining in the current token."
+ },
+ "%lld\/%lld" : {
+ "comment" : "A label showing the current character count and the maximum allowed.",
+ "localizations" : {
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Listen"
+ "state" : "new",
+ "value" : "%1$lld\/%2$lld"
}
}
- }
+ },
+ "shouldTranslate" : false
},
- "You're welcome!" : {
- "comment" : "A button that dismisses a thank you alert.",
+ "You are a professional email writing assistant. Draft clear, concise, and appropriately toned emails based on the user's brief. Adapt the tone (formal, casual, or persuasive) to the context described." : {
+ "comment" : "Description of an email composer prompt template.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Prego!"
+ "value" : "Eres un asistente profesional para redactar correos electrónicos. Redacta correos claros, concisos y con el tono adecuado según el resumen del usuario. Adapta el tono (formal, informal o persuasivo) al contexto descrito.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gern geschehen!"
+ "value" : "Vous êtes un assistant professionnel de rédaction d’e-mails. Rédigez des e-mails clairs, concis et au ton approprié selon le résumé de l’utilisateur. Adaptez le ton (formel, informel ou persuasif) au contexte décrit."
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "どういたしまして!"
+ "value" : "É um assistente profissional de redação de emails. Elabore emails claros, concisos e com o tom adequado com base no resumo do utilizador. Adapte o tom (formal, informal ou persuasivo) ao contexto descrito."
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De nada!"
+ "value" : "You are a professional email writing assistant. Draft clear, concise, and appropriately toned emails based on the user's brief. Adapt the tone (formal, casual, or persuasive) to the context described."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "¡De nada!"
+ "value" : "Είστε επαγγελματίας βοηθός σύνταξης email. Δημιουργήστε σαφή, συνοπτικά και κατάλληλα διατυπωμένα email βάσει της περίληψης του χρήστη. Προσαρμόστε τον τόνο (επίσημο, ανεπίσημο ή πειστικό) ανάλογα με το περιγραφόμενο πλαίσιο.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Graag gedaan!"
+ "value" : "Sie sind ein professioneller Assistent zum Verfassen von E-Mails. Erstellen Sie klare, prägnante und angemessen formulierte E-Mails basierend auf der Kurzzusammenfassung des Nutzers. Passen Sie den Ton (formell, locker oder überzeugend) an den beschriebenen Kontext an."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De rien !"
+ "value" : "あなたはプロのメール作成アシスタントです。ユーザーの要望に基づき、明確で簡潔かつ適切なトーンのメールを作成します。状況に応じてトーン(フォーマル、カジュアル、説得力のある)を調整します。",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Παρακαλώ!"
+ "value" : "Je bent een professionele e-mailassistent. Stel heldere, beknopte en passend getoonde e-mails op op basis van de samenvatting van de gebruiker. Pas de toon (formeel, informeel of overtuigend) aan op de beschreven context."
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Varsågod!"
+ "value" : "Du är en professionell assistent för e-postskrivning. Skapa tydliga, koncisa och passande tonade e-postmeddelanden baserat på användarens sammanfattning. Anpassa tonen (formell, avslappnad eller övertygande) efter den beskrivna kontexten."
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "You're welcome!"
+ "value" : "Sei un assistente professionale per la scrittura di email. Redigi email chiare, concise e con un tono adeguato in base al breve riassunto fornito dall’utente. Adatti il tono (formale, informale o persuasivo) al contesto descritto."
}
}
}
},
- "Model Parameters" : {
- "comment" : "A title for a view that allows the user to configure the parameters of a chat model.",
+ "Orange" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Parametri del modello"
+ "value" : "Orange"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Modellparameter"
+ "value" : "Naranja"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "モデルパラメータ"
+ "value" : "Πορτοκαλί",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Parâmetros do Modelo"
+ "value" : "Orange"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Parámetros del modelo"
+ "value" : "Arancione"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modelparameters"
+ "value" : "Orange",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Paramètres du modèle"
+ "value" : "Laranja"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Παράμετροι Μοντέλου"
+ "value" : "オレンジ",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Modellparametrar"
+ "value" : "Orange",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Model Parameters"
+ "value" : "Oranje",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Name of the color orange."
},
- "Server URL" : {
+ "Imported %lld conversations, restored %lld attachments, and skipped %lld attachments." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "URL del server"
+ "value" : "Imported %1$lld conversations, restored %2$lld attachments, and skipped %3$lld attachments.",
+ "state" : "new"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Server-URL"
+ "value" : "Importate %1$lld conversazioni, ripristinati %2$lld allegati e saltati %3$lld allegati.",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サーバーURL"
+ "value" : "%1$lld 件の会話をインポートし、%2$lld 件の添付ファイルを復元し、%3$lld 件の添付ファイルをスキップしました。"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "URL do servidor"
+ "value" : "Importadas %1$lld conversas, restaurados %2$lld anexos e ignorados %3$lld anexos.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "URL del servidor"
+ "value" : "Se importaron %1$lld conversaciones, se restauraron %2$lld archivos adjuntos y se omitieron %3$lld archivos adjuntos."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Server-URL"
+ "value" : "Εισήχθησαν %1$lld συνομιλίες, αποκαταστάθηκαν %2$lld συνημμένα και παραλείφθηκαν %3$lld συνημμένα.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διεύθυνση URL διακομιστή"
+ "value" : "Importerade %1$lld konversationer, återställde %2$lld bilagor och hoppade över %3$lld bilagor."
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "URL du serveur"
+ "value" : "%1$lld conversations importées, %2$lld pièces jointes restaurées, et %3$lld pièces jointes ignorées.",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Server-URL"
+ "value" : "%1$lld gesprekken geïmporteerd, %2$lld bijlagen hersteld en %3$lld bijlagen overgeslagen."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Server URL"
+ "value" : "%1$lld Konversationen importiert, %2$lld Anhänge wiederhergestellt und %3$lld Anhänge übersprungen.",
+ "state" : "translated"
}
}
}
},
- "The app's iCloud container is unavailable. Your local data is retained." : {
+ "No search tools loaded. Tap \"Load Available Tools\" to fetch them from your server." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il contenitore iCloud dell’app non è disponibile. I tuoi dati locali sono conservati."
+ "value" : "Geen zoekhulpmiddelen geladen. Tik op \"Beschikbare hulpmiddelen laden\" om ze van uw server op te halen."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Der iCloud-Container der App ist nicht verfügbar. Deine lokalen Daten bleiben erhalten."
+ "value" : "Aucun outil de recherche chargé. Touchez « Charger les outils disponibles » pour les récupérer depuis votre serveur."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アプリのiCloudコンテナを利用できません。ローカルデータは保持されています。"
+ "value" : "Δεν έχουν φορτωθεί εργαλεία αναζήτησης. Πατήστε «Φόρτωση Διαθέσιμων Εργαλείων» για να τα κατεβάσετε από τον διακομιστή σας.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O contentor iCloud da aplicação está indisponível. Os seus dados locais foram mantidos."
+ "value" : "No search tools loaded. Tap \"Load Available Tools\" to fetch them from your server."
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El contenedor de iCloud de la app no está disponible. Tus datos locales se conservan."
+ "value" : "No se cargaron herramientas de búsqueda. Toca \"Cargar herramientas disponibles\" para obtenerlas desde tu servidor.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De iCloud-container van de app is niet beschikbaar. Je lokale gegevens blijven behouden."
+ "value" : "検索ツールが読み込まれていません。「利用可能なツールを読み込む」をタップしてサーバーから取得してください。",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le conteneur iCloud de l’app est indisponible. Vos données locales sont conservées."
+ "value" : "Nenhuma ferramenta de pesquisa carregada. Toque em \"Carregar Ferramentas Disponíveis\" para as obter do seu servidor.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το κοντέινερ iCloud της εφαρμογής δεν είναι διαθέσιμο. Τα τοπικά δεδομένα σας διατηρούνται."
+ "value" : "Inga sökverktyg laddade. Tryck på \"Ladda tillgängliga verktyg\" för att hämta dem från din server."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appens iCloud-behållare är inte tillgänglig. Dina lokala data har sparats."
+ "value" : "Nessuno strumento di ricerca caricato. Tocca \"Carica strumenti disponibili\" per recuperarli dal server."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The app's iCloud container is unavailable. Your local data is retained."
+ "value" : "Keine Suchwerkzeuge geladen. Tippen Sie auf „Verfügbare Werkzeuge laden“, um sie von Ihrem Server abzurufen."
}
}
- }
+ },
+ "comment" : "A label that appears when there are no search tools available."
},
- "Color" : {
- "comment" : "A label for the color of a tag.",
+ "Something went wrong. Please try again." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Colore"
+ "value" : "Une erreur est survenue. Veuillez réessayer."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Farbe"
+ "value" : "Er is iets misgegaan. Probeer het opnieuw."
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "色"
+ "value" : "Qualcosa è andato storto. Riprova."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cor"
+ "value" : "Κάτι πήγε στραβά. Παρακαλώ δοκιμάστε ξανά."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Color"
+ "value" : "Something went wrong. Please try again.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kleur"
+ "value" : "Algo salió mal. Por favor, inténtalo de nuevo."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Χρώμα"
+ "value" : "Algo correu mal. Por favor, tente novamente.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Couleur"
+ "value" : "問題が発生しました。もう一度お試しください。"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Färg"
+ "value" : "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Color"
+ "value" : "Något gick fel. Försök igen."
}
}
}
},
- "A network error occurred. Please try again." : {
+ "Copy" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Si è verificato un errore di rete. Riprova."
+ "value" : "Αντιγραφή"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ein Netzwerkfehler ist aufgetreten. Bitte versuchen Sie es erneut."
+ "value" : "Copy"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ネットワークエラーが発生しました。もう一度お試しください。"
+ "value" : "Copiar",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ocorreu um erro de rede. Por favor, tente novamente."
+ "value" : "コピー",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ocurrió un error de red. Por favor, inténtalo de nuevo."
+ "value" : "Copiar"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Er is een netwerkfout opgetreden. Probeer het opnieuw."
+ "value" : "Copia"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Une erreur réseau est survenue. Veuillez réessayer."
+ "value" : "Copier"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Παρουσιάστηκε σφάλμα δικτύου. Παρακαλώ δοκιμάστε ξανά."
+ "value" : "Kopiëren",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ett nätverksfel uppstod. Försök igen."
+ "value" : "Kopiera"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A network error occurred. Please try again."
+ "value" : "Kopieren"
}
}
}
},
- "Explain a complex topic simply" : {
+ "Opens OpenClient and starts a new conversation." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Spiega un argomento complesso in modo semplice"
+ "value" : "Ανοίγει το OpenClient και ξεκινά μια νέα συνομιλία.",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Erkläre ein komplexes Thema einfach"
+ "value" : "Apre OpenClient e avvia una nuova conversazione."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "複雑な話題を簡単に説明する"
+ "value" : "Abre OpenClient y comienza una nueva conversación.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Explique um tema complexo de forma simples"
+ "value" : "Opent OpenClient en start een nieuw gesprek."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Explica un tema complejo de forma sencilla"
+ "value" : "OpenClientを開き、新しい会話を開始します。"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Leg een complex onderwerp eenvoudig uit"
+ "value" : "Öffnet OpenClient und startet eine neue Unterhaltung.",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Expliquer un sujet complexe simplement"
+ "value" : "Ouvre OpenClient et démarre une nouvelle conversation.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εξήγησε ένα σύνθετο θέμα απλά"
+ "value" : "Abre o OpenClient e inicia uma nova conversa.",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Förklara ett komplext ämne enkelt"
+ "value" : "Opens OpenClient and starts a new conversation."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Explain a complex topic simply"
+ "value" : "Öppnar OpenClient och startar en ny konversation.",
+ "state" : "translated"
}
}
}
},
- "No Media or Files" : {
- "comment" : "A description of the state displayed when the user has no media or files.",
+ "%@: %@." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nessun media o file"
+ "state" : "new",
+ "value" : "%1$@: %2$@."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Keine Medien oder Dateien"
+ "value" : "%1$@ : %2$@."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "メディアやファイルがありません"
+ "value" : "%1$@: %2$@.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sem Média ou Ficheiros"
+ "value" : "%1$@: %2$@."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sin medios ni archivos"
+ "value" : "%1$@: %2$@."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geen media of bestanden"
+ "value" : "%1$@: %2$@."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucun média ni fichier"
+ "value" : "%1$@: %2$@。",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν υπάρχουν μέσα ή αρχεία"
+ "value" : "%1$@: %2$@."
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga medier eller filer"
+ "value" : "%1$@: %2$@."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No Media or Files"
+ "value" : "%1$@: %2$@."
}
}
}
},
- "Yellow" : {
- "comment" : "Name of the color yellow.",
+ "█" : {
+ "comment" : "A cursor that is visible when the user is typing.",
"localizations" : {
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Yellow"
+ "value" : "█"
}
},
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Giallo"
+ "value" : "█"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Amarillo"
+ "value" : "█"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gelb"
+ "value" : "█",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Jaune"
+ "value" : "█"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Κίτρινο"
+ "value" : "█",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gul"
+ "value" : "█",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geel"
+ "value" : "█",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "黄色"
+ "value" : "█",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Amarelo"
+ "value" : "█"
}
}
}
},
- "The MCP tool was disabled before it could execute." : {
- "comment" : "Error message displayed when the MCP tool was disabled before it could execute.",
+ "Some MCP servers could not be loaded: %@." : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lo strumento MCP è stato disabilitato prima di poter essere eseguito."
+ "value" : "No se pudieron cargar algunos servidores MCP: %@."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Das MCP-Tool wurde deaktiviert, bevor es ausgeführt werden konnte."
+ "value" : "Ορισμένοι διακομιστές MCP δεν μπόρεσαν να φορτωθούν: %@."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "実行前にMCPツールが無効になりました。"
+ "value" : "Vissa MCP-servrar kunde inte laddas: %@."
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A ferramenta MCP foi desativada antes de poder ser executada."
+ "value" : "Some MCP servers could not be loaded: %@.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La herramienta MCP se desactivó antes de poder ejecutarse."
+ "value" : "Certains serveurs MCP n'ont pas pu être chargés : %@."
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De MCP-tool is uitgeschakeld voordat deze kon worden uitgevoerd."
+ "value" : "Alcuni server MCP non sono stati caricati: %@.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το εργαλείο MCP απενεργοποιήθηκε πριν προλάβει να εκτελεστεί."
+ "value" : "一部のMCPサーバーを読み込めませんでした: %@",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "L’outil MCP a été désactivé avant de pouvoir s’exécuter."
+ "value" : "Einige MCP-Server konnten nicht geladen werden: %@.",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP-verktyget inaktiverades innan det hann köras."
+ "value" : "Sommige MCP-servers konden niet worden geladen: %@.",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The MCP tool was disabled before it could execute."
+ "value" : "Alguns servidores MCP não puderam ser carregados: %@."
}
}
- }
+ },
+ "comment" : "A message that describes which MCP servers failed to load."
},
"Delete Synchronized Data?" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminare i dati sincronizzati?"
+ "value" : "¿Eliminar los datos sincronizados?"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronisierte Daten löschen?"
+ "value" : "Supprimer les données synchronisées ?"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "同期済みデータを削除しますか?"
+ "value" : "Eliminar dados sincronizados?"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar dados sincronizados?"
+ "value" : "Delete Synchronized Data?"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "¿Eliminar los datos sincronizados?"
+ "value" : "Διαγραφή συγχρονισμένων δεδομένων;"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gesynchroniseerde gegevens verwijderen?"
+ "value" : "Synchronisierte Daten löschen?"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαγραφή συγχρονισμένων δεδομένων;"
+ "value" : "同期済みデータを削除しますか?"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supprimer les données synchronisées ?"
+ "value" : "Gesynchroniseerde gegevens verwijderen?"
}
},
"sv" : {
@@ -34384,12618 +34372,14645 @@
"value" : "Radera synkroniserade data?"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Delete Synchronized Data?"
+ "value" : "Eliminare i dati sincronizzati?",
+ "state" : "translated"
}
}
}
},
- "Turn on iCloud synchronization before deleting synchronized data." : {
+ "New Memory" : {
+ "comment" : "A label for a new memory item.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Attiva la sincronizzazione iCloud prima di eliminare i dati sincronizzati."
+ "value" : "Νέα Μνήμη",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktiviere die iCloud-Synchronisierung, bevor du synchronisierte Daten löschst."
+ "value" : "新しいメモリー"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期データを削除する前に、iCloud同期をオンにしてください。"
+ "value" : "Neue Erinnerung",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ative a sincronização do iCloud antes de apagar os dados sincronizados."
+ "value" : "Nova Memória"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Activa la sincronización de iCloud antes de eliminar los datos sincronizados."
+ "value" : "Nueva memoria",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Schakel iCloud-synchronisatie in voordat je gesynchroniseerde gegevens verwijdert."
+ "value" : "Nouvelle mémoire"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ενεργοποιήστε τον συγχρονισμό iCloud πριν διαγράψετε τα συγχρονισμένα δεδομένα."
+ "value" : "Nytt minne",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Activez la synchronisation iCloud avant de supprimer les données synchronisées."
+ "value" : "Nuova memoria"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktivera iCloud-synkronisering innan du raderar synkroniserade data."
+ "value" : "Nieuwe herinnering"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Turn on iCloud synchronization before deleting synchronized data."
+ "value" : "New Memory"
}
}
}
},
- "The conversation summary and its cursor must both be present." : {
+ "Apple Shortcuts" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il riepilogo della conversazione e il suo cursore devono essere entrambi presenti."
+ "value" : "Apple Shortcuts"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Zusammenfassung der Unterhaltung und ihr Cursor müssen beide vorhanden sein."
+ "value" : "Apple-genvägar"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "会話の要約とそのカーソルの両方が存在する必要があります。"
+ "value" : "Raccourcis Apple",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O resumo da conversa e o seu cursor devem estar ambos presentes."
+ "value" : "Atalhos Apple"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El resumen de la conversación y su cursor deben estar presentes."
+ "value" : "Appleショートカット"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De samenvatting van het gesprek en de cursor moeten beide aanwezig zijn."
+ "value" : "Atajos de Apple",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le résumé de la conversation et son curseur doivent tous deux être présents."
+ "value" : "Apple-snelkoppelingen",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το σύνοψη της συνομιλίας και ο δείκτης της πρέπει να υπάρχουν και τα δύο."
+ "value" : "Scorciatoie Apple"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Samtalssammanfattningen och dess markör måste båda vara närvarande."
+ "value" : "Συντομεύσεις Apple",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The conversation summary and its cursor must both be present."
+ "value" : "Apple Kurzbefehle",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A heading for the Apple Shortcuts section."
},
- "The latest message and its attachments exceed this context window. Increase the context window or shorten the message." : {
- "comment" : "Error message when the latest message and its attachments exceed the context window.",
+ "The MCP server configuration changed. Request the tool again before executing it." : {
+ "comment" : "Error message when the MCP server configuration has changed.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L'ultimo messaggio e i suoi allegati superano questa finestra di contesto. Aumenta la finestra di contesto o riduci il messaggio."
+ "value" : "The MCP server configuration changed. Request the tool again before executing it."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die neueste Nachricht und ihre Anhänge überschreiten dieses Kontextfenster. Erhöhen Sie das Kontextfenster oder kürzen Sie die Nachricht."
+ "value" : "De configuratie van de MCP-server is gewijzigd. Vraag de tool opnieuw op voordat je deze uitvoert."
}
},
- "ja" : {
+ "sv" : {
+ "stringUnit" : {
+ "value" : "MCP-serverkonfigurationen har ändrats. Begär verktyget igen innan du kör det.",
+ "state" : "translated"
+ }
+ },
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "最新のメッセージと添付ファイルがこのコンテキストウィンドウの容量を超えています。コンテキストウィンドウを拡大するか、メッセージを短くしてください。"
+ "value" : "La configurazione del server MCP è cambiata. Richiedi nuovamente lo strumento prima di eseguirlo."
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Η διαμόρφωση του διακομιστή MCP άλλαξε. Ζητήστε ξανά το εργαλείο πριν το εκτελέσετε.",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A última mensagem e os seus anexos excedem esta janela de contexto. Aumente a janela de contexto ou reduza a mensagem."
+ "value" : "A configuração do servidor MCP foi alterada. Solicite novamente a ferramenta antes de a executar.",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "MCPサーバーの設定が変更されました。実行する前に、もう一度ツールをリクエストしてください。",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "La configuration du serveur MCP a changé. Demandez à nouveau l’outil avant de l’exécuter.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El último mensaje y sus archivos adjuntos superan esta ventana de contexto. Aumenta la ventana de contexto o acorta el mensaje."
+ "value" : "La configuración del servidor MCP ha cambiado. Solicita la herramienta de nuevo antes de ejecutarla."
}
},
- "nl" : {
+ "de" : {
+ "stringUnit" : {
+ "value" : "Die MCP-Serverkonfiguration wurde geändert. Fordern Sie das Tool erneut an, bevor Sie es ausführen.",
+ "state" : "translated"
+ }
+ }
+ }
+ },
+ "Show Actions" : {
+ "localizations" : {
+ "ja" : {
+ "stringUnit" : {
+ "value" : "アクションを表示",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Show Actions",
+ "state" : "translated"
+ }
+ },
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het nieuwste bericht en de bijlagen overschrijden dit contextvenster. Vergroot het contextvenster of verkort het bericht."
+ "value" : "Mostrar acciones"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le dernier message et ses pièces jointes dépassent cette fenêtre de contexte. Agrandissez la fenêtre de contexte ou raccourcissez le message."
+ "value" : "Afficher les actions"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το πιο πρόσφατο μήνυμα και τα συνημμένα του υπερβαίνουν το παράθυρο συμφραζομένων. Αυξήστε το παράθυρο συμφραζομένων ή συντομεύστε το μήνυμα."
+ "value" : "Acties tonen"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Aktionen anzeigen",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Mostra azioni",
+ "state" : "translated"
}
},
"sv" : {
+ "stringUnit" : {
+ "value" : "Visa åtgärder",
+ "state" : "translated"
+ }
+ },
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Det senaste meddelandet och dess bilagor överskrider detta kontextfönster. Öka kontextfönstret eller förkorta meddelandet."
+ "value" : "Εμφάνιση ενεργειών"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The latest message and its attachments exceed this context window. Increase the context window or shorten the message."
+ "value" : "Mostrar Ações"
}
}
- }
+ },
+ "comment" : "A label for a button that shows additional actions."
},
- "%.1f — %@" : {
- "comment" : "A label displaying the current temperature and a description of the temperature. The argument is the string “Focused”, the string “Balanced”, the string “Creative” or the string “Very creative”.",
+ "The iCloud account changed during synchronization." : {
+ "comment" : "Error description when the iCloud account changes during synchronization.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$.1f — %2$@"
+ "value" : "Ο λογαριασμός iCloud άλλαξε κατά τον συγχρονισμό."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$.1f — %2$@"
+ "value" : "iCloud-kontot ändrades under synkroniseringen."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$.1f — %2$@"
+ "value" : "同期中にiCloudアカウントが変更されました。",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$.1f — %2$@"
+ "value" : "Het iCloud-account is tijdens de synchronisatie gewijzigd.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$.1f — %2$@"
+ "value" : "La cuenta de iCloud cambió durante la sincronización.",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$.1f — %2$@"
+ "value" : "Le compte iCloud a changé pendant la synchronisation.",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$.1f — %2$@"
+ "value" : "Der iCloud-Account wurde während der Synchronisierung geändert.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$.1f — %2$@"
+ "value" : "A conta do iCloud mudou durante a sincronização."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$.1f — %2$@"
+ "value" : "L’account iCloud è cambiato durante la sincronizzazione.",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "new",
- "value" : "%1$.1f — %2$@"
+ "value" : "The iCloud account changed during synchronization.",
+ "state" : "translated"
}
}
}
},
- "No Synchronized Data" : {
+ "Any Model" : {
+ "comment" : "A description of an app feature that allows users to interact with any large language model.",
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Nessun dato sincronizzato"
- }
- },
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keine synchronisierten Daten"
+ "value" : "Beliebiges Modell",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "同期されたデータはありません"
+ "value" : "任意のモデル"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sem dados sincronizados"
+ "value" : "Elk model",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No hay datos sincronizados"
+ "value" : "Vilken modell som helst",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geen gesynchroniseerde gegevens"
+ "value" : "Qualquer Modelo",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν υπάρχουν συγχρονισμένα δεδομένα"
+ "value" : "Οποιοδήποτε Μοντέλο",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Any Model",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aucune donnée synchronisée"
+ "value" : "N’importe quel modèle"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga synkroniserade data"
+ "value" : "Qualsiasi modello"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No Synchronized Data"
+ "value" : "Cualquier modelo",
+ "state" : "translated"
}
}
}
},
- "Custom" : {
- "comment" : "A section title for the user's custom prompt templates.",
+ "Deny" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalizzato"
+ "value" : "Refuser"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Nega",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Deny",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Weigeren",
+ "state" : "translated"
}
},
"de" : {
+ "stringUnit" : {
+ "value" : "Verweigern",
+ "state" : "translated"
+ }
+ },
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Benutzerdefiniert"
+ "value" : "Denegar"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Neka",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "カスタム"
+ "value" : "拒否する"
}
},
"pt-PT" : {
+ "stringUnit" : {
+ "value" : "Recusar",
+ "state" : "translated"
+ }
+ },
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalizado"
+ "value" : "Άρνηση"
+ }
+ }
+ },
+ "comment" : "Title of a permission option to deny access to an external tool."
+ },
+ "Delete comment" : {
+ "localizations" : {
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Supprimer le commentaire"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Διαγραφή σχολίου",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalizado"
+ "value" : "Eliminar comentario"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aangepast"
+ "value" : "Radera kommentar"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Personnalisé"
+ "value" : "Elimina commento",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσαρμοσμένο"
+ "value" : "Kommentar löschen"
}
},
- "sv" : {
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Eliminar comentário",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Anpassad"
+ "value" : "コメントを削除"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Custom"
+ "value" : "Delete comment"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Reactie verwijderen",
+ "state" : "translated"
}
}
}
},
- "Checking iCloud availability..." : {
+ "Deletes all local settings and credentials. iCloud data will not be affected." : {
+ "comment" : "A footer for the reset button in the settings.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verifica della disponibilità di iCloud..."
+ "value" : "Deletes all local settings and credentials. iCloud data will not be affected."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-Verfügbarkeit wird geprüft …"
+ "value" : "Tar bort alla lokala inställningar och inloggningsuppgifter. iCloud-data påverkas inte.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudの利用状況を確認中…"
+ "value" : "Elimina tutte le impostazioni e le credenziali locali. I dati di iCloud non saranno interessati."
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A verificar a disponibilidade do iCloud..."
+ "value" : "Apaga todas as definições e credenciais locais. Os dados do iCloud não serão afetados."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Comprobando la disponibilidad de iCloud..."
+ "value" : "Supprime tous les paramètres et identifiants locaux. Les données iCloud ne seront pas affectées.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beschikbaarheid van iCloud controleren..."
+ "value" : "すべてのローカル設定と認証情報を削除します。iCloudのデータには影響しません。"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vérification de la disponibilité d’iCloud…"
+ "value" : "Verwijdert alle lokale instellingen en inloggegevens. iCloud-gegevens blijven ongewijzigd.",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Έλεγχος διαθεσιμότητας του iCloud..."
+ "value" : "Elimina todas las configuraciones y credenciales locales. Los datos de iCloud no se verán afectados."
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kontrollerar iCloud-tillgänglighet..."
+ "value" : "Löscht alle lokalen Einstellungen und Anmeldedaten. iCloud-Daten bleiben unberührt.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Checking iCloud availability..."
+ "value" : "Διαγράφει όλες τις τοπικές ρυθμίσεις και τα διαπιστευτήρια. Τα δεδομένα iCloud δεν θα επηρεαστούν."
}
}
}
},
- "Search conversations..." : {
+ "iCloud account review required" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cerca conversazioni..."
+ "value" : "Controle van iCloud-account vereist"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Konversationen durchsuchen..."
+ "value" : "iCloudアカウントの確認が必要です"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "会話を検索..."
+ "value" : "Απαιτείται έλεγχος λογαριασμού iCloud",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Procurar conversas..."
+ "value" : "Se requiere revisar la cuenta de iCloud"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Buscar conversaciones..."
+ "value" : "Granskning av iCloud-kontot krävs"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gesprekken zoeken..."
+ "value" : "Überprüfung des iCloud-Accounts erforderlich",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αναζήτηση συνομιλιών..."
+ "value" : "Vérification du compte iCloud requise"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rechercher des conversations..."
+ "value" : "È necessaria la verifica dell’account iCloud"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sök konversationer..."
+ "value" : "É necessária a verificação da conta iCloud"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Search conversations..."
+ "value" : "iCloud account review required",
+ "state" : "translated"
}
}
}
},
- "No suggestions yet." : {
+ "%lld of 1 MCP tool enabled. Availability and permissions can also be managed from the chat input bar." : {
+ "comment" : "A summary of the number of MCP tools that are enabled.",
"localizations" : {
+ "ja" : {
+ "stringUnit" : {
+ "value" : "1 個中 %lld 個の MCP ツールが有効です。利用可能状況と権限はチャット入力バーからも管理できます。",
+ "state" : "translated"
+ }
+ },
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessun suggerimento ancora."
+ "value" : "%lld di 1 strumento MCP abilitato. Disponibilità e autorizzazioni possono essere gestite anche dalla barra di inserimento della chat."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Noch keine Vorschläge."
+ "value" : "%lld van 1 MCP-tool ingeschakeld. Beschikbaarheid en machtigingen kunnen ook worden beheerd via de invoerbalk van de chat."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "まだ提案はありません。"
+ "value" : "%lld av 1 MCP-verktyg aktiverat. Tillgänglighet och behörigheter kan också hanteras från chattens inmatningsfält."
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sem sugestões ainda."
+ "value" : "%lld de 1 ferramenta MCP ativada. A disponibilidade e as permissões também podem ser geridas a partir da barra de introdução de texto do chat.",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aún no hay sugerencias."
+ "value" : "%lld of 1 MCP tool enabled. Availability and permissions can also be managed from the chat input bar."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nog geen suggesties."
+ "value" : "%lld de 1 herramienta MCP activada. La disponibilidad y los permisos también se pueden gestionar desde la barra de entrada del chat."
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν υπάρχουν προτάσεις ακόμα."
+ "value" : "%lld από 1 εργαλείο MCP ενεργοποιήθηκε. Η διαθεσιμότητα και τα δικαιώματα μπορούν επίσης να διαχειριστούν από τη γραμμή εισαγωγής συνομιλίας."
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pas encore de suggestions."
- }
- },
- "sv" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Inga förslag än så länge."
+ "value" : "%lld outil MCP sur 1 est activé. La disponibilité et les autorisations peuvent également être gérées depuis la barre de saisie du chat.",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No suggestions yet."
+ "value" : "%lld von 1 MCP-Tool aktiviert. Verfügbarkeit und Berechtigungen können auch über die Chat-Eingabeleiste verwaltet werden."
}
}
}
},
- "Your App Store purchases have been synchronized." : {
- "comment" : "A message displayed when the user has restored their App Store purchases.",
+ "API Key (Optional)" : {
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "I tuoi acquisti sull’App Store sono stati sincronizzati."
+ "value" : "Chiave API (Opzionale)"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Κλειδί API (Προαιρετικό)",
+ "state" : "translated"
}
},
"de" : {
+ "stringUnit" : {
+ "value" : "API-Schlüssel (optional)",
+ "state" : "translated"
+ }
+ },
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deine App-Store-Käufe wurden synchronisiert."
+ "value" : "Clave API (Opcional)"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "App Storeでの購入が同期されました。"
+ "value" : "APIキー(任意)"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "API-nyckel (valfritt)"
}
},
"pt-PT" : {
+ "stringUnit" : {
+ "value" : "Chave API (Opcional)",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "API-sleutel (optioneel)",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "API Key (Optional)",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "As suas compras da App Store foram sincronizadas."
+ "value" : "Clé API (facultatif)"
+ }
+ }
+ }
+ },
+ "Berry" : {
+ "localizations" : {
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Bescheiden",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tus compras del App Store se han sincronizado."
+ "value" : "Baya"
}
},
- "nl" : {
+ "el" : {
+ "stringUnit" : {
+ "value" : "Μούρο",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "ベリー"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Beere"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Bacca"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Berry",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Bär"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Baie"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Baga"
+ }
+ }
+ },
+ "comment" : "A berry icon."
+ },
+ "Local" : {
+ "localizations" : {
+ "es" : {
+ "stringUnit" : {
+ "value" : "Local",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Lokaal",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Lokal"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Locale"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Local"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Local"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Τοπικό",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Localização"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "ローカル",
+ "state" : "translated"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Lokal",
+ "state" : "translated"
+ }
+ }
+ }
+ },
+ "See your latest conversations and jump back in." : {
+ "comment" : "Widget description.",
+ "localizations" : {
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Sieh dir deine neuesten Unterhaltungen an und steige wieder ein."
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Δες τις πιο πρόσφατες συνομιλίες σου και συνέχισε από εκεί.",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "See your latest conversations and jump back in",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Se dina senaste konversationer och hoppa tillbaka in.",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Veja as suas conversas mais recentes e volte a elas."
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Bekijk je laatste gesprekken en ga er direct mee verder.",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Visualizza le tue ultime conversazioni e riprendi da dove avevi interrotto.",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "最新の会話を確認してすぐに再開できます"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Voir vos dernières conversations et y revenir.",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Consulta tus últimas conversaciones y vuelve a ellas.",
+ "state" : "translated"
+ }
+ }
+ }
+ },
+ "Honeydew" : {
+ "comment" : "A name for the icon with the color \"Honeydew\".",
+ "localizations" : {
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Melão verde claro"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "ハニーデュー",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Honingmeloen"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Honigmelone",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Πεπόνι μελιτώματος",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Honungsmelon"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Honeydew"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Melone bianco",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Melón verde claro"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Melon miel",
+ "state" : "translated"
+ }
+ }
+ }
+ },
+ "This chat is not saved or added to memory." : {
+ "localizations" : {
+ "en" : {
+ "stringUnit" : {
+ "value" : "This chat is not saved or stored in memory.",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Questa chat non viene salvata né aggiunta alla memoria.",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "このチャットは保存されず、記憶にも追加されません。",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Esta conversa não é guardada nem adicionada à memória."
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Este chat no se guarda ni se añade a la memoria."
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Αυτή η συνομιλία δεν αποθηκεύεται ούτε προστίθεται στη μνήμη.",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Den här chatten sparas inte eller läggs till i minnet."
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Deze chat wordt niet opgeslagen of toegevoegd aan het geheugen."
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Cette conversation n’est pas enregistrée ni ajoutée à la mémoire."
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Dieser Chat wird nicht gespeichert oder im Speicher abgelegt."
+ }
+ }
+ },
+ "comment" : "A description of a private chat."
+ },
+ "Conversation name" : {
+ "comment" : "A label for the name of a conversation.",
+ "localizations" : {
+ "en" : {
+ "stringUnit" : {
+ "value" : "Conversation name",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Konversationsnamn"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Nom de la conversation"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Nome da conversa",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "会話名",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Nombre de la conversación"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Gespreksnaam",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Nome conversazione"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Όνομα συνομιλίας"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Konversationsname"
+ }
+ }
+ }
+ },
+ "Deletes this item from iCloud and all synchronized devices. This action cannot be undone." : {
+ "localizations" : {
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Löscht dieses Objekt aus iCloud und von allen synchronisierten Geräten. Diese Aktion kann nicht rückgängig gemacht werden."
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Deletes this item from iCloud and all synchronized devices. This action cannot be undone."
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Elimina este elemento de iCloud y de todos los dispositivos sincronizados. Esta acción no se puede deshacer."
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "この項目をiCloudおよび同期済みのすべてのデバイスから削除します。この操作は取り消せません。"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Elimina este item do iCloud e de todos os dispositivos sincronizados. Esta ação não pode ser anulada."
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Supprime cet élément d’iCloud et de tous les appareils synchronisés. Cette action est irréversible."
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Elimina questo elemento da iCloud e da tutti i dispositivi sincronizzati. Questa azione non può essere annullata.",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Verwijdert dit item uit iCloud en alle gesynchroniseerde apparaten. Deze actie kan niet ongedaan worden gemaakt."
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Raderar detta objekt från iCloud och alla synkroniserade enheter. Åtgärden kan inte ångras.",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Διαγράφει αυτό το στοιχείο από το iCloud και όλες τις συγχρονισμένες συσκευές. Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
+ }
+ }
+ }
+ },
+ "Custom" : {
+ "localizations" : {
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Anpassad",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Custom",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Personalizado"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Personnalisé"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Aangepast"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Benutzerdefiniert"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Προσαρμοσμένο",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Personalizzato"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "カスタム",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Personalizado"
+ }
+ }
+ },
+ "comment" : "A section title for the user's custom prompt templates."
+ },
+ "No Model" : {
+ "localizations" : {
+ "it" : {
+ "stringUnit" : {
+ "value" : "Nessun modello",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Sin modelo",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "No Model"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Kein Modell",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Aucun modèle"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Χωρίς μοντέλο",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Sem modelo",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Geen model",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "モデルなし"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Ingen modell",
+ "state" : "translated"
+ }
+ }
+ }
+ },
+ "Completed" : {
+ "localizations" : {
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Voltooid",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Terminé"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Completed",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Completado",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Ολοκληρώθηκε",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "完了",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Concluído",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Slutförd"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Completato"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Abgeschlossen"
+ }
+ }
+ }
+ },
+ "No Memory Items" : {
+ "comment" : "A message displayed when the user has no memory items.",
+ "localizations" : {
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Sem itens de memória",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "メモリ項目なし"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Geen geheugenitems"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Keine Speicherobjekte",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Δεν υπάρχουν στοιχεία μνήμης",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Inga minnesobjekt"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "No Memory Items",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Nessun elemento di memoria",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "No hay elementos de memoria",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Aucun élément mémorisé"
+ }
+ }
+ }
+ },
+ "Buy me a coffee · One-time purchase · Doesn't unlock any features" : {
+ "localizations" : {
+ "es" : {
+ "stringUnit" : {
+ "value" : "Cómprame un café · Compra única · No desbloquea ninguna función",
+ "state" : "translated"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Kauf mir einen Kaffee · Einmaliger Kauf · Schaltet keine Funktionen frei"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "コーヒーをおごる · 1回限りの購入 · 機能はアンロックされません"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Offrimi un caffè · Acquisto una tantum · Non sblocca alcuna funzionalità"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Offrez-moi un café · Achat unique · Ne débloque aucune fonctionnalité",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Buy me a coffee · One-time purchase · Doesn't unlock any features"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Ofereça-me um café · Compra única · Não desbloqueia nenhuma funcionalidade",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Köp en kaffe åt mig · Engångsköp · Låser inte upp några funktioner",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Koop een koffie voor me · Eenmalige aankoop · Ontgrendelt geen functies"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Κέρασέ μου έναν καφέ · Εφάπαξ αγορά · Δεν ξεκλειδώνει καμία λειτουργία",
+ "state" : "translated"
+ }
+ }
+ },
+ "comment" : "A description of a one-time purchase option for supporting the app."
+ },
+ "No MCP servers loaded. Tap \"Load Available Tools\" to fetch them from your server." : {
+ "comment" : "A label that describes the state when no MCP servers are available.",
+ "localizations" : {
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Nenhum servidor MCP carregado. Toque em \"Carregar Ferramentas Disponíveis\" para os obter do seu servidor.",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "No se cargaron servidores MCP. Toca \"Cargar herramientas disponibles\" para obtenerlos de tu servidor."
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Aucun serveur MCP chargé. Appuyez sur « Charger les outils disponibles » pour les récupérer depuis votre serveur."
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "No MCP servers loaded. Tap \"Load Available Tools\" to fetch them from your server."
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Δεν έχουν φορτωθεί MCP διακομιστές. Πατήστε «Φόρτωση Διαθέσιμων Εργαλείων» για να τους λάβετε από τον διακομιστή σας."
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Keine MCP-Server geladen. Tippen Sie auf „Verfügbare Tools laden“, um sie von Ihrem Server abzurufen."
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "MCPサーバーが読み込まれていません。「利用可能なツールを読み込む」をタップしてサーバーから取得してください。",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Geen MCP-servers geladen. Tik op \"Beschikbare tools laden\" om ze van je server op te halen."
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Inga MCP-servrar laddade. Tryck på \"Ladda tillgängliga verktyg\" för att hämta dem från din server."
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Nessun server MCP caricato. Tocca \"Carica Strumenti Disponibili\" per recuperarli dal tuo server."
+ }
+ }
+ }
+ },
+ "Summarize a long text" : {
+ "localizations" : {
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Vat een lange tekst samen"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Περίληψη μεγάλου κειμένου"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Summarize a long text",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Resumir un texto largo"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Résumer un long texte",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "長文を要約する",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Resumir um texto longo"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Sammanfatta en lång text"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Riassumi un testo lungo"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Einen langen Text zusammenfassen",
+ "state" : "translated"
+ }
+ }
+ }
+ },
+ "Update available" : {
+ "comment" : "A title for an alert that notifies the user that an update is available.",
+ "localizations" : {
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Uppdatering tillgänglig"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Mise à jour disponible",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Aggiornamento disponibile"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Actualización disponible",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Update available",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "アップデートがあります",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Update beschikbaar"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Atualização disponível",
+ "state" : "translated"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Update verfügbar"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Διαθέσιμη ενημέρωση",
+ "state" : "translated"
+ }
+ }
+ }
+ },
+ "Save to Photos" : {
+ "localizations" : {
+ "el" : {
+ "stringUnit" : {
+ "value" : "Αποθήκευση στις Φωτογραφίες",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Guardar nas Fotografias"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Spara till Foton"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "写真に保存"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "In Fotos speichern"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Opslaan in Foto's"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Save to Photos"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Guardar en Fotos",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Enregistrer dans Photos",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Salva in Foto"
+ }
+ }
+ },
+ "comment" : "A label for a context menu item that saves an image to the user's photo library."
+ },
+ "Only images and PDFs are supported" : {
+ "localizations" : {
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Endast bilder och PDF-filer stöds"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Seules les images et les PDF sont pris en charge"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Sono supportate solo immagini e PDF"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Solo se admiten imágenes y PDFs",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "画像とPDFのみ対応しています"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Only images and PDFs are supported",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Alleen afbeeldingen en PDF's worden ondersteund"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Apenas imagens e PDFs são suportados"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Nur Bilder und PDFs werden unterstützt"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Υποστηρίζονται μόνο εικόνες και αρχεία PDF"
+ }
+ }
+ }
+ },
+ "Search Tool" : {
+ "localizations" : {
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Zoekhulpmiddel"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Herramienta de búsqueda",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Εργαλείο αναζήτησης"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "検索ツール",
+ "state" : "translated"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Suchwerkzeug",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Strumento di ricerca",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Search Tool"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Sökverktyg",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Ferramenta de Pesquisa",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Outil de recherche",
+ "state" : "translated"
+ }
+ }
+ },
+ "comment" : "A label for the search tool picker."
+ },
+ "Temperature" : {
+ "localizations" : {
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Θερμοκρασία"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "温度",
+ "state" : "translated"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Temperatur"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Temperatura",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Temperatura"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Temperatur",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Température",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Temperatura"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Temperature",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Temperatuur"
+ }
+ }
+ }
+ },
+ "Browse Library" : {
+ "localizations" : {
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Explorar Biblioteca"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Bibliothek durchsuchen"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Parcourir la bibliothèque",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "ライブラリを参照"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Bibliotheek bladeren",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Περιήγηση στη Βιβλιοθήκη",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Explorar biblioteca"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Browse Library",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Bläddra i biblioteket",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Sfoglia Libreria"
+ }
+ }
+ },
+ "comment" : "A button that opens a library of pre-made system prompts."
+ },
+ "New Conversation" : {
+ "localizations" : {
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Nieuw gesprek"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Nouvelle conversation"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "New Conversation",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Nuova conversazione",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Νέα Συνομιλία",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Nueva conversación",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Nova Conversa"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "新しい会話"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Neues Gespräch",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Ny konversation",
+ "state" : "translated"
+ }
+ }
+ }
+ },
+ "Untitled" : {
+ "localizations" : {
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Naamloos",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Sans titre",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Χωρίς τίτλο"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Sin título",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Untitled",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "名称未設定",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Sem título",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Namnlös"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Senza titolo"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Unbenannt",
+ "state" : "translated"
+ }
+ }
+ }
+ },
+ "Synchronized prompt template data is invalid." : {
+ "localizations" : {
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Les données du modèle d’invite synchronisé ne sont pas valides.",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "De gegevens van de gesynchroniseerde promptsjabloon zijn ongeldig."
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Τα δεδομένα του συγχρονισμένου προτύπου προτροπής δεν είναι έγκυρα.",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Synchronized prompt template data is invalid."
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "I dati del modello del prompt sincronizzato non sono validi."
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Los datos de la plantilla de solicitudes sincronizada no son válidos."
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Die Daten der synchronisierten Prompt-Vorlage sind ungültig.",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "同期されたプロンプトテンプレートのデータが無効です。",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Os dados do modelo de prompt sincronizado são inválidos."
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Synkroniserade data för prompter är ogiltiga."
+ }
+ }
+ }
+ },
+ "The conversation summary and its cursor must both be present." : {
+ "localizations" : {
+ "el" : {
+ "stringUnit" : {
+ "value" : "Το σύνοψη της συνομιλίας και ο δείκτης της πρέπει να υπάρχουν και τα δύο.",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Il riepilogo della conversazione e il suo cursore devono essere entrambi presenti."
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "El resumen de la conversación y su cursor deben estar presentes."
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "De samenvatting van het gesprek en de cursor moeten beide aanwezig zijn.",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "会話の要約とそのカーソルの両方が存在する必要があります。",
+ "state" : "translated"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Die Zusammenfassung der Unterhaltung und ihr Cursor müssen beide vorhanden sein.",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Le résumé de la conversation et son curseur doivent tous deux être présents."
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "O resumo da conversa e o seu cursor devem estar ambos presentes."
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "The conversation summary and its cursor must both be present."
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Samtalssammanfattningen och dess markör måste båda vara närvarande."
+ }
+ }
+ }
+ },
+ "Unable to read the backup file." : {
+ "localizations" : {
+ "el" : {
+ "stringUnit" : {
+ "value" : "Αδυναμία ανάγνωσης του αρχείου αντιγράφου ασφαλείας.",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Não foi possível ler o ficheiro de backup.",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "バックアップファイルを読み取れません。"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Kan inte läsa säkerhetskopieringsfilen."
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Die Sicherungsdatei kann nicht gelesen werden.",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Kan het back-upbestand niet lezen.",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Unable to read the backup file.",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "No se puede leer el archivo de copia de seguridad.",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Impossible de lire le fichier de sauvegarde.",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Impossibile leggere il file di backup."
+ }
+ }
+ }
+ },
+ "Search Chats" : {
+ "localizations" : {
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Chats durchsuchen"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Rechercher dans les discussions"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Buscar chats"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Zoek chats",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Cerca chat",
+ "state" : "translated"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "value" : "チャットを検索",
+ "state" : "translated"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Pesquisar Conversas"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Sök chattar"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Search Chats",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Αναζήτηση συνομιλιών",
+ "state" : "translated"
+ }
+ }
+ }
+ },
+ "%lld" : {
+ "shouldTranslate" : false,
+ "localizations" : {
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "%lld"
+ }
+ }
+ },
+ "comment" : "A label displaying the number of search results. The argument is the number of search results."
+ },
+ "Retro" : {
+ "localizations" : {
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Rétro"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Ρετρό"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Retro",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Retrostil"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Retrò"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Retro"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Retro"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "レトロ"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Retro"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Retro",
+ "state" : "translated"
+ }
+ }
+ },
+ "comment" : "Retro is a Japanese slang term for \"old-school\" or \"vintage\"."
+ },
+ "Speech to Text" : {
+ "comment" : "A section title for speech-to-text models.",
+ "localizations" : {
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Ομιλία σε κείμενο"
+ }
+ },
+ "ja" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "音声認識"
+ }
+ },
+ "pt-PT" : {
+ "stringUnit" : {
+ "value" : "Fala para Texto",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Tal till text"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Sprache zu Text",
+ "state" : "translated"
+ }
+ },
+ "nl" : {
+ "stringUnit" : {
+ "value" : "Spraak naar tekst",
+ "state" : "translated"
+ }
+ },
+ "en" : {
+ "stringUnit" : {
+ "value" : "Speech to Text",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Voz a texto",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Parole en texte"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Da voce a testo"
+ }
+ }
+ }
+ },
+ "Organise your conversations" : {
+ "comment" : "A label displayed in the chat interface that allows the user to organise their conversations.",
+ "localizations" : {
+ "fr" : {
+ "stringUnit" : {
+ "value" : "Organisez vos conversations",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Οργάνωσε τις συνομιλίες σου"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Organiza tus conversaciones",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
+ "stringUnit" : {
+ "value" : "Organisera dina konversationer",
+ "state" : "translated"
+ }
+ },
+ "it" : {
+ "stringUnit" : {
+ "value" : "Organizza le tue conversazioni",
+ "state" : "translated"
+ }
+ },
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Je App Store-aankopen zijn gesynchroniseerd."
+ "value" : "Organisiere deine Unterhaltungen",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Οι αγορές σας στο App Store συγχρονίστηκαν."
+ "value" : "Organize your conversations",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vos achats de l’App Store ont été synchronisés."
+ "value" : "会話を整理する",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dina App Store-köp har synkroniserats."
+ "value" : "Organize as suas conversas"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Your App Store purchases have been synchronized."
+ "value" : "Organiseer je gesprekken"
}
}
}
},
- "External tool" : {
- "comment" : "Display name for an external tool.",
+ "Loading..." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Strumento esterno"
+ "value" : "Loading..."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Externes Tool"
+ "value" : "Φόρτωση...",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "外部ツール"
+ "value" : "Lädt...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ferramenta externa"
+ "value" : "Bezig met laden...",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Herramienta externa"
+ "value" : "Caricamento...",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Externe tool"
+ "value" : "Chargement...",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Outil externe"
+ "value" : "読み込み中..."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εξωτερικό εργαλείο"
+ "value" : "A carregar...",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Externt verktyg"
+ "value" : "Läser in...",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "External tool"
+ "value" : "Cargando..."
}
}
- }
+ },
+ "comment" : "A loading indicator displayed when fetching search tools."
},
- "New comment" : {
+ "The network connection was lost." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nuovo commento"
+ "value" : "A ligação de rede foi perdida."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Neuer Kommentar"
+ "value" : "De netwerkverbinding is verbroken.",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "新しいコメント"
+ "value" : "Se perdió la conexión de red."
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Novo comentário"
+ "value" : "Die Netzwerkverbindung wurde unterbrochen."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nuevo comentario"
+ "value" : "La connexion réseau a été perdue.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nieuwe opmerking"
+ "value" : "La connessione di rete è stata persa."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Νέα σχόλια"
+ "value" : "ネットワーク接続が切断されました。",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nouveau commentaire"
+ "value" : "Nätverksanslutningen förlorades."
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ny kommentar"
+ "value" : "Η σύνδεση δικτύου διακόπηκε.",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "New comment"
+ "value" : "The network connection was lost.",
+ "state" : "translated"
}
}
}
},
- "Review each external tool before anything is executed." : {
- "comment" : "A description of the warning displayed in the MCP authorization view.",
+ "App Data" : {
+ "comment" : "A section in the settings view that allows the user to reset all local data.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Esamina ogni strumento esterno prima di eseguire qualsiasi operazione."
+ "value" : "App-gegevens",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Überprüfe jedes externe Tool, bevor etwas ausgeführt wird."
+ "value" : "Données de l’application"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "実行する前に、各外部ツールを確認してください。"
+ "value" : "App Data",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reveja cada ferramenta externa antes de executar qualquer ação."
+ "value" : "Δεδομένα εφαρμογής"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Revisa cada herramienta externa antes de ejecutar cualquier acción"
+ "value" : "Datos de la app",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Controleer elk extern hulpprogramma voordat er iets wordt uitgevoerd."
+ "value" : "アプリデータ"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Examinez chaque outil externe avant toute exécution."
+ "value" : "Dados da App",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ελέγξτε κάθε εξωτερικό εργαλείο πριν από οποιαδήποτε εκτέλεση."
+ "value" : "Appdata"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Granska varje externt verktyg innan något körs."
+ "value" : "Dati app"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Review each external tool before anything is executed."
+ "value" : "App-Daten",
+ "state" : "translated"
}
}
}
},
- "Temperature" : {
+ "Review the current account before enabling synchronization." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Temperatura"
+ "value" : "Reveja a conta atual antes de ativar a sincronização."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Temperatur"
+ "value" : "Review the current account before enabling synchronization.",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "温度"
+ "value" : "Granska det aktuella kontot innan synkronisering aktiveras."
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Temperatura"
+ "value" : "Vérifiez le compte actuel avant d’activer la synchronisation."
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Temperatura"
+ "value" : "Controleer het huidige account voordat u synchronisatie inschakelt.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Temperatuur"
+ "value" : "Überprüfen Sie das aktuelle Konto, bevor Sie die Synchronisierung aktivieren.",
+ "state" : "translated"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Température"
+ "value" : "Ελέγξτε τον τρέχοντα λογαριασμό πριν ενεργοποιήσετε τον συγχρονισμό."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Θερμοκρασία"
+ "value" : "同期を有効にする前に、現在のアカウントを確認してください。"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Temperatur"
+ "value" : "Esamina l'account attuale prima di abilitare la sincronizzazione."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Temperature"
+ "value" : "Revisa la cuenta actual antes de activar la sincronización."
}
}
}
},
- "Keep track of context" : {
- "comment" : "A tip that explains how OpenClient may summarise or exclude older messages without removing them from your history.",
+ "Skip" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tieni traccia del contesto"
+ "value" : "Skip"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kontext im Blick behalten"
+ "value" : "Salta"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "コンテキストを追跡する"
+ "value" : "スキップ",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Acompanhe o contexto"
+ "value" : "Ignorar"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mantén el seguimiento del contexto"
+ "value" : "Omitir"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Houd de context bij"
+ "value" : "Παράλειψη"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suivez le contexte"
+ "value" : "Hoppa över",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Παρακολουθήστε το πλαίσιο"
+ "value" : "Overslaan",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Håll koll på sammanhanget"
+ "value" : "Passer",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keep track of context"
+ "value" : "Überspringen",
+ "state" : "translated"
}
}
}
},
- "Search" : {
- "comment" : "A title for a screen that searches for conversations.",
+ "Private Chat" : {
+ "comment" : "A label displayed in the empty state view.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cerca"
+ "value" : "Privéchat"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suche"
+ "value" : "Privatchatt",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "検索"
+ "value" : "Ιδιωτική Συνομιλία"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pesquisar"
+ "value" : "Chat privado"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Buscar"
+ "value" : "Privater Chat",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Zoeken"
+ "value" : "プライベートチャット",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Recherche"
+ "value" : "Discussion privée",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αναζήτηση"
+ "value" : "Chat privata"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sökning"
+ "value" : "Private Chat"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Search"
+ "value" : "Conversa Privada",
+ "state" : "translated"
}
}
}
},
- "Update available" : {
- "comment" : "A title for an alert that notifies the user that an update is available.",
+ "Import Complete" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aggiornamento disponibile"
+ "value" : "Importation terminée"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Update verfügbar"
+ "value" : "Importazione completata"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アップデートがあります"
+ "value" : "Import Complete",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Atualização disponível"
+ "value" : "Import voltooid",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Actualización disponible"
+ "value" : "Import abgeschlossen"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Update beschikbaar"
+ "value" : "Importación completada",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαθέσιμη ενημέρωση"
+ "value" : "Import klar",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mise à jour disponible"
+ "value" : "インポート完了"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Uppdatering tillgänglig"
+ "value" : "Importação concluída"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Update available"
+ "value" : "Η εισαγωγή ολοκληρώθηκε",
+ "state" : "translated"
}
}
}
},
- "We're making a few improvements. Please try again later." : {
- "comment" : "A message displayed when the app is under maintenance.",
+ "Unpin" : {
+ "comment" : "A label for un-pinning a conversation.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Stiamo apportando alcuni miglioramenti. Riprova più tardi."
+ "value" : "Détacher"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Wir nehmen einige Verbesserungen vor. Bitte versuchen Sie es später erneut."
+ "value" : "Sblocca dalla barra",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "いくつか改善を行っています。しばらくしてからもう一度お試しください。"
+ "value" : "Unpin"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Estamos a fazer algumas melhorias. Tente novamente mais tarde."
+ "value" : "Losmaken",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Estamos realizando algunas mejoras. Vuelve a intentarlo más tarde."
+ "value" : "Anheften aufheben",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "We voeren enkele verbeteringen door. Probeer het later opnieuw."
+ "value" : "Desfijar"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nous apportons quelques améliorations. Veuillez réessayer plus tard."
+ "value" : "Ta bort fästning"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κάνουμε μερικές βελτιώσεις. Δοκιμάστε ξανά αργότερα."
+ "value" : "ピン留め解除"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vi gör några förbättringar. Försök igen senare."
+ "value" : "Desafixar"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "We're making a few improvements. Please try again later."
+ "value" : "Αποκόλληση"
}
}
}
},
- "New suggestion" : {
+ "Feature Tips" : {
+ "comment" : "A section that allows users to dismiss feature tips.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nuovo suggerimento"
+ "value" : "Συμβουλές λειτουργιών"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neuer Vorschlag"
+ "value" : "Functietips"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "新しい提案"
+ "value" : "Funktionstipps"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nova sugestão"
+ "value" : "Conseils sur les fonctionnalités"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nueva sugerencia"
+ "value" : "Consejos de funciones"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nieuwe suggestie"
+ "value" : "機能のヒント"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Νέα πρόταση"
+ "value" : "Dicas de Funcionalidades",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nouvelle suggestion"
+ "value" : "Funktionstips",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nytt förslag"
+ "value" : "Suggerimenti sulle funzionalità",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "New suggestion"
+ "value" : "Feature Tips"
}
}
}
},
- "All local settings and credentials will be deleted. iCloud data will not be affected." : {
- "comment" : "A confirmation alert message.",
+ "The cloud operation was cancelled by an app data reset." : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Tutte le impostazioni locali e le credenziali verranno eliminate. I dati di iCloud non saranno interessati."
- }
- },
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle lokalen Einstellungen und Anmeldedaten werden gelöscht. iCloud-Daten bleiben unberührt."
+ "value" : "Der Cloud-Vorgang wurde durch das Zurücksetzen der App-Daten abgebrochen.",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "すべてのローカル設定と認証情報が削除されます。iCloudのデータには影響しません。"
+ "value" : "L’opération cloud a été annulée par la réinitialisation des données de l’app.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Todas as definições locais e credenciais serão eliminadas. Os dados do iCloud não serão afetados."
+ "value" : "De cloudbewerking is geannuleerd doordat de appgegevens zijn gereset.",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Se eliminarán todas las configuraciones y credenciales locales. Los datos de iCloud no se verán afectados."
+ "value" : "La operación en la nube se canceló al restablecer los datos de la aplicación.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alle lokale instellingen en inloggegevens worden verwijderd. iCloud-gegevens blijven ongewijzigd."
+ "value" : "L’operazione cloud è stata annullata dal ripristino dei dati dell’app."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Όλες οι τοπικές ρυθμίσεις και τα διαπιστευτήρια θα διαγραφούν. Τα δεδομένα iCloud δεν θα επηρεαστούν."
+ "value" : "アプリデータのリセットにより、クラウド操作がキャンセルされました"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tous les paramètres locaux et identifiants seront supprimés. Les données iCloud ne seront pas affectées."
+ "value" : "A operação na nuvem foi cancelada devido à reposição dos dados da aplicação.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alla lokala inställningar och inloggningsuppgifter kommer att raderas. iCloud-data påverkas inte."
+ "value" : "Molnåtgärden avbröts av en återställning av appdata."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "All local settings and credentials will be deleted. iCloud data will not be affected."
+ "value" : "The cloud operation was cancelled by an app data reset."
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Η λειτουργία cloud ακυρώθηκε λόγω επαναφοράς των δεδομένων της εφαρμογής.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error message when the cloud operation was cancelled by an app data reset."
},
- "Your local data will be merged into the current iCloud account. Cancel to keep iCloud Sync disabled." : {
+ "Information" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "I tuoi dati locali verranno uniti all’account iCloud attuale. Tocca Annulla per mantenere disabilitata la sincronizzazione iCloud."
+ "value" : "Information",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deine lokalen Daten werden mit dem aktuellen iCloud-Account zusammengeführt. Tippe auf „Abbrechen“, um die iCloud-Synchronisierung deaktiviert zu lassen."
+ "value" : "Informatie"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ローカルデータが現在のiCloudアカウントに統合されます。iCloud同期を無効のままにするには「キャンセル」を選択してください。"
+ "value" : "Πληροφορίες"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Os seus dados locais serão fundidos com a conta iCloud atual. Cancele para manter a sincronização com o iCloud desativada."
+ "value" : "Información",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tus datos locales se fusionarán con la cuenta de iCloud actual. Pulsa «Cancelar» para mantener desactivada la sincronización con iCloud."
+ "value" : "Information"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Je lokale gegevens worden samengevoegd met de huidige iCloud-account. Annuleer om iCloud-synchronisatie uitgeschakeld te houden."
+ "value" : "Information"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Τα τοπικά δεδομένα σας θα συγχωνευτούν με τον τρέχοντα λογαριασμό iCloud. Πατήστε «Ακύρωση» για να διατηρήσετε τον συγχρονισμό iCloud απενεργοποιημένο."
+ "value" : "Informations"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vos données locales seront fusionnées avec le compte iCloud actuel. Touchez Annuler pour laisser la synchronisation iCloud désactivée."
+ "value" : "Informazioni",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dina lokala data kommer att slås samman med det aktuella iCloud-kontot. Avbryt för att fortsätta ha iCloud-synkronisering inaktiverad."
+ "value" : "Informação"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Your local data will be merged into the current iCloud account. Cancel to keep iCloud Sync disabled."
+ "value" : "情報",
+ "state" : "translated"
}
}
}
},
- "A local prompt template file is invalid and was preserved." : {
+ "Confirm" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Un file modello di prompt locale non è valido ed è stato conservato."
+ "value" : "許可する"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eine lokale Prompt-Vorlagendatei ist ungültig und wurde beibehalten."
+ "value" : "Confirmer"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ローカルのプロンプトテンプレートファイルが無効なため、保持されました。"
+ "value" : "Confirm"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Um ficheiro de modelo de pedido local é inválido e foi preservado."
+ "value" : "Conferma"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Un archivo de plantilla de mensajes local no es válido y se conservó."
+ "value" : "Bevestigen",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Een lokaal bestand met een promptsjabloon is ongeldig en is behouden."
+ "value" : "Confirmar",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ένα τοπικό αρχείο προτύπου προτροπής δεν είναι έγκυρο και διατηρήθηκε."
+ "value" : "Confirmar",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Un fichier de modèle d’invite local n’est pas valide et a été conservé."
+ "value" : "Bekräfta",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "En lokal mallfil för ledtext är ogiltig och har bevarats."
+ "value" : "Επιβεβαίωση"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A local prompt template file is invalid and was preserved."
+ "value" : "Bestätigen",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A button that confirms allowing a tool permanently."
},
- "Review and delete data stored in iCloud." : {
+ "The MCP tool arguments are not valid JSON." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Esamina ed elimina i dati archiviati su iCloud."
+ "value" : "Les arguments de l’outil MCP ne sont pas un JSON valide.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "In iCloud gespeicherte Daten überprüfen und löschen."
+ "value" : "Die Argumente des MCP-Tools sind kein gültiges JSON.",
+ "state" : "translated"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudに保存されているデータを確認して削除する"
+ "value" : "Os argumentos da ferramenta MCP não são JSON válido."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reveja e elimine os dados armazenados no iCloud."
+ "value" : "MCPツールの引数が有効なJSONではありません。"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Revisa y elimina los datos almacenados en iCloud."
+ "value" : "De argumenten van de MCP-tool zijn geen geldige JSON."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bekijk en verwijder gegevens die in iCloud zijn opgeslagen."
+ "value" : "Τα επιχειρήματα του εργαλείου MCP δεν είναι έγκυρο JSON."
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Consultez et supprimez les données stockées dans iCloud."
+ "value" : "Los argumentos de la herramienta MCP no son un JSON válido."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ελέγξτε και διαγράψτε δεδομένα που είναι αποθηκευμένα στο iCloud."
+ "value" : "Argumenten för MCP-verktyget är inte giltig JSON."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Granska och radera data som lagras i iCloud."
+ "value" : "Gli argomenti dello strumento MCP non sono un JSON valido."
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Review and delete data stored in iCloud."
+ "value" : "The MCP tool arguments are not valid JSON."
}
}
- }
+ },
+ "comment" : "Error message when the MCP tool arguments are not valid JSON."
},
- "Swift uses structured concurrency with async\/await..." : {
- "comment" : "Text of a message preview in a conversation.",
+ "New comment" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Swift utilizza la concorrenza strutturata con async\/await..."
+ "value" : "Novo comentário",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Swift verwendet strukturierte Nebenläufigkeit mit async\/await..."
+ "value" : "新しいコメント"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Swiftはasync\/awaitを使った構造化並行処理を採用しています..."
+ "value" : "Nieuwe opmerking",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Swift usa concorrência estruturada com async\/await..."
+ "value" : "Neuer Kommentar",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Swift usa concurrencia estructurada con async\/await..."
+ "value" : "Νέα σχόλια"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Swift gebruikt gestructureerde gelijktijdigheid met async\/await..."
+ "value" : "Ny kommentar"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η Swift χρησιμοποιεί δομημένη ασύγχρονη εκτέλεση με async\/await..."
+ "value" : "New comment",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Swift utilise la concurrence structurée avec async\/await..."
+ "value" : "Nuovo commento"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Swift använder strukturerad samtidighet med async\/await..."
+ "value" : "Nuevo comentario"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Swift uses structured concurrency with async\/await..."
+ "value" : "Nouveau commentaire"
}
}
}
},
- "Delete All Synchronized Data?" : {
+ "Support ongoing development, maintenance, and new features." : {
+ "comment" : "A description of the benefits of supporting ongoing development, maintenance, and new features.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminare tutti i dati sincronizzati?"
+ "value" : "Apoie o desenvolvimento contínuo, a manutenção e as novas funcionalidades.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle synchronisierten Daten löschen?"
+ "value" : "Soutenez le développement continu, la maintenance et les nouvelles fonctionnalités.",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "同期済みデータをすべて削除しますか?"
+ "value" : "Unterstütze die laufende Entwicklung, Wartung und neue Funktionen."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar todos os dados sincronizados?"
+ "value" : "継続的な開発、メンテナンス、新機能を支援する"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "¿Eliminar todos los datos sincronizados?"
+ "value" : "Ondersteun voortdurende ontwikkeling, onderhoud en nieuwe functies.",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle gesynchroniseerde gegevens verwijderen?"
+ "value" : "Υποστηρίξτε τη συνεχή ανάπτυξη, τη συντήρηση και τις νέες δυνατότητες.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαγραφή όλων των συγχρονισμένων δεδομένων;"
+ "value" : "Stöd fortsatt utveckling, underhåll och nya funktioner.",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Supprimer toutes les données synchronisées ?"
+ "value" : "Support ongoing development, maintenance, and new features.",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Radera alla synkroniserade data?"
+ "value" : "Supporta lo sviluppo continuo, la manutenzione e le nuove funzionalità.",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Delete All Synchronized Data?"
+ "value" : "Apoya el desarrollo continuo, el mantenimiento y las nuevas funciones.",
+ "state" : "translated"
}
}
}
},
- "Author" : {
+ "Notifications enabled" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Autore"
+ "value" : "Ειδοποιήσεις ενεργοποιημένες",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Autor"
+ "value" : "Notifiche attivate"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "作成者"
+ "value" : "Notificaciones activadas"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Autor"
+ "value" : "Meldingen ingeschakeld",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Autor"
+ "value" : "通知が有効です",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Auteur"
+ "value" : "Benachrichtigungen aktiviert"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Auteur"
+ "value" : "Notifications activées",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συγγραφέας"
+ "value" : "Notificações ativadas"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Författare"
+ "value" : "Notifications enabled",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Author"
+ "value" : "Aviseringar aktiverade"
}
}
- }
+ },
+ "comment" : "A label that indicates that notifications are enabled."
},
- "Right-click a conversation to pin, rename, or add tags." : {
+ "Controls randomness. Higher values make output more creative." : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fai clic con il tasto destro su una conversazione per fissarla, rinominarla o aggiungere tag."
+ "value" : "Controlla la casualità. Valori più alti rendono l'output più creativo.",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Klicken Sie mit der rechten Maustaste auf eine Unterhaltung, um sie anzuheften, umzubenennen oder Tags hinzuzufügen."
+ "value" : "Beheert willekeurigheid. Hogere waarden maken de output creatiever.",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会話を右クリックしてピン留め、名前変更、タグ追加を行います。"
+ "value" : "Contrôle l'aléatoire. Des valeurs plus élevées rendent la sortie plus créative."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Clique com o botão direito numa conversa para fixar, renomear ou adicionar etiquetas."
+ "value" : "Controla la aleatoriedad. Valores más altos hacen que la salida sea más creativa."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Haz clic derecho en una conversación para anclar, renombrar o agregar etiquetas."
+ "value" : "Controls randomness. Higher values make output more creative.",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Klik met de rechtermuisknop op een gesprek om vast te zetten, hernoemen of tags toe te voegen."
+ "value" : "Ελέγχει την τυχαιότητα. Μεγαλύτερες τιμές κάνουν το αποτέλεσμα πιο δημιουργικό.",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κάντε δεξί κλικ σε μια συνομιλία για καρφίτσωμα, μετονομασία ή προσθήκη ετικετών."
+ "value" : "Steuert die Zufälligkeit. Höhere Werte machen die Ausgabe kreativer."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cliquez avec le bouton droit sur une conversation pour l’épingler, la renommer ou ajouter des tags."
+ "value" : "ランダム性を制御します。値が高いほど出力がより創造的になります。",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Högerklicka på en konversation för att fästa, byta namn eller lägga till taggar."
+ "value" : "Controla a aleatoriedade. Valores mais altos tornam a saída mais criativa.",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Right-click a conversation to pin, rename, or add tags."
+ "value" : "Styr slumpmässigheten. Högre värden gör resultatet mer kreativt."
}
}
}
},
- "How the assistant will address you. Max 50 characters." : {
- "comment" : "A description of how the assistant will address the user.",
+ "Anonymous" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Come l’assistente si rivolgerà a te. Max 50 caratteri"
+ "value" : "Anonyme"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Wie der Assistent Sie ansprechen wird. Maximal 50 Zeichen"
+ "value" : "Anonym",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アシスタントがあなたを呼ぶ名前。最大50文字。"
+ "value" : "Anoniem",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Como o assistente se dirigirá a si. Máx. 50 caracteres."
+ "value" : "Ανώνυμος",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cómo se dirigirá a ti el asistente. Máx 50 caracteres"
+ "value" : "Anónimo"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hoe de assistent u zal aanspreken. Maximaal 50 tekens"
+ "value" : "Anonymous",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πώς θα σας απευθύνεται ο βοηθός. Μέγιστο 50 χαρακτήρες."
+ "value" : "Anonimo"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Comment l’assistant s’adressera à vous. 50 caractères max."
+ "value" : "匿名"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hur assistenten kommer att tilltala dig. Max 50 tecken."
+ "value" : "Anonym"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "How the assistant will address you. Max 50 characters"
+ "value" : "Anónimo"
}
}
}
},
- "Delete Memory Item?" : {
- "comment" : "A confirmation dialog asking the user to delete a memory item.",
+ "Stop Recording" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminare l’elemento di memoria?"
+ "value" : "Stop Recording"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Speicherelement löschen?"
+ "value" : "Opname stoppen"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メモリー項目を削除しますか?"
+ "value" : "Interrompi registrazione"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar item da memória?"
+ "value" : "Stoppa inspelning"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "¿Eliminar el elemento de memoria?"
+ "value" : "Διακοπή εγγραφής"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geheugenitem verwijderen?"
+ "value" : "Detener grabación"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαγραφή στοιχείου μνήμης;"
+ "value" : "Arrêter l’enregistrement"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supprimer l’élément de mémoire ?"
+ "value" : "録音停止"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vill du radera minnesobjektet?"
+ "value" : "Parar Gravação"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Delete Memory Item?"
+ "value" : "Aufnahme stoppen"
}
}
}
},
- "The profile has conflicting changes with the same revision." : {
- "comment" : "Error message when a profile change is detected to be conflicting with a previous revision.",
+ "Loading image..." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Il profilo presenta modifiche in conflitto con la stessa revisione."
+ "value" : "Chargement de l’image...",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Das Profil enthält widersprüchliche Änderungen mit derselben Revision."
+ "value" : "Caricamento immagine...",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "プロフィールに同じリビジョンとの競合する変更があります。"
+ "value" : "Loading image...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O perfil tem alterações em conflito com a mesma revisão."
+ "value" : "Afbeelding laden..."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El perfil tiene cambios en conflicto con la misma revisión."
+ "value" : "Bild wird geladen..."
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het profiel bevat conflicterende wijzigingen met dezelfde revisie."
+ "value" : "Cargando imagen..."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le profil comporte des modifications en conflit avec la même révision."
+ "value" : "Laddar bild..."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το προφίλ έχει αντικρουόμενες αλλαγές με την ίδια αναθεώρηση."
+ "value" : "画像を読み込み中..."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profilen har motstridiga ändringar med samma revision."
+ "value" : "A carregar imagem..."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The profile has conflicting changes with the same revision."
+ "value" : "Φόρτωση εικόνας..."
}
}
}
},
- "If you continue, future calls can execute without confirmation for this configuration." : {
- "comment" : "A message that appears in an alert that asks the user to allow a tool to access a resource.",
+ "Show All (%lld)" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Se continui, le chiamate future potranno essere eseguite senza conferma per questa configurazione."
+ "value" : "Tout afficher (%lld)",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Wenn Sie fortfahren, können zukünftige Aufrufe für diese Konfiguration ohne Bestätigung ausgeführt werden."
+ "value" : "Mostra tutto (%lld)"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "続行すると、この構成では今後の呼び出しを確認なしで実行できます。"
+ "value" : "Show All (%lld)"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Se continuar, as chamadas futuras poderão ser executadas sem confirmação para esta configuração."
+ "value" : "Alles tonen (%lld)"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Si continúas, las próximas llamadas podrán ejecutarse sin confirmación para esta configuración."
+ "value" : "Alle anzeigen (%lld)"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Als je doorgaat, kunnen toekomstige aanroepen voor deze configuratie zonder bevestiging worden uitgevoerd."
+ "value" : "Mostrar todo (%lld)"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αν συνεχίσετε, οι μελλοντικές κλήσεις μπορούν να εκτελούνται χωρίς επιβεβαίωση για αυτήν τη διαμόρφωση."
+ "value" : "Visa alla (%lld)",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Si vous continuez, les prochains appels pourront être exécutés sans confirmation pour cette configuration."
+ "value" : "すべて表示(%lld)"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Om du fortsätter kan framtida anrop köras utan bekräftelse för den här konfigurationen."
+ "value" : "Mostrar tudo (%lld)",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "If you continue, future calls can execute without confirmation for this configuration."
+ "value" : "Εμφάνιση όλων (%lld)",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A button that shows all items in a category. The number in parentheses is the number of items in the category."
},
- "Extra Info" : {
- "comment" : "A label displayed above the user's extra information.",
+ "iCloud container unavailable" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Informazioni aggiuntive"
+ "value" : "iCloud container unavailable",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
+ "stringUnit" : {
+ "value" : "iCloud-behållaren är inte tillgänglig",
+ "state" : "translated"
+ }
+ },
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zusätzliche Informationen"
+ "value" : "Conteneur iCloud indisponible"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "追加情報"
+ "value" : "iCloudコンテナを利用できません",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Informação Extra"
+ "value" : "Contentor do iCloud indisponível",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Información adicional"
+ "value" : "Contenedor de iCloud no disponible"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Extra info"
+ "value" : "Contenitore iCloud non disponibile"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επιπλέον Πληροφορίες"
+ "value" : "iCloud-container niet beschikbaar"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Infos supplémentaires"
+ "value" : "Το κοντέινερ iCloud δεν είναι διαθέσιμο",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Extra information"
+ "value" : "iCloud-Container nicht verfügbar",
+ "state" : "translated"
}
- },
+ }
+ }
+ },
+ "%.2f" : {
+ "shouldTranslate" : false,
+ "localizations" : {
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Extra Info"
+ "value" : "%.2f",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label displaying the current value of the topP parameter."
},
- "Keep it short and descriptive" : {
+ "Speech recognition is not available on this device." : {
+ "comment" : "Error message when the speech recognition is not available on the device.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mantienilo breve e descrittivo"
+ "value" : "Il riconoscimento vocale non è disponibile su questo dispositivo."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kurz und prägnant"
+ "value" : "El reconocimiento de voz no está disponible en este dispositivo.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "短く分かりやすく"
+ "value" : "Speech recognition is not available on this device."
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Seja breve e descritivo"
+ "value" : "Spracherkennung ist auf diesem Gerät nicht verfügbar.",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sé breve y descriptivo"
+ "value" : "La reconnaissance vocale n’est pas disponible sur cet appareil.",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Houd het kort en duidelijk"
+ "value" : "Η αναγνώριση ομιλίας δεν είναι διαθέσιμη σε αυτή τη συσκευή."
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Soyez bref et descriptif"
+ "value" : "Spraakherkenning is niet beschikbaar op dit apparaat."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Κρατήστε το σύντομο και περιγραφικό"
+ "value" : "このデバイスでは音声認識が利用できません。",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Håll det kort och beskrivande"
+ "value" : "Taligenkänning är inte tillgänglig på den här enheten."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Keep it short and descriptive"
+ "value" : "O reconhecimento de voz não está disponível neste dispositivo."
}
}
}
},
- "Synchronizing all app data..." : {
+ "%lld search tool(s) available on your server." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sincronizzazione di tutti i dati dell’app..."
+ "value" : "%lld outil(s) de recherche disponible(s) sur votre serveur.",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle App-Daten werden synchronisiert..."
+ "value" : "%lld Suchwerkzeug(e) auf Ihrem Server verfügbar.",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "すべてのアプリデータを同期中…"
+ "value" : "%lld zoekhulpmiddel(en) beschikbaar op uw server."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A sincronizar todos os dados da app…"
+ "value" : "%lld διαθέσιμο(α) εργαλείο(α) αναζήτησης στον διακομιστή σας.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sincronizando todos los datos de la app..."
+ "value" : "%lld ferramenta(s) de pesquisa disponíveis no seu servidor."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alle appgegevens synchroniseren..."
+ "value" : "%lld search tool(s) available on your server."
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συγχρονισμός όλων των δεδομένων της εφαρμογής..."
+ "value" : "%lld strumento\/i di ricerca disponibili sul tuo server."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronisation de toutes les données de l’app…"
+ "value" : "サーバーに %lld 個の検索ツールが利用可能です。"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synkroniserar all appdata..."
+ "value" : "%lld sökverktyg tillgängliga på din server."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchronizing all app data..."
+ "value" : "%lld herramienta(s) de búsqueda disponibles en su servidor."
}
}
- }
+ },
+ "comment" : "A footer that shows the number of search tools available on the user's server. The argument is the number of search tools."
},
- "Allow Once" : {
- "comment" : "A button that allows a single use of a tool.",
+ "Enter a positive whole number of input tokens." : {
+ "comment" : "A description of the input tokens field.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Consenti una volta"
+ "value" : "Ange ett positivt heltal för inmatningstoken.",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Einmal erlauben"
+ "value" : "Enter a positive integer number of input tokens"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "一度だけ許可する"
+ "value" : "Inserisci un numero intero positivo di token di input.",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Permitir uma vez"
+ "value" : "Introduza um número inteiro positivo de tokens de entrada."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Permitir una vez"
+ "value" : "Entrez un nombre entier positif de jetons d’entrée.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eenmalig toestaan"
+ "value" : "正の整数の入力トークン数を入力してください。"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Να επιτραπεί μία φορά"
+ "value" : "Voer een positief geheel aantal invoertokens in."
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Autoriser une fois"
+ "value" : "Introduce un número entero positivo de tokens de entrada.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tillåt en gång"
+ "value" : "Geben Sie eine positive ganze Zahl der Eingabetoken ein.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Allow Once"
+ "value" : "Εισάγετε έναν θετικό ακέραιο αριθμό εισόδων."
}
}
}
},
- "Voice ID" : {
- "comment" : "A label for the voice ID field.",
+ "Start a new conversation" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ID voce"
+ "value" : "Start a new conversation"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sprach-ID"
+ "value" : "Ξεκινήστε μια νέα συνομιλία",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "音声ID"
+ "value" : "Inizia una nuova conversazione",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ID de voz"
+ "value" : "Begin een nieuw gesprek",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ID de voz"
+ "value" : "Neue Unterhaltung starten"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Stem-ID"
+ "value" : "Commencer une nouvelle conversation",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ταυτότητα φωνής"
+ "value" : "新しい会話を始める",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ID vocal"
+ "value" : "Starta en ny konversation",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Röst-ID"
+ "value" : "Iniciar nova conversa",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voice ID"
+ "value" : "Iniciar una nueva conversación"
}
}
- }
+ },
+ "comment" : "Shortcut action to start a new chat."
},
- "Thinking..." : {
+ "The selected file is not a valid image." : {
+ "comment" : "Error message when the selected file is not a valid image.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sto pensando..."
+ "value" : "The selected file is not a valid image."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Denke..."
+ "value" : "Το επιλεγμένο αρχείο δεν είναι έγκυρη εικόνα."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "考え中..."
+ "value" : "Die ausgewählte Datei ist kein gültiges Bild.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A pensar..."
+ "value" : "Den valda filen är inte en giltig bild.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pensando..."
+ "value" : "O ficheiro selecionado não é uma imagem válida.",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bezig met nadenken..."
+ "value" : "Het geselecteerde bestand is geen geldige afbeelding.",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Réflexion en cours..."
+ "value" : "Il file selezionato non è un'immagine valida."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Σκέψη..."
+ "value" : "選択したファイルは有効な画像ではありません。"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tänker..."
+ "value" : "Le fichier sélectionné n’est pas une image valide."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Thinking..."
+ "value" : "El archivo seleccionado no es una imagen válida.",
+ "state" : "translated"
}
}
}
},
- "Images" : {
- "comment" : "A section header for a list of images.",
+ "Ask Every Time" : {
+ "comment" : "Text displayed in a picker when a user is asked for permission to use an external tool.",
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Immagini"
+ "value" : "Fråga varje gång"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bilder"
+ "value" : "Demander à chaque fois"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "画像"
+ "value" : "Chiedi ogni volta",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Imagens"
+ "value" : "Preguntar siempre"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Imágenes"
+ "value" : "Ask Every Time"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afbeeldingen"
+ "value" : "毎回確認する"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εικόνες"
+ "value" : "Perguntar sempre",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Images"
+ "value" : "Elke keer vragen"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bilder"
+ "value" : "Jedes Mal fragen"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Images"
+ "value" : "Να γίνεται ερώτηση κάθε φορά",
+ "state" : "translated"
}
}
}
},
- "External MCP tool" : {
- "comment" : "Name of an MCP tool that is not part of the MCP SDK.",
+ "Get Started" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Strumento MCP esterno"
+ "value" : "Kom igång",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Externes MCP-Tool"
+ "value" : "Commencer"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "外部MCPツール"
+ "value" : "Inizia",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ferramenta MCP externa"
+ "value" : "Aan de slag",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Herramienta MCP externa"
+ "value" : "はじめる"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Externe MCP-tool"
+ "value" : "Comenzar",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Outil MCP externe"
+ "value" : "Get Started",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εξωτερικό εργαλείο MCP"
+ "value" : "Começar"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Externt MCP-verktyg"
+ "value" : "Loslegen",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "External MCP tool"
+ "value" : "Ξεκινήστε",
+ "state" : "translated"
}
}
}
},
- "MCP server" : {
- "comment" : "Default name for a MCP server.",
+ "Sends an image or PDF to a new OpenClient conversation." : {
+ "comment" : "Description of the intent that sends an image or PDF to a new OpenClient conversation.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Server MCP"
+ "value" : "Envía una imagen o PDF a una nueva conversación de OpenClient.",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-Server"
+ "value" : "Envia uma imagem ou PDF para uma nova conversa OpenClient."
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPサーバー"
+ "value" : "画像またはPDFを新しいOpenClientの会話に送信します。"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Servidor MCP"
+ "value" : "Invia un'immagine o un PDF a una nuova conversazione OpenClient."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Servidor MCP"
+ "value" : "Sendet ein Bild oder PDF an eine neue OpenClient-Konversation."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP-server"
+ "value" : "Sends an image or PDF to a new OpenClient conversation",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Serveur MCP"
+ "value" : "Envoie une image ou un PDF dans une nouvelle conversation OpenClient."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διακομιστής MCP"
+ "value" : "Skickar en bild eller PDF till en ny OpenClient-konversation."
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-server"
+ "value" : "Στέλνει μια εικόνα ή PDF σε μια νέα συνομιλία OpenClient."
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP server"
+ "value" : "Verzendt een afbeelding of PDF naar een nieuw OpenClient-gesprek."
}
}
}
},
- "The cloud deletion could not be completed." : {
- "comment" : "Error message when the cloud deletion fails.",
+ "Server" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile completare l’eliminazione dal cloud."
+ "value" : "Server"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Das Löschen aus der Cloud konnte nicht abgeschlossen werden."
+ "value" : "Servidor"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "クラウドからの削除を完了できませんでした。"
+ "value" : "Διακομιστής",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível concluir a eliminação da nuvem."
+ "value" : "サーバー"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudo completar la eliminación en la nube."
+ "value" : "Server",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Het verwijderen uit de cloud kon niet worden voltooid."
+ "value" : "Server",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η ολοκλήρωση της διαγραφής από το cloud."
+ "value" : "Server"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La suppression dans le cloud n’a pas pu être effectuée."
+ "value" : "Server",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Det gick inte att slutföra borttagningen från molnet."
+ "value" : "Servidor"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The cloud deletion could not be completed."
+ "value" : "Serveur"
}
}
}
},
- "Any additional context you want the assistant to know. Max 500 characters." : {
- "comment" : "A description of the extra information section.",
+ "iCloud Sync is off" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Qualsiasi informazione aggiuntiva che desideri comunicare all’assistente. Massimo 500 caratteri."
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zusätzliche Informationen, die Sie dem Assistenten mitteilen möchten. Maximal 500 Zeichen."
+ "value" : "iCloud-Synchronisierung ist deaktiviert"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "追加情報セクションの説明です。"
+ "value" : "La synchronisation iCloud est désactivée"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Qualquer informação adicional que queira que o assistente saiba. Máx. 500 caracteres."
+ "value" : "iCloud-synchronisatie is uitgeschakeld"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cualquier información adicional que desees que el asistente conozca. Máximo 500 caracteres."
+ "value" : "La sincronización de iCloud está desactivada",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eventuele aanvullende context die u wilt dat de assistent weet. Maximaal 500 tekens."
+ "value" : "La sincronizzazione iCloud è disattivata",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Περιγραφή της ενότητας με τις επιπλέον πληροφορίες."
+ "value" : "iCloud同期はオフです",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toute information supplémentaire que vous souhaitez que l’assistant connaisse. Maximum 500 caractères."
+ "value" : "A sincronização do iCloud está desativada"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eventuell ytterligare information du vill att assistenten ska känna till. Max 500 tecken."
+ "value" : "iCloud-synkronisering är avstängd",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Any additional context you want the assistant to know. Max 500 characters."
+ "value" : "iCloud Sync is off"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Ο συγχρονισμός iCloud είναι απενεργοποιημένος",
+ "state" : "translated"
}
}
}
},
- "Jump back into your latest conversation." : {
- "comment" : "Description of the widget that opens the most recently updated conversation in OpenClient.",
+ "Mono" : {
+ "comment" : "The name of the \"Mono\" app icon.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ritorna alla tua ultima conversazione."
+ "value" : "Mono",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Springe zurück zu deinem letzten Gespräch."
+ "value" : "Mono"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "最新の会話に戻る"
+ "value" : "Mono"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voltar à sua conversa mais recente."
+ "value" : "Mono"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vuelve a tu última conversación."
+ "value" : "Mono"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ga terug naar je laatste gesprek."
+ "value" : "Mono",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επιστροφή στην πιο πρόσφατη συνομιλία σας."
+ "value" : "Mono"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Reprenez votre dernière conversation."
+ "value" : "Mono",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hoppa tillbaka till din senaste konversation."
+ "value" : "Mono"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Jump back into your latest conversation"
+ "value" : "Mono",
+ "state" : "translated"
}
}
}
},
- "App Data" : {
- "comment" : "A section in the settings view that allows the user to reset all local data.",
+ "Your iCloud account or container is not currently available." : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dati app"
+ "value" : "A sua conta ou contentor do iCloud não está disponível de momento.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "App-Daten"
+ "value" : "Votre compte iCloud ou votre conteneur n’est pas disponible actuellement."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "アプリデータ"
+ "value" : "Dein iCloud-Account oder -Container ist derzeit nicht verfügbar."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dados da App"
+ "value" : "お使いのiCloudアカウントまたはコンテナは現在利用できません。"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Datos de la app"
+ "value" : "Je iCloud-account of -container is momenteel niet beschikbaar."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "App-gegevens"
+ "value" : "Ο λογαριασμός ή το κοντέινερ iCloud σας δεν είναι διαθέσιμο αυτήν τη στιγμή."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεδομένα εφαρμογής"
+ "value" : "Your iCloud account or container is not currently available."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Données de l’application"
+ "value" : "Il tuo account o contenitore iCloud non è attualmente disponibile.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Appdata"
+ "value" : "Ditt iCloud-konto eller din iCloud-behållare är inte tillgänglig just nu.",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "App Data"
+ "value" : "Tu cuenta o contenedor de iCloud no está disponible actualmente.",
+ "state" : "translated"
}
}
}
},
- "Your local profile and iCloud profile have different content with the same revision. Which profile would you like to keep?" : {
+ "How does Swift concurrency work?" : {
+ "comment" : "Title of a conversation.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il tuo profilo locale e il profilo iCloud hanno contenuti diversi con la stessa revisione. Quale profilo vuoi mantenere?"
+ "value" : "How does Swift concurrency work?"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ihr lokales Profil und Ihr iCloud-Profil enthalten bei derselben Revision unterschiedliche Inhalte. Welches Profil möchten Sie behalten?"
+ "value" : "Πώς λειτουργεί η ασύγχρονη εκτέλεση στο Swift;"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ローカルプロフィールとiCloudプロフィールの内容が同じリビジョンで異なります。どちらのプロフィールを残しますか?"
+ "value" : "Wie funktioniert Swift Concurrency?"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O seu perfil local e o perfil do iCloud têm conteúdos diferentes com a mesma revisão. Que perfil pretende manter?"
+ "value" : "Come funziona la concorrenza in Swift?",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tu perfil local y tu perfil de iCloud tienen contenido diferente con la misma revisión. ¿Qué perfil quieres conservar?"
+ "value" : "Hoe werkt Swift-concurrentie?"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Je lokale profiel en je iCloud-profiel bevatten verschillende gegevens met dezelfde revisie. Welk profiel wil je behouden?"
+ "value" : "Comment fonctionne la concurrence en Swift ?"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Votre profil local et votre profil iCloud contiennent des données différentes avec la même révision. Quel profil souhaitez-vous conserver ?"
+ "value" : "Swiftの並行処理はどう機能するのか?"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το τοπικό προφίλ και το προφίλ iCloud έχουν διαφορετικό περιεχόμενο με την ίδια αναθεώρηση. Ποιο προφίλ θέλετε να διατηρήσετε;"
+ "value" : "Como funciona a concorrência em Swift?",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Din lokala profil och din iCloud-profil har olika innehåll med samma revision. Vilken profil vill du behålla?"
+ "value" : "Hur fungerar Swift-konkurens?"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Your local profile and iCloud profile have different content with the same revision. Which profile would you like to keep?"
+ "value" : "¿Cómo funciona la concurrencia en Swift?"
}
}
}
},
- "Delete suggestion" : {
+ "Choose your app icon" : {
+ "comment" : "A tip to choose an icon for the app.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina suggerimento"
+ "value" : "Choisissez l’icône de votre app"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vorschlag löschen"
+ "value" : "Wähle dein App-Symbol aus",
+ "state" : "translated"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "提案を削除"
+ "value" : "Escolha o ícone da sua app",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminar sugestão"
+ "value" : "Elige el icono de tu app",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar sugerencia"
+ "value" : "Επιλέξτε το εικονίδιο της εφαρμογής σας"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suggestie verwijderen"
+ "value" : "Kies het pictogram van je app"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαγραφή πρότασης"
+ "value" : "Choose your app icon"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Supprimer la suggestion"
+ "value" : "アプリアイコンを選択してください",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ta bort förslag"
+ "value" : "Välj appikonen"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Delete suggestion"
+ "value" : "Scegli l’icona della tua app"
}
}
}
},
- "Explain quantum entanglement" : {
- "comment" : "Title of a conversation.",
+ "Long-press any message and tap \"Add to Favourites\" to save it here." : {
+ "comment" : "A description of the action to add a message to the favourites.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Spiegare l’entanglement quantistico"
+ "value" : "メッセージを長押しして「お気に入りに追加」をタップすると、ここに保存されます。",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Quantenverschränkung erklären"
+ "value" : "Long-press any message and tap \"Add to Favorites\" to save it here.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "量子もつれについて説明する"
+ "value" : "Tieni premuto un messaggio e tocca \"Aggiungi ai Preferiti\" per salvarlo qui.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Explicar o entrelaçamento quântico"
+ "value" : "Mantén pulsado cualquier mensaje y toca \"Añadir a Favoritos\" para guardarlo aquí."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Explicar el entrelazamiento cuántico"
+ "value" : "Pressione longamente qualquer mensagem e toque em \"Adicionar aos Favoritos\" para guardá-la aqui.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Leg kwantumverstrengeling uit"
+ "value" : "Halte eine Nachricht gedrückt und tippe auf „Zu Favoriten hinzufügen“, um sie hier zu speichern."
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εξήγηση της κβαντικής εμπλοκής"
+ "value" : "Πατήστε παρατεταμένα οποιοδήποτε μήνυμα και επιλέξτε «Προσθήκη στα Αγαπημένα» για να το αποθηκεύσετε εδώ."
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Expliquer l’intrication quantique"
+ "value" : "Appuyez longuement sur un message et touchez « Ajouter aux favoris » pour l’enregistrer ici."
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Förklara kvantintrassling"
+ "value" : "Tryck länge på ett meddelande och tryck på \"Lägg till i favoriter\" för att spara det här.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Explain quantum entanglement"
+ "value" : "Houd een bericht ingedrukt en tik op \"Toevoegen aan favorieten\" om het hier op te slaan.",
+ "state" : "translated"
}
}
}
},
- "The selected image could not be prepared. Please choose another image." : {
- "comment" : "Error message displayed when an error occurs during the preparation of an image.",
+ "http:\/\/localhost:4000" : {
+ "comment" : "A placeholder URL for the server URL field.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Non è stato possibile preparare l’immagine selezionata. Scegli un’altra immagine."
+ "value" : "http:\/\/localhost:4000",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Das ausgewählte Bild konnte nicht vorbereitet werden. Bitte wählen Sie ein anderes Bild aus."
+ "value" : "http:\/\/localhost:4000"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "選択した画像を準備できませんでした。別の画像を選択してください。"
+ "value" : "http:\/\/localhost:4000",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível preparar a imagem selecionada. Escolha outra imagem."
+ "value" : "http:\/\/localhost:4000",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pudo preparar la imagen seleccionada. Elige otra imagen."
+ "value" : "http:\/\/localhost:4000"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De geselecteerde afbeelding kon niet worden voorbereid. Kies een andere afbeelding."
+ "value" : "http:\/\/localhost:4000"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν ήταν δυνατή η προετοιμασία της επιλεγμένης εικόνας. Επιλέξτε άλλη εικόνα."
+ "value" : "http:\/\/localhost:4000",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L’image sélectionnée n’a pas pu être préparée. Veuillez choisir une autre image."
+ "value" : "http:\/\/localhost:4000"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Den valda bilden kunde inte förberedas. Välj en annan bild."
+ "value" : "http:\/\/localhost:4000"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The selected image could not be prepared. Please choose another image."
+ "value" : "http:\/\/localhost:4000",
+ "state" : "translated"
}
}
}
},
- "Remove from Favourites" : {
- "comment" : "A label for removing a message from the user's favourites.",
+ "Translator" : {
+ "comment" : "Name of the prompt template for translating text.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rimuovi dai Preferiti"
+ "value" : "Tradutor",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aus Favoriten entfernen"
+ "value" : "Traducteur",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "お気に入りから削除"
+ "value" : "Übersetzer"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Remover dos Favoritos"
+ "value" : "Traductor"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Quitar de Favoritos"
+ "value" : "Μεταφραστής"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verwijderen uit favorieten"
+ "value" : "Vertaler"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αφαίρεση από Αγαπημένα"
+ "value" : "Translator"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Retirer des favoris"
+ "value" : "Översättare",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ta bort från favoriter"
+ "value" : "翻訳者",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Remove from Favorites"
+ "value" : "Traduttore",
+ "state" : "translated"
}
}
}
},
- "Image Generation" : {
- "comment" : "A name for an LLM model that generates images.",
+ "Enable Web Search" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Generazione Immagini"
+ "value" : "Webzoekfunctie inschakelen"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bildgenerierung"
+ "value" : "Enable Web Search",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "画像生成"
+ "value" : "Activer la recherche Web"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geração de Imagens"
+ "value" : "Activar búsqueda web"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Generación de imágenes"
+ "value" : "Ενεργοποίηση Αναζήτησης Ιστού"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Beeldgeneratie"
+ "value" : "ウェブ検索を有効にする"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Génération d’images"
+ "value" : "Ativar Pesquisa Web",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δημιουργία Εικόνων"
+ "value" : "Aktivera webbsökning",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bildgenerering"
+ "value" : "Abilita ricerca web",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image Generation"
+ "value" : "Websuche aktivieren"
}
}
- }
+ },
+ "comment" : "A label for a button that enables web search."
},
- "Submit" : {
+ "votes" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Invia"
+ "value" : "votes",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Senden"
+ "value" : "votos",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "送信"
+ "value" : "ψήφοι",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Enviar"
+ "value" : "röster",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enviar"
+ "value" : "voti"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verzenden"
+ "value" : "Stimmen"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Υποβολή"
+ "value" : "votes"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Envoyer"
+ "value" : "投票数",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Skicka"
+ "value" : "votos"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Submit"
+ "value" : "stemmen"
}
}
}
},
- "Test Connection" : {
+ "Show API Key" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Testa connessione"
+ "value" : "Mostrar clave API"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verbindung testen"
+ "value" : "APIキーを表示"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "接続をテスト"
+ "value" : "Mostrar chave API"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Testar ligação"
+ "value" : "API-Schlüssel anzeigen"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Probar conexión"
+ "value" : "Mostra chiave API"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verbinding testen"
+ "value" : "Show API Key",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tester la connexion"
+ "value" : "Afficher la clé API"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δοκιμή σύνδεσης"
+ "value" : "Visa API-nyckel",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Testa anslutning"
+ "value" : "Εμφάνιση κλειδιού API"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Test Connection"
+ "value" : "API-sleutel tonen"
}
}
}
},
- "Ok" : {
+ "Start a private chat" : {
+ "comment" : "A description of the private chat feature.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OK"
+ "value" : "Démarrer une conversation privée",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OK"
+ "value" : "Ξεκινήστε μια ιδιωτική συνομιλία"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OK"
+ "value" : "Iniciar un chat privado",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OK"
+ "value" : "Starta en privat chatt",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OK"
+ "value" : "Avvia una chat privata",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OK"
+ "value" : "Start a private chat"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OK"
+ "value" : "Iniciar uma conversa privada"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OK"
+ "value" : "プライベートチャットを開始"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OK"
+ "value" : "Privaten Chat starten"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ok"
+ "value" : "Begin een privégesprek"
}
}
}
},
- "Error" : {
+ "Untitled Conversation" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Errore"
- }
- },
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fehler"
+ "value" : "Namnlös konversation",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "エラー"
+ "value" : "Untitled Conversation"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Erro"
+ "value" : "Conversa sem título",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Error"
+ "value" : "Conversation sans titre"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fout"
+ "value" : "Naamloos gesprek",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Erreur"
+ "value" : "Unbenanntes Gespräch"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Σφάλμα"
+ "value" : "Συνομιλία χωρίς τίτλο"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fel"
+ "value" : "無題の会話"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Error"
+ "value" : "Conversazione senza titolo"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "Conversación sin título",
+ "state" : "translated"
}
}
}
},
- "Too many requests. Please try again later." : {
+ "Email Composer" : {
+ "comment" : "Name of a prompt template for composing emails.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Troppe richieste. Riprova più tardi."
+ "value" : "E-mailcomposer",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Zu viele Anfragen. Bitte versuchen Sie es später erneut."
+ "value" : "Compositore Email",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "リクエストが多すぎます。後でもう一度お試しください。"
+ "value" : "メール作成ツール"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Demasiados pedidos. Por favor, tente novamente mais tarde."
+ "value" : "Compositor de Email"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Demasiadas solicitudes. Por favor, inténtalo de nuevo más tarde."
+ "value" : "Compositor de correo electrónico"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Te veel verzoeken. Probeer het later opnieuw."
+ "value" : "Σύνθετης Email"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πάρα πολλά αιτήματα. Παρακαλώ δοκιμάστε ξανά αργότερα."
+ "value" : "E-postkompositör"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Trop de requêtes. Veuillez réessayer plus tard."
+ "value" : "Compositeur d’e-mails"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "För många förfrågningar. Försök igen senare."
+ "value" : "Email Composer"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Too many requests. Please try again later."
+ "value" : "E-Mail-Verfasser"
}
}
}
},
- "Profile conflict" : {
+ "Memory Item %lld" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conflitto del profilo"
+ "value" : "Item de memória %lld"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Profilkonflikt"
+ "value" : "メモリー項目 %lld",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "プロフィールの競合"
+ "value" : "Geheugenitem %lld"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conflito de perfil"
+ "value" : "Speichereintrag %lld"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conflicto de perfil"
+ "value" : "Στοιχείο μνήμης %lld"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Profielconflict"
+ "value" : "Minnesobjekt %lld",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Σύγκρουση προφίλ"
+ "value" : "Memory Item %lld"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conflit de profil"
+ "value" : "Elemento di memoria %lld",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profilkonflikt"
+ "value" : "Elemento de memoria %lld"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profile conflict"
+ "value" : "Élément mémoire %lld"
}
}
}
},
- "The server URL is not valid." : {
+ "Pinned" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L'URL del server non è valido."
+ "value" : "Vastgezet"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Server-URL ist ungültig."
+ "value" : "Fastnålad"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "サーバーのURLが無効です。"
+ "value" : "Καρφιτσωμένα",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O URL do servidor não é válido."
+ "value" : "Fijado"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La URL del servidor no es válida."
+ "value" : "ピン留め済み"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De server-URL is niet geldig."
+ "value" : "Angeheftet"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "L’URL du serveur n’est pas valide."
+ "value" : "Épinglé",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η διεύθυνση URL του διακομιστή δεν είναι έγκυρη."
+ "value" : "Fissate",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Serverns URL är inte giltig."
+ "value" : "Pinned"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The server URL is not valid."
+ "value" : "Fixadas"
}
}
- }
+ },
+ "comment" : "Title for the section of conversations that are pinned."
},
- "Pending" : {
+ "Currently unavailable" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "In sospeso"
+ "value" : "Momenteel niet beschikbaar"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ausstehend"
+ "value" : "För närvarande inte tillgängligt"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "保留中"
+ "value" : "Προς το παρόν μη διαθέσιμο",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pendente"
+ "value" : "Actualmente no disponible",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pendiente"
+ "value" : "Derzeit nicht verfügbar",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "In behandeling"
+ "value" : "Actuellement indisponible",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εκκρεμεί"
+ "value" : "現在利用できません"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "En attente"
+ "value" : "Al momento non disponibile"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Väntar"
+ "value" : "Currently unavailable",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pending"
+ "value" : "Atualmente indisponível"
}
}
}
},
- "Image could not be loaded" : {
- "comment" : "A message displayed when an image fails to load.",
+ "Generated Image" : {
+ "comment" : "Name of the image attachment displayed in the chat.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Immagine non caricabile"
+ "value" : "Gegenereerde afbeelding",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bild konnte nicht geladen werden"
+ "value" : "Genererad bild",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "画像を読み込めませんでした"
+ "value" : "Image générée"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível carregar a imagem"
+ "value" : "Imagen generada"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudo cargar la imagen"
+ "value" : "生成画像",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afbeelding kon niet worden geladen"
+ "value" : "Generiertes Bild"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η εικόνα δεν μπόρεσε να φορτωθεί"
+ "value" : "Παραγόμενη εικόνα",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossible de charger l’image"
+ "value" : "Immagine generata",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bilden kunde inte laddas"
+ "value" : "Generated Image",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Image could not be loaded"
+ "value" : "Imagem Gerada",
+ "state" : "translated"
}
}
}
},
- "Version %@ (%@)" : {
- "comment" : "A label displaying the current version of the app and its build number. The first argument is the string “CFBundleShortVersionString” or the string “—”. The second argument is the string “CFBundleVersion” or the string “—”.",
+ "OpenClient may summarise or exclude older messages without removing them from your history." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Versione %1$@ (%2$@)"
+ "value" : "OpenClient kan sammanfatta eller utesluta äldre meddelanden utan att ta bort dem från din historik."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Version %1$@ (%2$@)"
+ "value" : "OpenClient may summarize or exclude older messages without removing them from your history."
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "バージョン %1$@(%2$@)"
+ "value" : "OpenClient può riassumere o escludere i messaggi più vecchi senza rimuoverli dalla tua cronologia.",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Versão %1$@ (%2$@)"
+ "value" : "O OpenClient pode resumir ou excluir mensagens antigas sem as remover do seu histórico."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Versión %1$@ (%2$@)"
+ "value" : "OpenClient peut résumer ou exclure les anciens messages sans les supprimer de votre historique."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Versie %1$@ (%2$@)"
+ "value" : "OpenClientは古いメッセージを履歴から削除せずに要約または除外することがあります。"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Version %1$@ (%2$@)"
+ "value" : "OpenClient kan oudere berichten samenvatten of uitsluiten zonder ze uit je geschiedenis te verwijderen.",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Έκδοση %1$@ (%2$@)"
+ "value" : "OpenClient puede resumir o excluir mensajes antiguos sin eliminarlos de tu historial.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Version %1$@ (%2$@)"
+ "value" : "OpenClient kann ältere Nachrichten zusammenfassen oder ausblenden, ohne sie aus Ihrem Verlauf zu entfernen."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "new",
- "value" : "Version %1$@ (%2$@)"
+ "value" : "Το OpenClient μπορεί να συνοψίζει ή να εξαιρεί παλαιότερα μηνύματα χωρίς να τα αφαιρεί από το ιστορικό σας.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A description of how OpenClient can remove older messages from the user's history."
},
- "Share your idea" : {
+ "Deleting synchronized data..." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Condividi la tua idea"
+ "value" : "Διαγραφή συγχρονισμένων δεδομένων..."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Teile deine Idee"
+ "value" : "Tar bort synkroniserade data..."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アイデアを共有する"
+ "value" : "同期データを削除中…",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Partilhe a sua ideia"
+ "value" : "Gesynchroniseerde gegevens worden verwijderd..."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Comparte tu idea"
+ "value" : "Eliminando datos sincronizados..."
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deel je idee"
+ "value" : "Suppression des données synchronisées…"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μοιραστείτε την ιδέα σας"
+ "value" : "Synchronisierte Daten werden gelöscht …"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Partagez votre idée"
+ "value" : "A eliminar dados sincronizados..."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dela din idé"
+ "value" : "Eliminazione dei dati sincronizzati...",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Share your idea"
+ "value" : "Deleting synchronized data..."
}
}
}
},
- "No Conversations" : {
+ "Last successful synchronization: %@" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessuna conversazione"
+ "value" : "Τελευταίος επιτυχής συγχρονισμός: %@"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Keine Unterhaltungen"
+ "value" : "Ultima sincronizzazione riuscita: %@",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "会話なし"
+ "value" : "Última sincronización exitosa: %@"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sem Conversas"
+ "value" : "Laatste succesvolle synchronisatie: %@",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sin conversaciones"
+ "value" : "最後に正常に同期した日時:%@",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Geen gesprekken"
+ "value" : "Letzte erfolgreiche Synchronisierung: %@"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Καμία συνομιλία"
+ "value" : "Dernière synchronisation réussie : %@",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucune conversation"
+ "value" : "Last successful synchronization: %@",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga konversationer"
+ "value" : "Última sincronização bem-sucedida: %@"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No Conversations"
+ "value" : "Senaste lyckade synkronisering: %@"
}
}
}
},
- "Running %@..." : {
- "comment" : "A label indicating that a tool is currently running. The argument is the name of the tool.",
+ "Save" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esecuzione di %@..."
+ "value" : "Αποθήκευση"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%@ wird ausgeführt …"
+ "value" : "Spara",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%@を実行中…"
+ "value" : "保存"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A executar %@..."
+ "value" : "Opslaan"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ejecutando %@..."
+ "value" : "Guardar"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%@ wordt uitgevoerd..."
+ "value" : "Enregistrer",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Exécution de %@…"
+ "value" : "Speichern",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εκτελείται το %@..."
+ "value" : "Guardar",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kör %@..."
+ "value" : "Salva",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Running %@…"
+ "value" : "Save",
+ "state" : "translated"
}
}
}
},
- "Automate OpenClient with the Shortcuts app using the URL scheme actions above." : {
- "comment" : "A description of how to use the Shortcuts app to open OpenClient.",
+ "Update OpenClient" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Automatizza OpenClient con l’app Comandi usando le azioni dello schema URL sopra."
- }
- },
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Automatisieren Sie OpenClient mit der Kurzbefehle-App unter Verwendung der oben genannten URL-Schema-Aktionen."
+ "value" : "OpenClient aktualisieren",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "上記のURLスキームアクションを使って、ショートカットアプリでOpenClientを自動化します。"
+ "value" : "Mettre à jour OpenClient",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Automatize o OpenClient com a app Atalhos usando as ações do esquema URL acima."
+ "value" : "OpenClient bijwerken",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Automatiza OpenClient con la app Atajos usando las acciones del esquema de URL mencionadas arriba."
+ "value" : "Actualizar OpenClient"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Automatiseer OpenClient met de Opdrachten-app via de bovenstaande URL-scheme-acties."
+ "value" : "Aggiorna OpenClient",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αυτοματοποιήστε το OpenClient με την εφαρμογή Συντομεύσεις χρησιμοποιώντας τις παραπάνω ενέργειες σχήματος URL."
+ "value" : "OpenClientをアップデート",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Automatisez OpenClient avec l’app Raccourcis en utilisant les actions du schéma d’URL ci-dessus."
+ "value" : "Atualizar o OpenClient",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Automatisera OpenClient med appen Genvägar med hjälp av URL-schemakommandona ovan."
+ "value" : "Uppdatera OpenClient"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Automate OpenClient with the Shortcuts app using the URL scheme actions above."
+ "value" : "Update OpenClient"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "state" : "translated",
+ "value" : "Ενημέρωση του OpenClient"
}
}
- }
+ },
+ "comment" : "A button that updates the OpenClient app."
},
- "If you continue, future calls will be blocked for this server configuration." : {
- "comment" : "A message displayed in an alert that warns the user of the consequences of denying a permanent permission.",
+ "Images" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Se continui, le chiamate future verranno bloccate per questa configurazione del server."
+ "value" : "Afbeeldingen",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Wenn Sie fortfahren, werden zukünftige Aufrufe für diese Serverkonfiguration blockiert."
+ "value" : "Imágenes",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "続行すると、このサーバー設定に対する今後の呼び出しはブロックされます。"
+ "value" : "Εικόνες",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Se continuar, as chamadas futuras serão bloqueadas para esta configuração do servidor."
+ "value" : "画像",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Si continúas, las llamadas futuras se bloquearán para esta configuración del servidor."
+ "value" : "Bilder",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Als je doorgaat, worden toekomstige aanroepen voor deze serverconfiguratie geblokkeerd."
+ "value" : "Immagini"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Si vous continuez, les prochains appels seront bloqués pour cette configuration du serveur."
+ "value" : "Images",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αν συνεχίσετε, οι μελλοντικές κλήσεις θα αποκλειστούν για αυτήν τη διαμόρφωση διακομιστή."
+ "value" : "Bilder",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Om du fortsätter blockeras framtida anrop för den här serverkonfigurationen."
+ "value" : "Images",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "If you continue, future calls will be blocked for this server configuration."
+ "value" : "Imagens"
}
}
- }
+ },
+ "comment" : "A section header for a list of images."
},
- "OpenClient version %@ is available. Would you like to update now?" : {
- "comment" : "A message that is displayed in a notification when an update is available. The argument is the version number of the update.",
+ "OK" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "È disponibile la versione %@ di OpenClient. Vuoi aggiornarla ora?"
+ "value" : "OK"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient-Version %@ ist verfügbar. Möchten Sie jetzt aktualisieren?"
+ "value" : "OK"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClientバージョン %@ が利用可能です。今すぐアップデートしますか?"
+ "value" : "OK"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A versão %@ do OpenClient está disponível. Pretende atualizar agora?"
+ "value" : "OK"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La versión %@ de OpenClient está disponible. ¿Quieres actualizar ahora?"
+ "value" : "OK",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient-versie %@ is beschikbaar. Wil je nu bijwerken?"
+ "value" : "OK"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La version %@ d’OpenClient est disponible. Voulez-vous effectuer la mise à jour maintenant ?"
+ "value" : "OK",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η έκδοση %@ του OpenClient είναι διαθέσιμη. Θέλετε να κάνετε ενημέρωση τώρα;"
+ "value" : "OK"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient-version %@ är tillgänglig. Vill du uppdatera nu?"
+ "value" : "OK",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient version %@ is available. Would you like to update now?"
+ "value" : "OK"
}
}
}
},
- "Personalization" : {
- "comment" : "A heading for the personalization settings.",
+ "Running %lld tool calls..." : {
+ "comment" : "A message indicating that multiple tools are currently running.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalizzazione"
+ "value" : "Er worden %lld toolaanroepen uitgevoerd…"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalisierung"
+ "value" : "Εκτελούνται %lld κλήσεις εργαλείων..."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "パーソナライズ"
+ "value" : "Running %lld tool calls...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Personalização"
+ "value" : "Ejecutando %lld llamadas a herramientas...",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalización"
+ "value" : "Exécution de %lld appels d’outils..."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Personalisatie"
+ "value" : "%lld 件のツール呼び出しを実行中…",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εξατομίκευση"
+ "value" : "A executar %lld chamadas de ferramentas...",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Personnalisation"
+ "value" : "Kör %lld verktygsanrop...",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Personalisering"
+ "value" : "Esecuzione di %lld chiamate agli strumenti...",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personalization"
+ "value" : "%lld Tool-Aufrufe werden ausgeführt..."
}
}
}
},
- "Update required" : {
- "comment" : "A title for the update required alert.",
+ "The request was cancelled." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aggiornamento richiesto"
+ "value" : "The request was cancelled.",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Update erforderlich"
+ "value" : "Το αίτημα ακυρώθηκε."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "アップデートが必要です"
+ "value" : "Die Anfrage wurde abgebrochen."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Atualização necessária"
+ "value" : "Begäran avbröts.",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Actualización necesaria"
+ "value" : "O pedido foi cancelado."
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Update vereist"
+ "value" : "Het verzoek is geannuleerd.",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mise à jour requise"
+ "value" : "La richiesta è stata annullata."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Απαιτείται ενημέρωση"
+ "value" : "リクエストはキャンセルされました。"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Uppdatering krävs"
+ "value" : "La requête a été annulée."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Update required"
+ "value" : "La solicitud fue cancelada."
}
}
}
},
- "Let the model find current information and include the sources it used." : {
- "comment" : "A description of the Web Search feature.",
+ "Enable tools from MCP servers like GitHub, databases, and more to let the model work with external services." : {
+ "comment" : "A description of a feature that allows the model to connect to external tools.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Lascia che il modello trovi informazioni aggiornate e includa le fonti utilizzate."
+ "value" : "Ative ferramentas dos servidores MCP como GitHub, bases de dados e mais para permitir que o modelo trabalhe com serviços externos.",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lassen Sie das Modell aktuelle Informationen finden und die verwendeten Quellen angeben."
+ "value" : "Activez les outils des serveurs MCP comme GitHub, les bases de données et plus encore pour permettre au modèle de travailler avec des services externes."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "モデルに最新情報を検索させ、使用した情報源を含めるようにします。"
+ "value" : "Habilita herramientas de servidores MCP como GitHub, bases de datos y más para que el modelo trabaje con servicios externos."
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deixe o modelo encontrar informações atuais e incluir as fontes que utilizou."
+ "value" : "Enable tools from MCP servers like GitHub, databases, and more to allow the model to work with external services.",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Permite que el modelo busque información actual e incluya las fuentes que utilizó."
+ "value" : "Ενεργοποιήστε εργαλεία από διακομιστές MCP όπως το GitHub, βάσεις δεδομένων και άλλα για να επιτρέψετε στο μοντέλο να συνεργάζεται με εξωτερικές υπηρεσίες.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Laat het model actuele informatie vinden en de gebruikte bronnen vermelden."
+ "value" : "Aktivieren Sie Werkzeuge von MCP-Servern wie GitHub, Datenbanken und mehr, damit das Modell mit externen Diensten arbeiten kann.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αφήστε το μοντέλο να βρει τρέχουσες πληροφορίες και να συμπεριλάβει τις πηγές που χρησιμοποίησε."
+ "value" : "GitHubやデータベースなどのMCPサーバーのツールを有効にして、モデルが外部サービスと連携できるようにします。",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Laissez le modèle trouver des informations actuelles et inclure les sources utilisées."
+ "value" : "Schakel tools van MCP-servers in zoals GitHub, databases en meer om het model met externe diensten te laten werken.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Låt modellen hitta aktuell information och inkludera de källor den använde."
+ "value" : "Aktivera verktyg från MCP-servrar som GitHub, databaser med mera för att låta modellen arbeta med externa tjänster.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Allow the model to find current information and include the sources it used."
+ "value" : "Abilita strumenti dai server MCP come GitHub, database e altro per permettere al modello di lavorare con servizi esterni.",
+ "state" : "translated"
}
}
}
},
- "Find past conversations" : {
- "comment" : "Subtitle for the \"Search\" action button in the Quick Actions widget.",
+ "Tools Could Not Be Loaded" : {
+ "comment" : "A title for a view that displays an error message when loading MCP server tools.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Trova conversazioni passate"
+ "value" : "ツールを読み込めませんでした",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vergangene Unterhaltungen finden"
+ "value" : "Δεν ήταν δυνατή η φόρτωση των εργαλείων"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "過去の会話を検索"
+ "value" : "Não foi possível carregar as ferramentas"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Encontrar conversas anteriores"
+ "value" : "Verktygen kunde inte läsas in",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Buscar conversaciones pasadas"
+ "value" : "Tools konnten nicht geladen werden",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vind eerdere gesprekken"
+ "value" : "Hulpmiddelen konden niet worden geladen",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Βρείτε προηγούμενες συνομιλίες"
+ "value" : "Tools Could Not Be Loaded"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rechercher des conversations passées"
+ "value" : "No se pudieron cargar las herramientas"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hitta tidigare konversationer"
+ "value" : "Impossible de charger les outils"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Find past conversations"
+ "value" : "Impossibile caricare gli strumenti"
}
}
}
},
- "Settings changed. This call can now only be denied." : {
- "comment" : "A warning message displayed when a user has changed their system settings, which affects the behavior of the app.",
+ "This backup version is not supported." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impostazioni modificate. Questa chiamata ora può essere solo rifiutata."
+ "value" : "Deze back-upversie wordt niet ondersteund."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Einstellungen geändert. Dieser Anruf kann jetzt nur noch abgelehnt werden."
+ "value" : "Αυτή η έκδοση αντιγράφου ασφαλείας δεν υποστηρίζεται."
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "設定が変更されました。この通話は拒否のみ可能になりました。"
+ "value" : "Esta versão de backup não é suportada."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Definições alteradas. Esta chamada só pode agora ser recusada."
+ "value" : "Esta versión de la copia de seguridad no es compatible.",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Configuración cambiada. Esta llamada ahora solo se puede rechazar."
+ "value" : "This backup version is not supported.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Instellingen gewijzigd. Dit gesprek kan nu alleen nog worden geweigerd."
+ "value" : "Diese Sicherungsversion wird nicht unterstützt."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Paramètres modifiés. Cet appel ne peut désormais qu’être refusé."
+ "value" : "Den här säkerhetskopieringsversionen stöds inte.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Οι ρυθμίσεις άλλαξαν. Αυτή η κλήση μπορεί πλέον μόνο να απορριφθεί."
+ "value" : "このバックアップバージョンはサポートされていません。",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inställningarna har ändrats. Det här samtalet kan nu endast nekas."
+ "value" : "Questa versione di backup non è supportata.",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Settings changed. This call can now only be denied."
+ "value" : "Cette version de sauvegarde n’est pas prise en charge."
}
}
}
},
- "No MCP servers loaded. Tap \"Load Available Tools\" to fetch them from your server." : {
- "comment" : "A label that describes the state when no MCP servers are available.",
+ "The selected image could not be prepared. Please choose another image." : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Nessun server MCP caricato. Tocca \"Carica Strumenti Disponibili\" per recuperarli dal tuo server."
- }
- },
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Keine MCP-Server geladen. Tippen Sie auf „Verfügbare Tools laden“, um sie von Ihrem Server abzurufen."
+ "value" : "Não foi possível preparar a imagem selecionada. Escolha outra imagem."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPサーバーが読み込まれていません。「利用可能なツールを読み込む」をタップしてサーバーから取得してください。"
+ "value" : "The selected image could not be prepared. Please choose another image."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nenhum servidor MCP carregado. Toque em \"Carregar Ferramentas Disponíveis\" para os obter do seu servidor."
+ "value" : "Δεν ήταν δυνατή η προετοιμασία της επιλεγμένης εικόνας. Επιλέξτε άλλη εικόνα."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se cargaron servidores MCP. Toca \"Cargar herramientas disponibles\" para obtenerlos de tu servidor."
+ "value" : "L’image sélectionnée n’a pas pu être préparée. Veuillez choisir une autre image."
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geen MCP-servers geladen. Tik op \"Beschikbare tools laden\" om ze van je server op te halen."
+ "value" : "De geselecteerde afbeelding kon niet worden voorbereid. Kies een andere afbeelding.",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aucun serveur MCP chargé. Appuyez sur « Charger les outils disponibles » pour les récupérer depuis votre serveur."
+ "value" : "Das ausgewählte Bild konnte nicht vorbereitet werden. Bitte wählen Sie ein anderes Bild aus.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν έχουν φορτωθεί MCP διακομιστές. Πατήστε «Φόρτωση Διαθέσιμων Εργαλείων» για να τους λάβετε από τον διακομιστή σας."
+ "value" : "Den valda bilden kunde inte förberedas. Välj en annan bild.",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inga MCP-servrar laddade. Tryck på \"Ladda tillgängliga verktyg\" för att hämta dem från din server."
+ "value" : "選択した画像を準備できませんでした。別の画像を選択してください。",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No MCP servers loaded. Tap \"Load Available Tools\" to fetch them from your server."
+ "value" : "Non è stato possibile preparare l’immagine selezionata. Scegli un’altra immagine.",
+ "state" : "translated"
+ }
+ },
+ "es" : {
+ "stringUnit" : {
+ "value" : "No se pudo preparar la imagen seleccionada. Elige otra imagen.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error message displayed when an error occurs during the preparation of an image."
},
- "Continue" : {
- "comment" : "A button that allows the user to continue the onboarding process.",
+ "GitHub Profile" : {
+ "comment" : "Title of a web destination that opens the user's GitHub profile.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Continua"
+ "value" : "GitHub-Profil"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Weiter"
+ "value" : "Profilo GitHub"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "続行"
+ "value" : "GitHubプロフィール",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Continuar"
+ "value" : "Perfil do GitHub",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Continuar"
+ "value" : "Perfil de GitHub"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Doorgaan"
+ "value" : "Προφίλ GitHub",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συνέχεια"
+ "value" : "GitHub-profil"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Continuer"
+ "value" : "Profil GitHub",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fortsätt"
+ "value" : "GitHub-profiel"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Continue"
+ "value" : "GitHub Profile",
+ "state" : "translated"
}
}
}
},
- "Imported %lld conversations, restored %lld attachments, and skipped %lld attachments." : {
+ "MCP Servers Unavailable" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Importate %1$lld conversazioni, ripristinati %2$lld allegati e saltati %3$lld allegati."
+ "value" : "MCP-Server nicht verfügbar",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld Konversationen importiert, %2$lld Anhänge wiederhergestellt und %3$lld Anhänge übersprungen."
+ "value" : "Serveurs MCP indisponibles",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld 件の会話をインポートし、%2$lld 件の添付ファイルを復元し、%3$lld 件の添付ファイルをスキップしました。"
+ "value" : "Servidores MCP no disponibles",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Importadas %1$lld conversas, restaurados %2$lld anexos e ignorados %3$lld anexos."
+ "value" : "MCP-servers niet beschikbaar",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Se importaron %1$lld conversaciones, se restauraron %2$lld archivos adjuntos y se omitieron %3$lld archivos adjuntos."
+ "value" : "Server MCP non disponibili",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld gesprekken geïmporteerd, %2$lld bijlagen hersteld en %3$lld bijlagen overgeslagen."
+ "value" : "MCPサーバー利用不可"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εισήχθησαν %1$lld συνομιλίες, αποκαταστάθηκαν %2$lld συνημμένα και παραλείφθηκαν %3$lld συνημμένα."
+ "value" : "Servidores MCP Indisponíveis",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld conversations importées, %2$lld pièces jointes restaurées, et %3$lld pièces jointes ignorées."
+ "value" : "MCP-servrar otillgängliga",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Importerade %1$lld konversationer, återställde %2$lld bilagor och hoppade över %3$lld bilagor."
+ "value" : "MCP Servers Unavailable"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "new",
- "value" : "Imported %1$lld conversations, restored %2$lld attachments, and skipped %3$lld attachments."
+ "value" : "Οι διακομιστές MCP δεν είναι διαθέσιμοι",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label that describes the unavailable state of the MCP servers."
},
- "The conversation context window must be greater than zero." : {
+ "%@ tokens, %lld percent" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La finestra del contesto della conversazione deve essere maggiore di zero."
+ "value" : "%1$@ fichas, %2$lld por ciento"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Das Kontextfenster der Unterhaltung muss größer als null sein."
+ "value" : "%1$@ tokens, %2$lld procent"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "会話コンテキストウィンドウはゼロより大きくする必要があります。"
+ "value" : "%1$@ tokens, %2$lld procent",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A janela de contexto da conversa deve ser maior que zero."
+ "value" : "%1$@ token, %2$lld percentuale"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La ventana de contexto de la conversación debe ser mayor que cero."
+ "value" : "%1$@ tokens, %2$lld percent",
+ "state" : "new"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het contextvenster van het gesprek moet groter zijn dan nul."
+ "value" : "%1$@ jetons, %2$lld pour cent"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La fenêtre de contexte de la conversation doit être supérieure à zéro."
+ "value" : "%1$@ διακριτικά, %2$lld τοις εκατό",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το παράθυρο συμφραζομένων συνομιλίας πρέπει να είναι μεγαλύτερο του μηδενός."
+ "value" : "%1$@ tokens, %2$lld por cento",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Samtalskontextfönstret måste vara större än noll."
+ "value" : "%1$@ トークン、%2$lld パーセント"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The conversation context window must be greater than zero."
+ "value" : "%1$@ Token, %2$lld Prozent",
+ "state" : "translated"
}
}
}
},
- "Back" : {
+ "Attach an image or PDF, or drag files into the chat for the model to analyse." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Indietro"
+ "value" : "Attach an image or PDF, or drag files into the chat for the model to analyze."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zurück"
+ "value" : "Joignez une image ou un PDF, ou glissez des fichiers dans la conversation pour que le modèle les analyse."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "戻る"
+ "value" : "Voeg een afbeelding of PDF toe, of sleep bestanden in de chat voor analyse door het model.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voltar"
+ "value" : "Allega un'immagine o un PDF, oppure trascina i file nella chat per farli analizzare dal modello."
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Atrás"
+ "value" : "Επισυνάψτε μια εικόνα ή PDF, ή σύρετε αρχεία στη συνομιλία για ανάλυση από το μοντέλο.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Terug"
+ "value" : "Adjunta una imagen o PDF, o arrastra archivos al chat para que el modelo los analice.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Retour"
+ "value" : "画像またはPDFを添付するか、ファイルをチャットにドラッグしてモデルに解析させてください。"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Πίσω"
+ "value" : "Anexe uma imagem ou PDF, ou arraste ficheiros para o chat para o modelo analisar.",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tillbaka"
+ "value" : "Fügen Sie ein Bild oder PDF an oder ziehen Sie Dateien in den Chat, damit das Modell sie analysieren kann.",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Back"
+ "value" : "Bifoga en bild eller PDF, eller dra filer till chatten för modellen att analysera."
}
}
}
},
- "Stop Recording" : {
+ "Description" : {
+ "comment" : "A label displayed above the user's profile description.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Interrompi registrazione"
+ "value" : "Descrizione"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Aufnahme stoppen"
+ "value" : "Descripción",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "録音停止"
+ "value" : "Description"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Parar Gravação"
+ "value" : "Beschreibung"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Detener grabación"
+ "value" : "Description"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Opname stoppen"
+ "value" : "説明"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διακοπή εγγραφής"
+ "value" : "Descrição",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Arrêter l’enregistrement"
+ "value" : "Beschrijving"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Stoppa inspelning"
+ "value" : "Περιγραφή"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Stop Recording"
+ "value" : "Beskrivning"
}
}
}
},
- "See conversations for a selected tag." : {
- "comment" : "Description of the widget that shows conversations assigned to a tag selected in the widget configuration.",
+ "1 source" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Visualizza le conversazioni per un tag selezionato"
+ "value" : "1 fuente",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Siehe Unterhaltungen für ein ausgewähltes Tag."
+ "value" : "1 bron",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "選択したタグの会話を表示します"
+ "value" : "1 källa"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ver conversas para uma etiqueta selecionada"
+ "value" : "1 fonte",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ver conversaciones para una etiqueta seleccionada"
+ "value" : "1 source",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bekijk gesprekken voor een geselecteerd label."
+ "value" : "1 source"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δείτε συνομιλίες για μια επιλεγμένη ετικέτα."
+ "value" : "1 πηγή"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Voir les conversations pour un tag sélectionné"
+ "value" : "1 fonte",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Se konversationer för en vald tagg."
+ "value" : "1つのソース",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "See conversations for the selected tag"
+ "value" : "1 Quelle",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A label that indicates that there is 1 source."
},
- "The MCP tool arguments do not match the tool schema." : {
- "comment" : "Error description when the MCP tool arguments do not match the tool schema.",
+ "Prompt" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gli argomenti dello strumento MCP non corrispondono allo schema dello strumento."
+ "value" : "Prompt",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Argumente des MCP-Tools stimmen nicht mit dem Toolschema überein."
+ "value" : "Ερώτημα"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCPツールの引数がツールスキーマと一致しません。"
+ "value" : "Prompt",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Os argumentos da ferramenta MCP não correspondem ao esquema da ferramenta."
+ "value" : "Eingabeaufforderung"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Los argumentos de la herramienta MCP no coinciden con el esquema de la herramienta."
+ "value" : "Indicação"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De argumenten van de MCP-tool komen niet overeen met het toolschema."
+ "value" : "Prompt"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τα επιχειρήματα του εργαλείου MCP δεν ταιριάζουν με το σχήμα του εργαλείου."
+ "value" : "Anvisning",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Les arguments de l’outil MCP ne correspondent pas au schéma de l’outil."
+ "value" : "プロンプト",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Argumenten för MCP-verktyget stämmer inte överens med verktygsschemat."
+ "value" : "Prompt",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The MCP tool arguments do not match the tool schema."
+ "value" : "Invite"
}
}
- }
+ },
+ "comment" : "A label displayed above the prompt text field."
},
- "Support ongoing development, maintenance, and new features." : {
- "comment" : "A description of the benefits of supporting ongoing development, maintenance, and new features.",
+ "Message" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supporta lo sviluppo continuo, la manutenzione e le nuove funzionalità."
+ "value" : "Bericht"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Unterstütze die laufende Entwicklung, Wartung und neue Funktionen."
+ "value" : "Mensaje"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "継続的な開発、メンテナンス、新機能を支援する"
+ "value" : "Μήνυμα"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apoie o desenvolvimento contínuo, a manutenção e as novas funcionalidades."
+ "value" : "メッセージ"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apoya el desarrollo continuo, el mantenimiento y las nuevas funciones."
+ "value" : "Nachricht",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ondersteun voortdurende ontwikkeling, onderhoud en nieuwe functies."
+ "value" : "Messaggio",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Υποστηρίξτε τη συνεχή ανάπτυξη, τη συντήρηση και τις νέες δυνατότητες."
+ "value" : "Message"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Soutenez le développement continu, la maintenance et les nouvelles fonctionnalités."
+ "value" : "Meddelande",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Stöd fortsatt utveckling, underhåll och nya funktioner."
+ "value" : "Mensagem",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Support ongoing development, maintenance, and new features."
+ "value" : "Message"
}
}
}
},
- "Connection successful" : {
+ "Aurora" : {
+ "comment" : "Icon name for the aurora theme.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Connessione riuscita"
+ "value" : "オーロラ",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verbindung erfolgreich"
+ "value" : "Aurora"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "接続に成功しました"
+ "value" : "Aurora"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ligação bem-sucedida"
+ "value" : "Aurora"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conexión exitosa"
+ "value" : "Aurora"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verbinding geslaagd"
+ "value" : "Aurora"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Connexion réussie"
+ "value" : "Aurora",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Σύνδεση επιτυχής"
+ "value" : "Aurora",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Anslutning lyckades"
+ "value" : "Aurora",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Connection successful"
+ "value" : "Aurora",
+ "state" : "translated"
}
}
}
},
- "Invalid synchronized data" : {
+ "The server configuration could not be saved." : {
+ "comment" : "Error message displayed when the server configuration cannot be saved.",
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dati sincronizzati non validi"
+ "value" : "Impossibile salvare la configurazione del server."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ungültige synchronisierte Daten"
+ "value" : "No se pudo guardar la configuración del servidor.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期されたデータが無効です"
+ "value" : "The server configuration could not be saved.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dados sincronizados inválidos"
+ "value" : "La configuration du serveur n’a pas pu être enregistrée.",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Datos sincronizados no válidos"
+ "value" : "Die Serverkonfiguration konnte nicht gespeichert werden.",
+ "state" : "translated"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ongeldige gesynchroniseerde gegevens"
+ "value" : "Serverkonfigurationen kunde inte sparas."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Μη έγκυρα συγχρονισμένα δεδομένα"
+ "value" : "Não foi possível guardar a configuração do servidor.",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Données synchronisées non valides"
+ "value" : "De serverconfiguratie kon niet worden opgeslagen."
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ogiltiga synkroniserade data"
+ "value" : "サーバー設定を保存できませんでした。",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Invalid synchronized data"
+ "value" : "Δεν ήταν δυνατή η αποθήκευση της διαμόρφωσης του διακομιστή.",
+ "state" : "translated"
}
}
}
},
- "Private chats are not saved or synced, and they do not read or change personal memory." : {
- "comment" : "A description of private chats.",
+ "Chat Message" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Le chat private non vengono salvate né sincronizzate, e non leggono né modificano la memoria personale."
+ "value" : "Chat Message"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Private Chats werden nicht gespeichert oder synchronisiert und lesen oder ändern das persönliche Gedächtnis nicht."
+ "value" : "Chatbericht",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "プライベートチャットは保存や同期されず、個人の記憶を読み取ったり変更したりしません。"
+ "value" : "Chattmeddelande",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "As conversas privadas não são guardadas nem sincronizadas, e não leem nem alteram a memória pessoal."
+ "value" : "Messaggio chat",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Los chats privados no se guardan ni sincronizan, y no leen ni modifican la memoria personal."
+ "value" : "Μήνυμα συνομιλίας"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Privégesprekken worden niet opgeslagen of gesynchroniseerd en lezen of wijzigen geen persoonlijke herinneringen."
+ "value" : "Mensagem de Chat",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les discussions privées ne sont pas enregistrées ni synchronisées, et elles ne lisent ni ne modifient la mémoire personnelle."
+ "value" : "チャットメッセージ"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Οι ιδιωτικές συνομιλίες δεν αποθηκεύονται ή συγχρονίζονται και δεν διαβάζουν ούτε αλλάζουν την προσωπική μνήμη."
+ "value" : "Mensaje de chat"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Privata chattar sparas inte eller synkroniseras, och de läser inte eller ändrar personlig minne."
+ "value" : "Message de chat"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Private chats are not saved or synced, and they do not read or modify personal memory."
+ "value" : "Chatnachricht"
}
}
}
},
- "The local and iCloud profiles have conflicting changes with the same revision." : {
+ "Optional" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "I profili locale e iCloud contengono modifiche in conflitto con la stessa revisione."
+ "value" : "Προαιρετικό"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Das lokale Profil und das iCloud-Profil weisen widersprüchliche Änderungen bei derselben Revision auf."
+ "value" : "Optional",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ローカルプロファイルとiCloudプロファイルに、同じリビジョンの競合する変更があります。"
+ "value" : "Opzionale",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Os perfis local e do iCloud têm alterações em conflito com a mesma revisão."
+ "value" : "Optioneel",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Los perfiles local y de iCloud tienen cambios en conflicto con la misma revisión."
+ "value" : "Optional",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "De lokale en iCloud-profielen bevatten tegenstrijdige wijzigingen met dezelfde revisie."
+ "value" : "Optionnel",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Les profils local et iCloud comportent des modifications contradictoires avec la même révision."
+ "value" : "任意"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Τα τοπικά προφίλ και τα προφίλ iCloud έχουν αντικρουόμενες αλλαγές με την ίδια αναθεώρηση."
+ "value" : "Opcional"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De lokala profilerna och iCloud-profilerna har motstridiga ändringar med samma revision."
+ "value" : "Valfri"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The local and iCloud profiles have conflicting changes with the same revision."
+ "value" : "Opcional"
}
}
}
},
- "GitHub Profile" : {
- "comment" : "Title of a web destination that opens the user's GitHub profile.",
+ "Preparing image" : {
+ "comment" : "A label for an in-progress image preparation task.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profilo GitHub"
+ "value" : "Afbeelding voorbereiden"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "GitHub-Profil"
+ "value" : "Bild wird vorbereitet"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "GitHubプロフィール"
+ "value" : "Preparando la imagen"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Perfil do GitHub"
+ "value" : "画像を準備中",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Perfil de GitHub"
+ "value" : "Förbereder bild"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "GitHub-profiel"
+ "value" : "Προετοιμασία εικόνας"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προφίλ GitHub"
+ "value" : "Préparation de l’image"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Profil GitHub"
+ "value" : "Preparazione dell'immagine"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "GitHub-profil"
+ "value" : "A preparar a imagem",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "GitHub Profile"
+ "value" : "Preparing image"
}
}
}
},
- "Server Configuration Wasn't Saved" : {
- "comment" : "A message displayed when the user's server settings weren't saved.",
+ "Unable to Load iCloud Data" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La configurazione del server non è stata salvata"
+ "value" : "Det går inte att läsa in iCloud-data"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serverkonfiguration wurde nicht gespeichert"
+ "value" : "Impossible de charger les données iCloud",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サーバー設定を保存できませんでした"
+ "value" : "No se pueden cargar los datos de iCloud"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A configuração do servidor não foi guardada"
+ "value" : "Kan iCloud-gegevens niet laden"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se guardó la configuración del servidor"
+ "value" : "Unable to Load iCloud Data"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serverconfiguratie is niet opgeslagen"
+ "value" : "iCloud-Daten konnten nicht geladen werden",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η διαμόρφωση του διακομιστή δεν αποθηκεύτηκε"
+ "value" : "Impossibile caricare i dati di iCloud",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La configuration du serveur n’a pas été enregistrée"
+ "value" : "Não foi possível carregar os dados do iCloud"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serverkonfigurationen sparades inte"
+ "value" : "Αδυναμία φόρτωσης δεδομένων iCloud",
+ "state" : "translated"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Server Configuration Wasn't Saved"
+ "value" : "iCloudデータを読み込めません"
}
}
}
},
- "Delete %@" : {
+ "Input" : {
+ "comment" : "A label for the cost of input tokens.",
+ "shouldTranslate" : false
+ },
+ "Buy Me a Coffee" : {
+ "comment" : "A button that opens a payment interface to support the app's development.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elimina %@"
+ "value" : "Invítame a un café",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%@ löschen"
+ "value" : "Trakteer me op een koffie"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%@を削除"
+ "value" : "Bjud mig på en kaffe"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminar %@"
+ "value" : "Offrimi un caffè",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar %@"
+ "value" : "Buy Me a Coffee"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verwijder %@"
+ "value" : "Offrez-moi un café",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαγραφή %@"
+ "value" : "Κάνε μου μια δωρεά καφέ",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supprimer %@"
+ "value" : "Oferecer um Café"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Radera %@"
+ "value" : "コーヒーをおごる"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Delete %@"
+ "value" : "Kauf mir einen Kaffee"
}
}
}
},
- "Loading image..." : {
+ "Some iCloud data is still downloading. Try again when it is available." : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Caricamento immagine..."
+ "value" : "Aún se están descargando algunos datos de iCloud. Inténtalo de nuevo cuando estén disponibles.",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bild wird geladen..."
+ "value" : "Viss iCloud-data håller fortfarande på att laddas ner. Försök igen när den är tillgänglig."
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "画像を読み込み中..."
+ "value" : "Certaines données iCloud sont toujours en cours de téléchargement. Réessayez lorsqu’elles seront disponibles.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A carregar imagem..."
+ "value" : "Ορισμένα δεδομένα του iCloud εξακολουθούν να λαμβάνονται. Δοκιμάστε ξανά όταν θα είναι διαθέσιμα."
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cargando imagen..."
+ "value" : "Some iCloud data is still downloading. Try again when it is available.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Afbeelding laden..."
+ "value" : "Alcuni dati di iCloud sono ancora in fase di download. Riprova quando saranno disponibili.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Φόρτωση εικόνας..."
+ "value" : "一部のiCloudデータはまだダウンロード中です。利用可能になってからもう一度お試しください。",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chargement de l’image..."
+ "value" : "Einige iCloud-Daten werden noch heruntergeladen. Versuche es erneut, sobald sie verfügbar sind.",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Laddar bild..."
+ "value" : "Sommige iCloud-gegevens worden nog gedownload. Probeer het opnieuw wanneer ze beschikbaar zijn.",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Loading image..."
+ "value" : "Alguns dados do iCloud ainda estão a ser descarregados. Tente novamente quando estiverem disponíveis."
}
}
}
},
- "File" : {
+ "Review iCloud Account" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "File"
+ "value" : "iCloudアカウントを確認"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Datei"
+ "value" : "iCloud-account controleren"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ファイル"
+ "value" : "Review iCloud Account"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ficheiro"
+ "value" : "Vérifier le compte iCloud"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Archivo"
+ "value" : "Verifica l’account iCloud",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bestand"
+ "value" : "Rever a conta do iCloud"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fichier"
+ "value" : "Revisar la cuenta de iCloud",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αρχείο"
+ "value" : "Granska iCloud-konto"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fil"
+ "value" : "Έλεγχος λογαριασμού iCloud",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "File"
+ "value" : "iCloud-Account überprüfen"
}
}
}
},
- "Capabilities" : {
- "comment" : "A section that lists the capabilities of a model.",
+ "Server error (code %lld)." : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Capacità"
+ "value" : "Error del servidor (código %lld).",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fähigkeiten"
+ "value" : "Serverfout (code %lld)."
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "機能"
+ "value" : "Serverfel (kod %lld).",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Capacidades"
+ "value" : "Errore del server (codice %lld).",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Capacidades"
+ "value" : "Erreur serveur (code %lld)."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mogelijkheden"
+ "value" : "Server error (code %lld)."
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δυνατότητες"
+ "value" : "Σφάλμα διακομιστή (κωδικός %lld)."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Capacités"
+ "value" : "Erro do servidor (código %lld).",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Funktioner"
+ "value" : "サーバーエラー(コード %lld)",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Capabilities"
+ "value" : "Serverfehler (Code %lld)."
}
}
}
},
- "Copy URL" : {
+ "You're welcome!" : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Copia URL"
+ "value" : "Gern geschehen!"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "URL kopieren"
+ "value" : "Prego!",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "URLをコピー"
+ "value" : "どういたしまして!",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Copiar URL"
+ "value" : "De nada!"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Copiar URL"
+ "value" : "¡De nada!",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "URL kopiëren"
+ "value" : "Παρακαλώ!"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αντιγραφή URL"
+ "value" : "Varsågod!"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Copier l’URL"
+ "value" : "De rien !"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kopiera URL"
+ "value" : "Graag gedaan!"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Copy URL"
+ "value" : "You're welcome!"
}
}
- }
+ },
+ "comment" : "A button that dismisses a thank you alert."
},
- "Response ready" : {
- "comment" : "Title of a notification when a response is ready.",
+ "Open Settings" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Risposta pronta"
+ "value" : "Abrir ajustes",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Antwort bereit"
+ "value" : "Άνοιγμα ρυθμίσεων",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "応答準備完了"
+ "value" : "Ouvrir les Réglages",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Resposta pronta"
+ "value" : "Open Settings",
+ "state" : "translated"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Respuesta lista"
+ "value" : "Öppna inställningar",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Antwoord klaar"
+ "value" : "Apri Impostazioni"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η απάντηση είναι έτοιμη"
+ "value" : "設定を開く",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Réponse prête"
+ "value" : "Einstellungen öffnen"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Svar klart"
+ "value" : "Open instellingen"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Response ready"
+ "value" : "Abrir Definições"
}
}
- }
+ },
+ "comment" : "A button that opens the user's device settings."
},
- "Currently unavailable" : {
+ "Only the listed categories failed. Retry to finish deleting them." : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Al momento non disponibile"
+ "value" : "Alleen de vermelde categorieën zijn mislukt. Probeer het opnieuw om ze te verwijderen.",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Derzeit nicht verfügbar"
+ "value" : "Solo fallaron las categorías indicadas. Vuelve a intentarlo para terminar de eliminarlas."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "現在利用できません"
+ "value" : "Απέτυχαν μόνο οι κατηγορίες που αναφέρονται. Δοκιμάστε ξανά για να ολοκληρωθεί η διαγραφή τους.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Atualmente indisponível"
+ "value" : "リストにあるカテゴリのみ削除に失敗しました。削除を完了するには再試行してください。"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Actualmente no disponible"
+ "value" : "Nur die aufgeführten Kategorien konnten nicht gelöscht werden. Wiederholen Sie den Vorgang, um das Löschen abzuschließen."
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Momenteel niet beschikbaar"
+ "value" : "Solo le categorie elencate non sono state eliminate. Riprova per completare l’eliminazione."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Actuellement indisponible"
+ "value" : "Only the listed categories failed. Retry to finish deleting them."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προς το παρόν μη διαθέσιμο"
+ "value" : "Endast de listade kategorierna kunde inte tas bort. Försök igen för att slutföra borttagningen."
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "För närvarande inte tillgängligt"
+ "value" : "Seules les catégories répertoriées ont échoué. Réessayez pour terminer leur suppression.",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Currently unavailable"
+ "value" : "Apenas as categorias listadas falharam. Tente novamente para concluir a eliminação."
}
}
}
},
- "Controls randomness. Higher values make output more creative." : {
+ "Error" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Controlla la casualità. Valori più alti rendono l'output più creativo."
+ "value" : "Error",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Steuert die Zufälligkeit. Höhere Werte machen die Ausgabe kreativer."
+ "value" : "Fout",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ランダム性を制御します。値が高いほど出力がより創造的になります。"
+ "value" : "Fel",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Controla a aleatoriedade. Valores mais altos tornam a saída mais criativa."
+ "value" : "Errore"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Controla la aleatoriedad. Valores más altos hacen que la salida sea más creativa."
+ "value" : "Erreur",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beheert willekeurigheid. Hogere waarden maken de output creatiever."
+ "value" : "Error",
+ "state" : "translated"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ελέγχει την τυχαιότητα. Μεγαλύτερες τιμές κάνουν το αποτέλεσμα πιο δημιουργικό."
+ "value" : "Σφάλμα"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Contrôle l'aléatoire. Des valeurs plus élevées rendent la sortie plus créative."
+ "value" : "Erro",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Styr slumpmässigheten. Högre värden gör resultatet mer kreativt."
+ "value" : "エラー"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Controls randomness. Higher values make output more creative."
+ "value" : "Fehler",
+ "state" : "translated"
}
}
}
},
- "OpenClient may summarise or exclude older messages without removing them from your history." : {
- "comment" : "A description of how OpenClient can remove older messages from the user's history.",
+ "Custom Templates" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient può riassumere o escludere i messaggi più vecchi senza rimuoverli dalla tua cronologia."
+ "value" : "Modèles personnalisés",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient kann ältere Nachrichten zusammenfassen oder ausblenden, ohne sie aus Ihrem Verlauf zu entfernen."
+ "value" : "Προσαρμοσμένα πρότυπα",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClientは古いメッセージを履歴から削除せずに要約または除外することがあります。"
+ "value" : "Plantillas personalizadas",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O OpenClient pode resumir ou excluir mensagens antigas sem as remover do seu histórico."
+ "value" : "Anpassade mallar"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient puede resumir o excluir mensajes antiguos sin eliminarlos de tu historial."
+ "value" : "Modelli personalizzati",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient kan oudere berichten samenvatten of uitsluiten zonder ze uit je geschiedenis te verwijderen."
+ "value" : "Modelos personalizados",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient peut résumer ou exclure les anciens messages sans les supprimer de votre historique."
+ "value" : "Benutzerdefinierte Vorlagen",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το OpenClient μπορεί να συνοψίζει ή να εξαιρεί παλαιότερα μηνύματα χωρίς να τα αφαιρεί από το ιστορικό σας."
+ "value" : "カスタムテンプレート",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient kan sammanfatta eller utesluta äldre meddelanden utan att ta bort dem från din historik."
+ "value" : "Custom Templates"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient may summarize or exclude older messages without removing them from your history."
+ "value" : "Aangepaste sjablonen",
+ "state" : "translated"
}
}
}
},
- "Rate the App" : {
+ "Open a new conversation in OpenClient." : {
+ "comment" : "Description of the New Chat widget.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Valuta l’app"
+ "value" : "Open een nieuw gesprek in OpenClient.",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "App bewerten"
+ "value" : "Abrir una nueva conversación en OpenClient.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "アプリを評価する"
+ "value" : "Άνοιγμα νέας συνομιλίας στο OpenClient"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Avaliar a App"
+ "value" : "OpenClientで新しい会話を開始する"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Calificar la app"
+ "value" : "Eine neue Unterhaltung in OpenClient starten.",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beoordeel de app"
+ "value" : "Apri una nuova conversazione in OpenClient",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Évaluer l’application"
+ "value" : "Open a new conversation in OpenClient",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Βαθμολογήστε την εφαρμογή"
+ "value" : "Öppna en ny konversation i OpenClient.",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Betygsätt appen"
+ "value" : "Abrir uma nova conversa no OpenClient."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rate the App"
+ "value" : "Ouvrir une nouvelle conversation dans OpenClient"
}
}
}
},
- "sk-..." : {
- "comment" : "A placeholder for the API key field.",
+ "Red" : {
+ "comment" : "Name of the color red.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "sk-..."
+ "value" : "Rood"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "sk-..."
+ "value" : "Red"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "sk-..."
+ "value" : "Rosso",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "sk-..."
+ "value" : "Röd"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "sk-..."
+ "value" : "Κόκκινο",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "sk-..."
+ "value" : "Vermelho",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "sk-..."
+ "value" : "Rouge"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "sk-..."
+ "value" : "赤"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "sk-..."
+ "value" : "Rojo",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "sk-..."
+ "value" : "Rot"
}
}
}
},
- "Are you sure you want to delete this comment?" : {
+ "Thinking..." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sei sicuro di voler eliminare questo commento?"
+ "value" : "考え中..."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Möchten Sie diesen Kommentar wirklich löschen?"
+ "value" : "Σκέψη...",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "このコメントを削除してもよろしいですか?"
+ "value" : "Bezig met nadenken..."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tem a certeza de que pretende eliminar este comentário?"
+ "value" : "Tänker..."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "¿Seguro que quieres eliminar este comentario?"
+ "value" : "A pensar..."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Weet je zeker dat je deze opmerking wilt verwijderen?"
+ "value" : "Thinking..."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Êtes-vous sûr de vouloir supprimer ce commentaire ?"
+ "value" : "Sto pensando..."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το σχόλιο;"
+ "value" : "Réflexion en cours..."
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Är du säker på att du vill ta bort den här kommentaren?"
+ "value" : "Pensando..."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Are you sure you want to delete this comment?"
+ "value" : "Denke..."
}
}
}
},
- "Manage iCloud Data" : {
+ "Personal Context" : {
+ "comment" : "A button that opens a sheet for configuring the user's name and personal context.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gestisci i dati di iCloud"
+ "value" : "Προσωπικό Πλαίσιο"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-Daten verwalten"
+ "value" : "個人情報",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloudデータを管理"
+ "value" : "Persönlicher Kontext",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gerir dados do iCloud"
+ "value" : "Contexto Pessoal"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gestionar los datos de iCloud"
+ "value" : "Contexto personal"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-gegevens beheren"
+ "value" : "Contexte personnel",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gérer les données iCloud"
+ "value" : "Personlig kontext"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαχείριση δεδομένων iCloud"
+ "value" : "Contesto personale"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hantera iCloud-data"
+ "value" : "Persoonlijke context"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Manage iCloud Data"
+ "value" : "Personal Context",
+ "state" : "translated"
}
}
}
},
- "Right-click a message to edit, regenerate, branch, or save it as a favourite." : {
+ "Start a new chat or search your conversations." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fai clic con il tasto destro su un messaggio per modificarlo, rigenerarlo, creare un ramo o salvarlo tra i preferiti."
+ "value" : "Commencez une nouvelle conversation ou recherchez dans vos discussions.",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Klicken Sie mit der rechten Maustaste auf eine Nachricht, um sie zu bearbeiten, neu zu generieren, zu verzweigen oder als Favorit zu speichern."
+ "value" : "Avvia una nuova chat o cerca nelle tue conversazioni."
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メッセージを右クリックして編集、再生成、分岐、またはお気に入りに保存します。"
+ "value" : "新しいチャットを開始するか、会話を検索してください。"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Clique com o botão direito numa mensagem para editar, regenerar, ramificar ou guardar como favorito."
+ "value" : "Inicie uma nova conversa ou pesquise nas suas conversas."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Haz clic derecho en un mensaje para editarlo, regenerarlo, ramificarlo o guardarlo como favorito."
+ "value" : "Inicia un nuevo chat o busca en tus conversaciones."
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Klik met de rechtermuisknop op een bericht om het te bewerken, opnieuw te genereren, vertakken of als favoriet op te slaan."
+ "value" : "Ξεκινήστε μια νέα συνομιλία ή αναζητήστε τις συνομιλίες σας."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cliquez droit sur un message pour le modifier, régénérer, créer une branche ou l’enregistrer en favori."
+ "value" : "Starta en ny chatt eller sök i dina konversationer."
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κάντε δεξί κλικ σε ένα μήνυμα για να το επεξεργαστείτε, αναγεννήσετε, διακλαδώσετε ή αποθηκεύσετε ως αγαπημένο."
+ "value" : "Begin een nieuw gesprek of doorzoek je gesprekken."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Högerklicka på ett meddelande för att redigera, generera om, skapa en gren eller spara det som favorit."
+ "value" : "Start a new chat or search your conversations"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Right-click a message to edit, regenerate, branch, or save it as a favorite."
+ "value" : "Beginnen Sie einen neuen Chat oder durchsuchen Sie Ihre Unterhaltungen.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Widget description."
},
- "Camera" : {
+ "Blocked" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fotocamera"
+ "value" : "Αποκλεισμένο"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kamera"
+ "value" : "Bloccato",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "カメラ"
+ "value" : "Bloqueado"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Câmara"
+ "value" : "Geblokkeerd"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Cámara"
+ "value" : "ブロック済み"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Camera"
+ "value" : "Blockiert"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Appareil photo"
+ "value" : "Bloqué"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κάμερα"
+ "value" : "Blocked"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kamera"
+ "value" : "Bloqueado",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Camera"
+ "value" : "Blockerad"
}
}
}
},
- "The deletion could not be completed." : {
+ "Testing..." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Non è stato possibile completare l’eliminazione."
+ "value" : "Test en cours...",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Das Löschen konnte nicht abgeschlossen werden."
+ "value" : "A testar..."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "削除を完了できませんでした。"
+ "value" : "Probando...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível concluir a eliminação."
+ "value" : "Test in corso...",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pudo completar la eliminación."
+ "value" : "Testen..."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Het verwijderen kon niet worden voltooid."
+ "value" : "Testing...",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La suppression n’a pas pu être effectuée."
+ "value" : "テスト中...",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν ήταν δυνατή η ολοκλήρωση της διαγραφής."
+ "value" : "Testar...",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Det gick inte att slutföra borttagningen."
+ "value" : "Testen..."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The deletion could not be completed."
+ "value" : "Δοκιμή...",
+ "state" : "translated"
}
}
}
},
- "Could not load tip options. Please try again later." : {
- "comment" : "Error message displayed when there is an issue loading the tip options.",
+ "URL Scheme" : {
+ "comment" : "A label that describes the URL scheme feature.",
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile caricare le opzioni di mancia. Riprova più tardi."
+ "value" : "URL Scheme"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tippoptionen konnten nicht geladen werden. Bitte versuchen Sie es später erneut."
+ "value" : "Schéma d’URL",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "チップオプションを読み込めませんでした。後でもう一度お試しください。"
+ "value" : "URL-schema",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível carregar as opções de gorjeta. Por favor, tente novamente mais tarde."
+ "value" : "Schema URL"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pudieron cargar las opciones de propina. Por favor, inténtelo de nuevo más tarde."
+ "value" : "Σχήμα URL"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kan de fooiopties niet laden. Probeer het later opnieuw."
+ "value" : "Esquema de URL",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δεν ήταν δυνατή η φόρτωση των επιλογών φιλοδωρήματος. Δοκιμάστε ξανά αργότερα."
+ "value" : "Esquema URL"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossible de charger les options de pourboire. Veuillez réessayer plus tard."
+ "value" : "URLスキーム"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kunde inte ladda dricksalternativ. Försök igen senare."
+ "value" : "URL-Schema",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Could not load tip options. Please try again later."
+ "value" : "URL-schema"
}
}
}
},
- "per month" : {
- "comment" : "A description of the billing period for a monthly subscription.",
+ "Help" : {
+ "comment" : "The title of the help screen.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "al mese"
+ "value" : "Ayuda",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "pro Monat"
+ "value" : "Hjälp",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "月額"
+ "value" : "Aide",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "por mês"
+ "value" : "Help"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "por mes"
+ "value" : "Βοήθεια"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "per maand"
+ "value" : "Aiuto",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "par mois"
+ "value" : "ヘルプ",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ανά μήνα"
+ "value" : "Hilfe",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "per månad"
+ "value" : "Help",
+ "state" : "translated"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "per month"
+ "value" : "Ajuda"
}
}
}
},
- "Enable Web Search" : {
- "comment" : "A label for a button that enables web search.",
+ "The MCP tool was disabled before it could execute." : {
+ "comment" : "Error message displayed when the MCP tool was disabled before it could execute.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abilita ricerca web"
+ "value" : "Το εργαλείο MCP απενεργοποιήθηκε πριν προλάβει να εκτελεστεί."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Websuche aktivieren"
+ "value" : "Lo strumento MCP è stato disabilitato prima di poter essere eseguito.",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "ウェブ検索を有効にする"
+ "value" : "La herramienta MCP se desactivó antes de poder ejecutarse."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ativar Pesquisa Web"
+ "value" : "De MCP-tool is uitgeschakeld voordat deze kon worden uitgevoerd.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Activar búsqueda web"
+ "value" : "実行前にMCPツールが無効になりました。",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Webzoekfunctie inschakelen"
+ "value" : "Das MCP-Tool wurde deaktiviert, bevor es ausgeführt werden konnte.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ενεργοποίηση Αναζήτησης Ιστού"
+ "value" : "L’outil MCP a été désactivé avant de pouvoir s’exécuter."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Activer la recherche Web"
+ "value" : "The MCP tool was disabled before it could execute."
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktivera webbsökning"
+ "value" : "A ferramenta MCP foi desativada antes de poder ser executada."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enable Web Search"
+ "value" : "MCP-verktyget inaktiverades innan det hann köras."
}
}
}
},
- "Waiting for iCloud downloads" : {
+ "Potential Impact" : {
+ "comment" : "A label that describes the potential impact of a request.",
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "In attesa dei download da iCloud"
+ "value" : "Impatto potenziale",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Warten auf iCloud-Downloads"
+ "value" : "潜在的な影響"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudからのダウンロードを待機中"
+ "value" : "Potential Impact"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A aguardar as transferências do iCloud"
+ "value" : "Impacto potencial"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esperando las descargas de iCloud"
+ "value" : "Impacto potencial"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Wachten op iCloud-downloads"
+ "value" : "Πιθανός αντίκτυπος"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "En attente des téléchargements iCloud"
+ "value" : "Mögliche Auswirkungen",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αναμονή για λήψεις από το iCloud"
+ "value" : "Impact potentiel"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Väntar på iCloud-nedladdningar"
+ "value" : "Potentiell påverkan",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Waiting for iCloud downloads"
+ "value" : "Mogelijke impact"
}
}
}
},
- "This backup version is not supported." : {
+ "Built-in" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Questa versione di backup non è supportata."
+ "value" : "Ενσωματωμένα",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Diese Sicherungsversion wird nicht unterstützt."
+ "value" : "Inbyggd",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "このバックアップバージョンはサポートされていません。"
+ "value" : "Ingebouwd",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esta versão de backup não é suportada."
+ "value" : "組み込み"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esta versión de la copia de seguridad no es compatible."
+ "value" : "Incorporado"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deze back-upversie wordt niet ondersteund."
+ "value" : "Intégré",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cette version de sauvegarde n’est pas prise en charge."
+ "value" : "Eingebaut",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αυτή η έκδοση αντιγράφου ασφαλείας δεν υποστηρίζεται."
+ "value" : "Integrado",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Den här säkerhetskopieringsversionen stöds inte."
+ "value" : "Integrato"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "This backup version is not supported."
+ "value" : "Built-in",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A section title for built-in templates."
},
- "Skip" : {
+ "Enable Notifications" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Salta"
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Überspringen"
+ "value" : "Benachrichtigungen aktivieren"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "スキップ"
+ "value" : "Activer les notifications"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ignorar"
+ "value" : "Meldingen inschakelen"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Omitir"
+ "value" : "Activar notificaciones",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Overslaan"
+ "value" : "Abilita notifiche"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Passer"
+ "value" : "通知を有効にする"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Παράλειψη"
+ "value" : "Aktivera aviseringar",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hoppa över"
+ "value" : "Ativar notificações"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Skip"
+ "value" : "Enable Notifications"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Ενεργοποίηση ειδοποιήσεων",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A button that enables notifications."
},
- "Show Token Usage" : {
- "comment" : "A toggle that shows the number of tokens remaining in the current token.",
+ "Retry iCloud synchronization." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mostra utilizzo token"
+ "value" : "Réessayer la synchronisation iCloud.",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tokenverbrauch anzeigen"
+ "value" : "Riprovare la sincronizzazione con iCloud."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "トークン使用量を表示"
+ "value" : "Retry iCloud synchronization."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mostrar Utilização de Token"
+ "value" : "iCloud-synchronisatie opnieuw proberen.",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mostrar uso de tokens"
+ "value" : "iCloud-Synchronisierung wiederholen",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tokengebruik weergeven"
+ "value" : "Reintentar la sincronización con iCloud.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εμφάνιση χρήσης διακριτικού"
+ "value" : "Försök synkronisera iCloud igen.",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afficher l’utilisation des jetons"
+ "value" : "iCloudの同期を再試行する"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Visa tokenanvändning"
+ "value" : "Tentar novamente a sincronização com o iCloud."
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Show Token Usage"
+ "value" : "Επανάληψη συγχρονισμού με το iCloud."
}
}
}
},
- "iCloud is unavailable" : {
+ "Use these sources to answer the user's question. Cite sources using [Source Title](URL) format." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud non è disponibile"
+ "value" : "Utilisez ces sources pour répondre à la question de l'utilisateur. Citez les sources en utilisant le format [Titre de la source](URL)."
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud ist nicht verfügbar"
+ "value" : "Verwenden Sie diese Quellen, um die Frage des Benutzers zu beantworten. Zitieren Sie Quellen im Format [Quellentitel](URL)."
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudは利用できません"
+ "value" : "Gebruik deze bronnen om de vraag van de gebruiker te beantwoorden. Verwijs naar bronnen met de notatie [Bron Titel](URL)."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O iCloud está indisponível"
+ "value" : "Χρησιμοποιήστε αυτές τις πηγές για να απαντήσετε στην ερώτηση του χρήστη. Αναφέρετε τις πηγές χρησιμοποιώντας τη μορφή [Τίτλος Πηγής](URL).",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud no está disponible"
+ "value" : "Use these sources to answer the user's question. Cite sources using [Source Title](URL) format.",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud is niet beschikbaar"
+ "value" : "Utilize estas fontes para responder à pergunta do utilizador. Cite as fontes usando o formato [Título da Fonte](URL).",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το iCloud δεν είναι διαθέσιμο"
+ "value" : "Usa queste fonti per rispondere alla domanda dell'utente. Cita le fonti utilizzando il formato [Titolo della fonte](URL).",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud est indisponible"
+ "value" : "これらの情報源を使用してユーザーの質問に回答してください。情報源は[情報源タイトル](URL)形式で引用してください。",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud är inte tillgängligt"
+ "value" : "Använd dessa källor för att besvara användarens fråga. Ange källor med formatet [Källtitel](URL).",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud is unavailable"
+ "value" : "Utilice estas fuentes para responder a la pregunta del usuario. Cite las fuentes usando el formato [Título de la fuente](URL)."
}
}
- }
+ },
+ "comment" : "Citation guide for web search results."
},
- "New Template" : {
- "comment" : "A title for a view that creates or edits a prompt template.",
+ "You're all set!" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nuovo Modello"
+ "value" : "Está tudo pronto!",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Neue Vorlage"
+ "value" : "Tout est prêt !"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "新しいテンプレート"
+ "value" : "Alles bereit!"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Novo Modelo"
+ "value" : "準備完了です!",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nueva plantilla"
+ "value" : "Je bent helemaal klaar!"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nieuwe sjabloon"
+ "value" : "Είστε έτοιμοι!",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Νέο Πρότυπο"
+ "value" : "You're all set!",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nouveau modèle"
+ "value" : "Tutto pronto!",
+ "state" : "translated"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ny mall"
+ "value" : "¡Todo listo!"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "New Template"
+ "value" : "Allt är klart!",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A title displayed in the onboarding view when the server is ready."
},
- "Processing..." : {
- "comment" : "A message displayed when the user is being processed.",
+ "Your comment" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elaborazione in corso..."
+ "value" : "Your comment"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Verarbeitung..."
+ "value" : "Votre commentaire"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "処理中..."
+ "value" : "Din kommentar",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A processar..."
+ "value" : "Il tuo commento",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Procesando..."
+ "value" : "Το σχόλιό σας",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bezig met verwerken..."
+ "value" : "Tu comentario"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επεξεργασία..."
+ "value" : "O seu comentário"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Traitement en cours..."
+ "value" : "あなたのコメント",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bearbetar..."
+ "value" : "Ihr Kommentar",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Processing..."
+ "value" : "Je opmerking"
}
}
}
},
- "Input" : {
- "shouldTranslate" : false,
- "comment" : "A label for the cost of input tokens."
- },
- "Restore Purchases" : {
- "comment" : "A button that restores purchases.",
+ "More Options" : {
+ "comment" : "A label for the \"More Options\" button.",
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ripristina acquisti"
+ "value" : "Altre opzioni",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Käufe wiederherstellen"
+ "value" : "Más opciones",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "購入を復元"
+ "value" : "More Options"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Restaurar compras"
+ "value" : "Weitere Optionen",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Restaurar compras"
+ "value" : "Plus d’options",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aankopen herstellen"
+ "value" : "Περισσότερες επιλογές"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Restaurer les achats"
+ "value" : "Mais Opções"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επαναφορά αγορών"
+ "value" : "Fler alternativ"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Återställ köp"
+ "value" : "その他のオプション",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Restore Purchases"
+ "value" : "Meer opties"
}
}
}
},
- "The selected file is not a valid image." : {
- "comment" : "Error message when the selected file is not a valid image.",
+ "The response was cut short. Open the app to see what was received." : {
+ "comment" : "Text displayed in a notification when the response to a prompt was cut short.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il file selezionato non è un'immagine valida."
+ "value" : "Η απάντηση διακόπηκε. Άνοιξε την εφαρμογή για να δεις τι λήφθηκε."
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die ausgewählte Datei ist kein gültiges Bild."
+ "value" : "応答が途中で切れました。受信内容を確認するにはアプリを開いてください。",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "選択したファイルは有効な画像ではありません。"
+ "value" : "Die Antwort wurde abgeschnitten. Öffnen Sie die App, um zu sehen, was empfangen wurde."
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O ficheiro selecionado não é uma imagem válida."
+ "value" : "A resposta foi interrompida. Abra a app para ver o que foi recebido."
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "El archivo seleccionado no es una imagen válida."
+ "value" : "La respuesta se cortó. Abre la app para ver lo recibido."
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het geselecteerde bestand is geen geldige afbeelding."
+ "value" : "Svaret avbröts. Öppna appen för att se vad som mottogs."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το επιλεγμένο αρχείο δεν είναι έγκυρη εικόνα."
+ "value" : "La réponse a été interrompue. Ouvrez l’application pour voir ce qui a été reçu."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le fichier sélectionné n’est pas une image valide."
+ "value" : "La risposta è stata interrotta. Apri l’app per vedere cosa è stato ricevuto.",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Den valda filen är inte en giltig bild."
+ "value" : "Het antwoord is afgebroken. Open de app om te zien wat er is ontvangen.",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The selected file is not a valid image."
+ "value" : "The response was cut short. Open the app to see what was received."
}
}
}
},
- "Show All (%lld)" : {
- "comment" : "A button that shows all items in a category. The number in parentheses is the number of items in the category.",
+ "Nucleus sampling. Lower values make output more focused." : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mostra tutto (%lld)"
+ "value" : "Nucleus sampling. Lower values make the output more focused.",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle anzeigen (%lld)"
+ "value" : "Δειγματοληψία πυρήνα. Οι χαμηλότερες τιμές κάνουν την έξοδο πιο εστιασμένη.",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "すべて表示(%lld)"
+ "value" : "Nucleus-Sampling. Niedrigere Werte machen die Ausgabe fokussierter."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mostrar tudo (%lld)"
+ "value" : "Nukleussampling. Lägre värden gör resultatet mer fokuserat."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mostrar todo (%lld)"
+ "value" : "Amostragem por núcleo. Valores mais baixos tornam a saída mais focada."
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alles tonen (%lld)"
+ "value" : "Nucleus sampling. Lagere waarden maken de output gerichter."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tout afficher (%lld)"
+ "value" : "Campionamento a nucleo. Valori più bassi rendono l'output più focalizzato."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εμφάνιση όλων (%lld)"
+ "value" : "ニュークレオスサンプリング。値を低くすると出力がより集中します。",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Visa alla (%lld)"
+ "value" : "Échantillonnage nucleus. Des valeurs plus basses rendent la sortie plus ciblée."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Show All (%lld)"
+ "value" : "Muestreo de núcleo. Valores más bajos hacen que la salida sea más enfocada."
}
}
}
},
- "Something went wrong. Please try again." : {
+ "Synchronization failed" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Qualcosa è andato storto. Riprova."
+ "value" : "Synkroniseringen misslyckades",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut."
+ "value" : "Échec de la synchronisation",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "問題が発生しました。もう一度お試しください。"
+ "value" : "Sincronizzazione non riuscita"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Algo correu mal. Por favor, tente novamente."
+ "value" : "La sincronización ha fallado",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Algo salió mal. Por favor, inténtalo de nuevo."
+ "value" : "Synchronisatie mislukt",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Er is iets misgegaan. Probeer het opnieuw."
+ "value" : "Falha na sincronização",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Κάτι πήγε στραβά. Παρακαλώ δοκιμάστε ξανά."
+ "value" : "同期に失敗しました"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Une erreur est survenue. Veuillez réessayer."
+ "value" : "Synchronization failed"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Något gick fel. Försök igen."
+ "value" : "Synchronisierung fehlgeschlagen"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Something went wrong. Please try again."
+ "value" : "Ο συγχρονισμός απέτυχε",
+ "state" : "translated"
}
}
}
},
- "MCP Servers" : {
- "comment" : "A button that dismisses the MCP Tools sheet.",
+ "Open a conversation by ID" : {
+ "comment" : "A description of how to open a conversation by its ID using the URL scheme.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Server MCP"
+ "value" : "Open een gesprek via ID"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP-Server"
+ "value" : "Abrir una conversación por ID",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPサーバー"
+ "value" : "Άνοιγμα συνομιλίας με βάση το αναγνωριστικό"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Servidores MCP"
+ "value" : "IDで会話を開く",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Servidores MCP"
+ "value" : "Eine Unterhaltung über die ID öffnen",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-servers"
+ "value" : "Apri una conversazione tramite ID"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Serveurs MCP"
+ "value" : "Open a conversation by ID"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διακομιστές MCP"
+ "value" : "Öppna en konversation med ID"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-servrar"
+ "value" : "Ouvrir une conversation par ID"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP Servers"
+ "value" : "Abrir uma conversa pelo ID",
+ "state" : "translated"
}
}
}
},
- "Review iCloud Account" : {
+ "See conversations for a selected tag." : {
+ "comment" : "Description of the widget that shows conversations assigned to a tag selected in the widget configuration.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Verifica l’account iCloud"
+ "value" : "Δείτε συνομιλίες για μια επιλεγμένη ετικέτα.",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-Account überprüfen"
+ "value" : "Visualizza le conversazioni per un tag selezionato"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudアカウントを確認"
+ "value" : "Ver conversaciones para una etiqueta seleccionada"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rever a conta do iCloud"
+ "value" : "Bekijk gesprekken voor een geselecteerd label.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Revisar la cuenta de iCloud"
+ "value" : "選択したタグの会話を表示します",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-account controleren"
+ "value" : "Siehe Unterhaltungen für ein ausgewähltes Tag.",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Έλεγχος λογαριασμού iCloud"
+ "value" : "Voir les conversations pour un tag sélectionné",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vérifier le compte iCloud"
+ "value" : "Ver conversas para uma etiqueta selecionada",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Granska iCloud-konto"
+ "value" : "See conversations for the selected tag"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Review iCloud Account"
+ "value" : "Se konversationer för en vald tagg.",
+ "state" : "translated"
}
}
}
},
- "Built-in" : {
- "comment" : "A section title for built-in templates.",
+ "Top P" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Integrato"
+ "value" : "Top P"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eingebaut"
+ "value" : "Top P",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "組み込み"
+ "value" : "Top P"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Integrado"
+ "value" : "Top P"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Incorporado"
+ "value" : "Κορυφαίο P"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ingebouwd"
+ "value" : "Top P",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Intégré"
+ "value" : "トップP",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ενσωματωμένα"
+ "value" : "Top P"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inbyggd"
+ "value" : "Topp P",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Built-in"
+ "value" : "Top P",
+ "state" : "translated"
}
}
}
},
- "Message" : {
+ "Write a creative story" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Messaggio"
+ "value" : "Write a creative story"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nachricht"
+ "value" : "Écris une histoire créative"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メッセージ"
+ "value" : "Skriv en kreativ berättelse"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mensagem"
+ "value" : "Scrivi una storia creativa"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mensaje"
+ "value" : "Γράψε μια δημιουργική ιστορία"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bericht"
+ "value" : "Escribe una historia creativa"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Message"
+ "value" : "Escreve uma história criativa",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μήνυμα"
+ "value" : "創造的な物語を書く"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Meddelande"
+ "value" : "Schreibe eine kreative Geschichte",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Message"
+ "value" : "Schrijf een creatief verhaal",
+ "state" : "translated"
}
}
}
},
- "Personal Context" : {
- "comment" : "A button that opens a sheet for configuring the user's name and personal context.",
+ "Deletes these categories from iCloud and all synchronized devices:\n- Conversations and attachments\n- Personal Context\n- Memory\n- Custom Templates\n\nNewer data created after this deletion can synchronize again. This action cannot be undone." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contesto personale"
+ "value" : "これらのカテゴリをiCloudおよび同期済みのすべてのデバイスから削除します:\n- 会話と添付ファイル\n- パーソナルコンテキスト\n- メモリ\n- カスタムテンプレート\n\nこの削除後に作成された新しいデータは、再び同期される可能性があります。この操作は取り消せません。"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Persönlicher Kontext"
+ "value" : "Tar bort dessa kategorier från iCloud och alla synkroniserade enheter:\n- Konversationer och bilagor\n- Personlig kontext\n- Minne\n- Anpassade mallar\n\nNyare data som skapas efter denna radering kan synkroniseras igen. Den här åtgärden kan inte ångras."
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "個人情報"
+ "value" : "Elimina estas categorias do iCloud e de todos os dispositivos sincronizados:\n- Conversas e anexos\n- Contexto pessoal\n- Memória\n- Modelos personalizados\n\nOs dados mais recentes criados após esta eliminação podem ser sincronizados novamente. Esta ação não pode ser anulada."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contexto Pessoal"
+ "value" : "Διαγράφει αυτές τις κατηγορίες από το iCloud και όλες τις συγχρονισμένες συσκευές:\n- Συνομιλίες και συνημμένα\n- Προσωπικό πλαίσιο\n- Μνήμη\n- Προσαρμοσμένα πρότυπα\n\nΤα νεότερα δεδομένα που δημιουργήθηκαν μετά από αυτήν τη διαγραφή μπορούν να συγχρονιστούν ξανά. Αυτή η ενέργεια δεν μπορεί να αναιρεθεί."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Contexto personal"
+ "value" : "Löscht diese Kategorien aus iCloud und von allen synchronisierten Geräten:\n- Unterhaltungen und Anhänge\n- Persönlicher Kontext\n- Erinnerungen\n- Benutzerdefinierte Vorlagen\n\nNeuere Daten, die nach dieser Löschung erstellt werden, können wieder synchronisiert werden. Diese Aktion kann nicht rückgängig gemacht werden."
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Persoonlijke context"
+ "value" : "Verwijdert deze categorieën uit iCloud en alle gesynchroniseerde apparaten:\n- Gesprekken en bijlagen\n- Persoonlijke context\n- Geheugen\n- Aangepaste sjablonen\n\nNieuwere gegevens die na deze verwijdering worden aangemaakt, kunnen opnieuw worden gesynchroniseerd. Deze actie kan niet ongedaan worden gemaakt."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσωπικό Πλαίσιο"
+ "value" : "Deletes these categories from iCloud and all synchronized devices:\n- Conversations and attachments\n- Personal Context\n- Memory\n- Custom Templates\n\nNewer data created after this deletion can synchronize again. This action cannot be undone."
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Contexte personnel"
+ "value" : "Elimina estas categorías de iCloud y de todos los dispositivos sincronizados:\n- Conversaciones y archivos adjuntos\n- Contexto personal\n- Memoria\n- Plantillas personalizadas\n\nLos datos más recientes creados después de esta eliminación pueden volver a sincronizarse. Esta acción no se puede deshacer.",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Personlig kontext"
+ "value" : "Supprime ces catégories d’iCloud et de tous les appareils synchronisés :\n- Conversations et pièces jointes\n- Contexte personnel\n- Mémoire\n- Modèles personnalisés\n\nLes nouvelles données créées après cette suppression peuvent à nouveau être synchronisées. Cette action est irréversible.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Personal Context"
+ "value" : "Elimina queste categorie da iCloud e da tutti i dispositivi sincronizzati:\n- Conversazioni e allegati\n- Contesto personale\n- Memoria\n- Modelli personalizzati\n\nI dati più recenti creati dopo questa eliminazione possono essere sincronizzati di nuovo. Questa azione non può essere annullata."
}
}
}
},
- "tag.text" : {
- "comment" : "Label for a text-related capability of an LLM model.",
+ "Swift uses structured concurrency with async\/await..." : {
+ "comment" : "Text of a message preview in a conversation.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Text"
+ "value" : "Swift usa concorrência estruturada com async\/await..."
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Text"
+ "value" : "Swiftはasync\/awaitを使った構造化並行処理を採用しています...",
+ "state" : "translated"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Text"
+ "value" : "Swift gebruikt gestructureerde gelijktijdigheid met async\/await...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Text"
+ "value" : "Swift verwendet strukturierte Nebenläufigkeit mit async\/await...",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Text"
+ "value" : "Η Swift χρησιμοποιεί δομημένη ασύγχρονη εκτέλεση με async\/await..."
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Text"
+ "value" : "Swift använder strukturerad samtidighet med async\/await..."
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Text"
+ "value" : "Swift uses structured concurrency with async\/await...",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Text"
+ "value" : "Swift utilizza la concorrenza strutturata con async\/await..."
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Text"
+ "value" : "Swift usa concurrencia estructurada con async\/await..."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Text"
+ "value" : "Swift utilise la concurrence structurée avec async\/await..."
}
}
}
},
- "Server" : {
+ "Always Allow Selected" : {
+ "comment" : "A label that describes a selection of \"Always Allow\" for a permission.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Server"
+ "value" : "Να επιτρέπονται πάντα τα επιλεγμένα",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Server"
+ "value" : "Consenti sempre ai selezionati"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "サーバー"
+ "value" : "Permitir siempre lo seleccionado"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Servidor"
+ "value" : "Geselecteerde altijd toestaan"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Servidor"
+ "value" : "選択項目を常に許可"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Server"
+ "value" : "Ausgewählte immer erlauben",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serveur"
+ "value" : "Toujours autoriser la sélectionnée",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διακομιστής"
+ "value" : "Always Allow Selected",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Server"
+ "value" : "Permitir sempre os selecionados"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Server"
+ "value" : "Tillåt alltid valda"
}
}
}
},
- "%@: %@." : {
+ "Regenerate Response" : {
+ "comment" : "A button that regenerates the last response.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@: %2$@."
+ "value" : "Regenerar Resposta"
}
},
"en" : {
- "stringUnit" : {
- "state" : "new",
- "value" : "%1$@: %2$@."
- }
- },
- "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@: %2$@."
+ "value" : "Regenerate Response"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@: %2$@."
+ "value" : "Αναδημιουργία Απάντησης"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$@ : %2$@."
+ "value" : "Régénérer la réponse",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$@: %2$@."
+ "value" : "Antwoord opnieuw genereren",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@: %2$@."
+ "value" : "Antwort neu generieren"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$@: %2$@."
+ "value" : "Rigenera risposta",
+ "state" : "translated"
}
},
"ja" : {
+ "stringUnit" : {
+ "value" : "回答を再生成",
+ "state" : "translated"
+ }
+ },
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@: %2$@。"
+ "value" : "Generera om svar"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@: %2$@."
+ "value" : "Regenerar respuesta"
}
}
}
},
- "There is not enough storage to complete synchronization." : {
+ "Tap the Share button in any app." : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Spazio di archiviazione insufficiente per completare la sincronizzazione."
+ "value" : "任意のアプリで共有ボタンをタップしてください。",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Es ist nicht genügend Speicherplatz vorhanden, um die Synchronisierung abzuschließen."
+ "value" : "Toque no botão Partilhar em qualquer aplicação.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "同期を完了するための空き容量が不足しています。"
+ "value" : "Πατήστε το κουμπί Κοινή χρήση σε οποιαδήποτε εφαρμογή."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não há espaço de armazenamento suficiente para concluir a sincronização."
+ "value" : "Tryck på dela-knappen i valfri app.",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No hay suficiente espacio de almacenamiento para completar la sincronización."
+ "value" : "Tippen Sie in einer beliebigen App auf die Teilen-Taste."
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Er is niet genoeg opslagruimte om de synchronisatie te voltooien."
+ "value" : "Tik op de Deel-knop in een app."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "L’espace de stockage est insuffisant pour terminer la synchronisation."
+ "value" : "Tap the Share button in any app."
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν υπάρχει αρκετός αποθηκευτικός χώρος για την ολοκλήρωση του συγχρονισμού."
+ "value" : "Toca el botón Compartir en cualquier app.",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Det finns inte tillräckligt med lagringsutrymme för att slutföra synkroniseringen."
+ "value" : "Appuyez sur le bouton Partager dans n’importe quelle application.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "There is not enough storage to complete synchronization."
+ "value" : "Tocca il pulsante Condividi in qualsiasi app."
}
}
}
},
- "The local profile contains invalid data." : {
+ "Personalization" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Il profilo locale contiene dati non validi."
+ "value" : "Personalisering",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Das lokale Profil enthält ungültige Daten."
+ "value" : "Personnalisation",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ローカルプロフィールに無効なデータが含まれています。"
+ "value" : "Personalizzazione",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "O perfil local contém dados inválidos."
+ "value" : "Personalización",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El perfil local contiene datos no válidos."
+ "value" : "パーソナライズ",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Het lokale profiel bevat ongeldige gegevens."
+ "value" : "Personalisatie"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Το τοπικό προφίλ περιέχει μη έγκυρα δεδομένα."
+ "value" : "Personalização"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le profil local contient des données non valides."
+ "value" : "Personalization",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Den lokala profilen innehåller ogiltiga data."
+ "value" : "Personalisierung",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The local profile contains invalid data."
+ "value" : "Εξατομίκευση"
}
}
- }
+ },
+ "comment" : "A heading for the personalization settings."
},
- "The server configuration changed while the response was running." : {
- "comment" : "Error message when the server configuration changes during an agent response.",
+ "External MCP tool" : {
+ "comment" : "Name of an MCP tool that is not part of the MCP SDK.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La configurazione del server è cambiata mentre la risposta era in corso."
+ "value" : "Externes MCP-Tool",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Serverkonfiguration wurde geändert, während die Antwort erstellt wurde."
+ "value" : "Εξωτερικό εργαλείο MCP"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "応答中にサーバー設定が変更されました。"
+ "value" : "External MCP tool",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A configuração do servidor foi alterada enquanto a resposta estava a decorrer."
+ "value" : "Externt MCP-verktyg",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "La configuración del servidor cambió mientras se generaba la respuesta."
+ "value" : "Ferramenta MCP externa",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De serverconfiguratie is gewijzigd terwijl het antwoord werd gegenereerd."
+ "value" : "Externe MCP-tool"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La configuration du serveur a changé pendant le traitement de la réponse."
+ "value" : "Strumento MCP esterno"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Η διαμόρφωση του διακομιστή άλλαξε ενώ η απάντηση ήταν σε εξέλιξη."
+ "value" : "外部MCPツール",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Serverkonfigurationen ändrades medan svaret pågick."
+ "value" : "Outil MCP externe"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "The server configuration changed while the response was running."
+ "value" : "Herramienta MCP externa"
}
}
}
},
- "Delete %@?" : {
+ "tag.audio" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminare %@?"
+ "value" : "Audio",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%@ löschen?"
+ "value" : "Audio"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%@を削除しますか?"
+ "value" : "Audio",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Apagar %@?"
+ "value" : "Audio"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "¿Eliminar %@?"
+ "value" : "Audio"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%@ verwijderen?"
+ "value" : "Audio"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαγραφή του %@;"
+ "value" : "Audio",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supprimer %@ ?"
+ "value" : "Audio"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Radera %@?"
+ "value" : "Audio",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Delete %@?"
+ "value" : "Audio"
}
}
- }
+ },
+ "comment" : "Label for the audio input capability."
},
- "Results" : {
- "comment" : "A label displayed in the footer of a settings section.",
+ "Searching the web..." : {
+ "comment" : "A message displayed when the user is searching the web.",
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Risultati"
+ "value" : "Αναζήτηση στο διαδίκτυο..."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ergebnisse"
+ "value" : "Buscando en la web...",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "結果"
+ "value" : "Ricerca sul web..."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Resultados"
+ "value" : "Söker på webben..."
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Resultados"
+ "value" : "ウェブを検索中..."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Resultaten"
+ "value" : "Websuche läuft..."
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Résultats"
+ "value" : "A pesquisar na web..."
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αποτελέσματα"
+ "value" : "Web aan het doorzoeken...",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Resultat"
+ "value" : "Searching the web...",
+ "state" : "translated"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Results"
+ "value" : "Recherche sur le web..."
}
}
}
},
- "In Progress" : {
+ "Search the web" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "In corso"
+ "value" : "Sök på webben",
+ "state" : "translated"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "In Bearbeitung"
+ "value" : "Rechercher sur le web",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "進行中"
+ "value" : "Cerca sul web"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Em progresso"
+ "value" : "Zoek op het web"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "En progreso"
+ "value" : "Buscar en la web"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bezig"
+ "value" : "Pesquisar na web"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "En cours"
+ "value" : "ウェブを検索する"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Σε εξέλιξη"
+ "value" : "Search the web"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pågår"
+ "value" : "Im Web suchen",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "In Progress"
+ "value" : "Αναζήτηση στο διαδίκτυο"
}
}
- }
+ },
+ "comment" : "A description of the feature that lets the model search the web."
},
- "Last successful synchronization: %@" : {
+ "Start a conversation" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ultima sincronizzazione riuscita: %@"
+ "value" : "Iniciar uma conversa"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Letzte erfolgreiche Synchronisierung: %@"
+ "value" : "Konversation starten",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "最後に正常に同期した日時:%@"
+ "value" : "Démarrer une conversation",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Última sincronização bem-sucedida: %@"
+ "value" : "Ξεκινήστε μια συνομιλία",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Última sincronización exitosa: %@"
+ "value" : "Iniciar una conversación",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Laatste succesvolle synchronisatie: %@"
+ "value" : "Begin een gesprek"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τελευταίος επιτυχής συγχρονισμός: %@"
+ "value" : "Start a conversation",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dernière synchronisation réussie : %@"
+ "value" : "会話を始める"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Senaste lyckade synkronisering: %@"
+ "value" : "Starta en konversation",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Last successful synchronization: %@"
+ "value" : "Inizia una conversazione",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Subtitle for the \"New Chat\" action button in the Quick Actions widget."
},
- "Some iCloud data is still downloading. Try again when it is available." : {
+ "Enter your LiteLLM proxy URL, the gateway to any AI model." : {
+ "comment" : "A description of the purpose of the server URL field.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alcuni dati di iCloud sono ancora in fase di download. Riprova quando saranno disponibili."
+ "value" : "Introduce la URL de tu proxy LiteLLM, la puerta de acceso a cualquier modelo de IA."
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Einige iCloud-Daten werden noch heruntergeladen. Versuche es erneut, sobald sie verfügbar sind."
+ "value" : "Ange din LiteLLM-proxy-URL, porten till vilken AI-modell som helst.",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "一部のiCloudデータはまだダウンロード中です。利用可能になってからもう一度お試しください。"
+ "value" : "Entrez l’URL de votre proxy LiteLLM, la passerelle vers n’importe quel modèle d’IA."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alguns dados do iCloud ainda estão a ser descarregados. Tente novamente quando estiverem disponíveis."
+ "value" : "Εισαγάγετε το URL διακομιστή μεσολάβησης LiteLLM, την πύλη σε οποιοδήποτε μοντέλο AI.",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aún se están descargando algunos datos de iCloud. Inténtalo de nuevo cuando estén disponibles."
+ "value" : "Enter your LiteLLM proxy URL, the gateway to any AI model."
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sommige iCloud-gegevens worden nog gedownload. Probeer het opnieuw wanneer ze beschikbaar zijn."
+ "value" : "Inserisci l’URL del proxy LiteLLM, il gateway per qualsiasi modello AI."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ορισμένα δεδομένα του iCloud εξακολουθούν να λαμβάνονται. Δοκιμάστε ξανά όταν θα είναι διαθέσιμα."
+ "value" : "LiteLLMプロキシURLを入力してください。これはあらゆるAIモデルへのゲートウェイです。"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Certaines données iCloud sont toujours en cours de téléchargement. Réessayez lorsqu’elles seront disponibles."
+ "value" : "Geben Sie Ihre LiteLLM-Proxy-URL ein, das Tor zu jedem KI-Modell."
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Viss iCloud-data håller fortfarande på att laddas ner. Försök igen när den är tillgänglig."
+ "value" : "Voer uw LiteLLM-proxy-URL in, de toegangspoort tot elk AI-model."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Some iCloud data is still downloading. Try again when it is available."
+ "value" : "Introduza a URL do seu proxy LiteLLM, a porta de entrada para qualquer modelo de IA."
}
}
}
},
- "Review iCloud account" : {
+ "Enter your name" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Controlla l’account iCloud"
+ "value" : "Εισάγετε το όνομά σας",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-Account überprüfen"
+ "value" : "Ange ditt namn",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudアカウントを確認する"
+ "value" : "名前を入力してください"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rever a conta do iCloud"
+ "value" : "Voer uw naam in"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Revisar la cuenta de iCloud"
+ "value" : "Introduce tu nombre"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud-account controleren"
+ "value" : "Entrez votre nom",
+ "state" : "translated"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ελέγξτε τον λογαριασμό iCloud"
+ "value" : "Gib deinen Namen ein"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vérifier le compte iCloud"
+ "value" : "Introduza o seu nome"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Granska iCloud-kontot"
+ "value" : "Inserisci il tuo nome"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Review iCloud account"
+ "value" : "Enter your name",
+ "state" : "translated"
}
}
}
},
- "Show Actions" : {
- "comment" : "A label for a button that shows additional actions.",
+ "MCP permissions require access to secure storage." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mostra azioni"
+ "value" : "MCP-behörigheter kräver åtkomst till säker lagring."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktionen anzeigen"
+ "value" : "MCP-machtigingen vereisen toegang tot beveiligde opslag."
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アクションを表示"
+ "value" : "Οι άδειες MCP απαιτούν πρόσβαση σε ασφαλή αποθήκευση.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mostrar Ações"
+ "value" : "Los permisos de MCP requieren acceso al almacenamiento seguro.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mostrar acciones"
+ "value" : "MCPの権限には安全なストレージへのアクセスが必要です。",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Acties tonen"
+ "value" : "MCP-Berechtigungen erfordern Zugriff auf den sicheren Speicher."
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Afficher les actions"
+ "value" : "Les autorisations MCP nécessitent un accès au stockage sécurisé.",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εμφάνιση ενεργειών"
+ "value" : "Le autorizzazioni MCP richiedono l’accesso all’archiviazione sicura."
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Visa åtgärder"
+ "value" : "MCP permissions require access to secure storage."
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Show Actions"
+ "value" : "As permissões do MCP requerem acesso ao armazenamento seguro.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Error message displayed when MCP permissions are required for secure storage access."
},
- "Loading more..." : {
+ "Tap + to create your first custom prompt template." : {
+ "comment" : "A description of the action to create a custom prompt template.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Caricamento in corso..."
+ "value" : "Touchez + pour créer votre premier modèle d’invite personnalisé."
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mehr laden..."
+ "value" : "Tocca + per creare il tuo primo modello di prompt personalizzato.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "さらに読み込み中..."
+ "value" : "Tap + to create your first custom prompt template"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A carregar mais..."
+ "value" : "Tik op + om je eerste aangepaste promptsjabloon te maken.",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cargando más..."
+ "value" : "Tippe auf +, um deine erste benutzerdefinierte Eingabevorlage zu erstellen.",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Meer laden..."
+ "value" : "Toca + para crear tu primera plantilla de indicación personalizada."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chargement de plus..."
+ "value" : "Tryck på + för att skapa din första anpassade promptmall.",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Φόρτωση περισσότερων..."
+ "value" : "+ をタップして最初のカスタムプロンプトテンプレートを作成してください。"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Laddar mer..."
+ "value" : "Toque em + para criar o seu primeiro modelo de prompt personalizado.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Loading more..."
+ "value" : "Πατήστε + για να δημιουργήσετε το πρώτο σας προσαρμοσμένο πρότυπο προτροπής.",
+ "state" : "translated"
}
}
}
},
- "Sends the arguments below to %@. It may access, create, change, or delete external data and may incur costs." : {
- "comment" : "A tooltip that describes the potential impact of sending the arguments of a request to a server.",
+ "Estimated cost" : {
+ "comment" : "A label for the estimated cost of a conversation.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Invia gli argomenti riportati di seguito a %@. Potrebbe accedere a dati esterni, crearli, modificarli o eliminarli e potrebbe comportare dei costi."
+ "value" : "Custo estimado",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sendet die folgenden Argumente an %@. Dabei können externe Daten abgerufen, erstellt, geändert oder gelöscht werden, und es können Kosten entstehen."
+ "value" : "推定費用"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "以下の引数を%@に送信します。外部データへのアクセス、作成、変更、削除が行われ、費用が発生する場合があります。"
+ "value" : "Geschatte kosten",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Envia os argumentos abaixo para %@. Poderá aceder, criar, alterar ou eliminar dados externos e poderá incorrer em custos."
+ "value" : "Geschätzte Kosten"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Envía los argumentos siguientes a %@. Puede acceder a datos externos, crearlos, modificarlos o eliminarlos, y puede generar costes."
+ "value" : "Εκτιμώμενο κόστος"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Stuurt de onderstaande argumenten naar %@. De server kan externe gegevens openen, aanmaken, wijzigen of verwijderen en er kunnen kosten in rekening worden gebracht."
+ "value" : "Beräknad kostnad",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αποστέλλει τα παρακάτω ορίσματα στο %@. Ενδέχεται να αποκτήσει πρόσβαση, να δημιουργήσει, να αλλάξει ή να διαγράψει εξωτερικά δεδομένα και να επιφέρει χρεώσεις."
+ "value" : "Estimated cost",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Envoie les arguments ci-dessous à %@. Celui-ci peut accéder à des données externes, en créer, les modifier ou les supprimer, et peut occasionner des frais."
+ "value" : "Costo stimato"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Skickar argumenten nedan till %@. Den kan komma åt, skapa, ändra eller radera externa data och kan medföra kostnader."
+ "value" : "Costo estimado"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sends the arguments below to %@. It may access, create, change, or delete external data and may incur costs."
+ "value" : "Coût estimé"
}
}
}
},
- "Enter a positive whole number of input tokens." : {
- "comment" : "A description of the input tokens field.",
+ "Delete Memory Item?" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inserisci un numero intero positivo di token di input."
+ "value" : "Διαγραφή στοιχείου μνήμης;"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geben Sie eine positive ganze Zahl der Eingabetoken ein."
+ "value" : "Delete Memory Item?",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "正の整数の入力トークン数を入力してください。"
+ "value" : "¿Eliminar el elemento de memoria?",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Introduza um número inteiro positivo de tokens de entrada."
+ "value" : "メモリー項目を削除しますか?"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Introduce un número entero positivo de tokens de entrada."
+ "value" : "Eliminar item da memória?",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Voer een positief geheel aantal invoertokens in."
+ "value" : "Supprimer l’élément de mémoire ?"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εισάγετε έναν θετικό ακέραιο αριθμό εισόδων."
+ "value" : "Eliminare l’elemento di memoria?"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Entrez un nombre entier positif de jetons d’entrée."
+ "value" : "Geheugenitem verwijderen?",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ange ett positivt heltal för inmatningstoken."
+ "value" : "Vill du radera minnesobjektet?"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enter a positive integer number of input tokens"
+ "value" : "Speicherelement löschen?"
}
}
- }
+ },
+ "comment" : "A confirmation dialog asking the user to delete a memory item."
},
- "No MCP servers configured. Add them in your LiteLLM server's config.yaml." : {
- "comment" : "A message that appears when there are no MCP servers configured.",
+ "Refresh Tools" : {
+ "comment" : "A button that refreshes the list of search tools.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nessun server MCP configurato. Aggiungili nel file config.yaml del tuo server LiteLLM."
+ "value" : "Vernieuw Hulpmiddelen"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Keine MCP-Server konfiguriert. Fügen Sie sie in der config.yaml Ihres LiteLLM-Servers hinzu."
+ "value" : "Ανανέωση Εργαλείων"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCPサーバーが設定されていません。LiteLLMサーバーのconfig.yamlに追加してください。"
+ "value" : "Actualiser les outils",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nenhum servidor MCP configurado. Adicione-os no config.yaml do seu servidor LiteLLM."
+ "value" : "Actualizar herramientas"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No hay servidores MCP configurados. Agréguelos en el config.yaml de su servidor LiteLLM."
+ "value" : "Refresh Tools",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geen MCP-servers geconfigureerd. Voeg ze toe in de config.yaml van je LiteLLM-server."
+ "value" : "ツールを更新",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν έχουν ρυθμιστεί MCP διακομιστές. Προσθέστε τους στο config.yaml του διακομιστή LiteLLM σας."
+ "value" : "Atualizar Ferramentas",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aucun serveur MCP configuré. Ajoutez-les dans le config.yaml de votre serveur LiteLLM."
+ "value" : "Uppdatera verktyg"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Inga MCP-servrar konfigurerade. Lägg till dem i din LiteLLM-servers config.yaml."
+ "value" : "Aggiorna strumenti"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No MCP servers configured. Add them in your LiteLLM server's config.yaml."
+ "value" : "Werkzeuge aktualisieren"
}
}
}
},
- "Show Feature Tips Again" : {
- "comment" : "A button that shows the feature tips again.",
+ "About" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mostra di nuovo i suggerimenti sulle funzionalità"
+ "value" : "About",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Funktionstipps erneut anzeigen"
+ "value" : "Om"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "機能のヒントを再表示する"
+ "value" : "À propos"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mostrar Dicas de Funcionalidades Novamente"
+ "value" : "Acerca"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mostrar consejos de funciones nuevamente"
+ "value" : "情報"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Toon functietips opnieuw"
+ "value" : "Acerca de"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afficher à nouveau les astuces de fonctionnalité"
+ "value" : "Over"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εμφάνιση συμβουλών λειτουργίας ξανά"
+ "value" : "Informazioni"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Visa tips om funktioner igen"
+ "value" : "Σχετικά"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Show Feature Tips Again"
+ "value" : "Info"
}
}
}
},
- "Purchases restored" : {
- "comment" : "A title for an alert that informs the user that their App Store purchases have been synchronized.",
+ "No comments yet. Be the first to comment!" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Acquisti ripristinati"
+ "value" : "Pas encore de commentaires. Soyez le premier à commenter !",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Käufe wiederhergestellt"
+ "value" : "Noch keine Kommentare. Sei der Erste, der kommentiert!",
+ "state" : "translated"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "購入内容を復元しました"
+ "value" : "Ainda sem comentários. Seja o primeiro a comentar!"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Compras restauradas"
+ "value" : "Δεν υπάρχουν σχόλια ακόμα. Γίνε ο πρώτος που θα σχολιάσει!"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Compras restauradas"
+ "value" : "Aún no hay comentarios. ¡Sé el primero en comentar!",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aankopen hersteld"
+ "value" : "Nog geen reacties. Wees de eerste die reageert!"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Οι αγορές αποκαταστάθηκαν"
+ "value" : "Inga kommentarer än. Var den första att kommentera!",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Achats restaurés"
+ "value" : "No comments yet. Be the first to comment!",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Köp återställda"
+ "value" : "まだコメントはありません。最初のコメントを投稿しましょう!"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Purchases restored"
+ "value" : "Nessun commento ancora. Sii il primo a commentare!",
+ "state" : "translated"
}
}
}
},
- "Pinned Conversations" : {
- "comment" : "Title of the widget that shows pinned conversations.",
+ "Success" : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conversazioni fissate"
+ "value" : "Éxito",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Angeheftete Unterhaltungen"
+ "value" : "Erfolg"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ピン留めされた会話"
+ "value" : "成功",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversas Fixadas"
+ "value" : "Succès"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversaciones fijadas"
+ "value" : "Sucesso"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vastgezette gesprekken"
+ "value" : "Success",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversations épinglées"
+ "value" : "Successo"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Καρφιτσωμένες Συνομιλίες"
+ "value" : "Framgång",
+ "state" : "translated"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fästa konversationer"
+ "value" : "Succes",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pinned Conversations"
+ "value" : "Επιτυχία"
}
}
}
},
- "Privacy First" : {
- "comment" : "A description of the privacy features of OpenClient.",
+ "Share Extension" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Privacy prima di tutto"
+ "value" : "Extension de partage"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Datenschutz zuerst"
+ "value" : "Extensión para compartir",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "プライバシー最優先"
+ "value" : "Επέκταση Κοινοποίησης"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Privacidade em Primeiro Lugar"
+ "value" : "Dela-tillägg",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Privacidad ante todo"
+ "value" : "Estensione di condivisione"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Privacy eerst"
+ "value" : "Freigabeerweiterung",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Προτεραιότητα στην ιδιωτικότητα"
+ "value" : "Share Extension",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Confidentialité prioritaire"
+ "value" : "共有エクステンション"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sekretess i första hand"
+ "value" : "Extensão de Partilha",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Privacy First"
+ "value" : "Deeluitbreiding"
}
}
- }
+ },
+ "comment" : "A section that describes how to use the share extension to share content with the app."
},
- "Thinking" : {
- "comment" : "A label displayed in a bubble that indicates that the assistant is thinking.",
+ "OpenClient connects to your LiteLLM for privacy-first access to any AI." : {
+ "comment" : "A description of OpenClient's privacy-first connection to LiteLLM.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sto pensando"
+ "value" : "OpenClient se connecte à votre LiteLLM pour un accès à l’IA privilégiant la confidentialité."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Denke"
+ "value" : "Το OpenClient συνδέεται με το LiteLLM σας για πρόσβαση με προτεραιότητα στην ιδιωτικότητα σε οποιαδήποτε AI.",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "考え中"
+ "value" : "OpenClient se conecta a tu LiteLLM para un acceso a cualquier IA con prioridad en la privacidad."
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "A pensar"
+ "value" : "OpenClient ansluter till din LiteLLM för integritetsfokuserad åtkomst till AI."
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Pensando"
+ "value" : "OpenClient si connette al tuo LiteLLM per un accesso all’IA prioritariamente orientato alla privacy.",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bezig met nadenken"
+ "value" : "OpenClient connects to your LiteLLM for privacy-first access to any AI.",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Σκέψη"
+ "value" : "O OpenClient liga-se ao seu LiteLLM para acesso prioritário à privacidade a qualquer IA."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Réflexion en cours"
+ "value" : "OpenClientはプライバシー重視でLiteLLMに接続し、あらゆるAIにアクセスします。"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tänker"
+ "value" : "OpenClient verbindet sich mit Ihrem LiteLLM für datenschutzorientierten Zugriff auf jede KI.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Thinking"
+ "value" : "OpenClient maakt verbinding met je LiteLLM voor privacygerichte toegang tot elke AI."
}
}
}
},
- "Creative Writer" : {
- "comment" : "Name of the creative writing assistant prompt template.",
+ "A network error occurred. Please try again." : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Scrittore Creativo"
+ "value" : "Ett nätverksfel uppstod. Försök igen."
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kreativautor"
+ "value" : "Une erreur réseau est survenue. Veuillez réessayer.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "クリエイティブライター"
+ "value" : "Si è verificato un errore di rete. Riprova."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Escritor Criativo"
+ "value" : "Er is een netwerkfout opgetreden. Probeer het opnieuw.",
+ "state" : "translated"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Escritor Creativo"
+ "value" : "A network error occurred. Please try again.",
+ "state" : "translated"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Creatief Schrijver"
+ "value" : "ネットワークエラーが発生しました。もう一度お試しください。",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δημιουργικός Συγγραφέας"
+ "value" : "Ocorreu um erro de rede. Por favor, tente novamente.",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Écrivain créatif"
+ "value" : "Ocurrió un error de red. Por favor, inténtalo de nuevo."
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kreativ författare"
+ "value" : "Ein Netzwerkfehler ist aufgetreten. Bitte versuchen Sie es erneut.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Creative Writer"
+ "value" : "Παρουσιάστηκε σφάλμα δικτύου. Παρακαλώ δοκιμάστε ξανά.",
+ "state" : "translated"
}
}
}
},
- "OpenClient connects to your LiteLLM for privacy-first access to any AI." : {
- "comment" : "A description of OpenClient's privacy-first connection to LiteLLM.",
+ "If you continue, future calls will be blocked for this server configuration." : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient si connette al tuo LiteLLM per un accesso all’IA prioritariamente orientato alla privacy."
- }
- },
- "de" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient verbindet sich mit Ihrem LiteLLM für datenschutzorientierten Zugriff auf jede KI."
+ "value" : "続行すると、このサーバー設定に対する今後の呼び出しはブロックされます。",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClientはプライバシー重視でLiteLLMに接続し、あらゆるAIにアクセスします。"
+ "value" : "If you continue, future calls will be blocked for this server configuration.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O OpenClient liga-se ao seu LiteLLM para acesso prioritário à privacidade a qualquer IA."
+ "value" : "Se continui, le chiamate future verranno bloccate per questa configurazione del server."
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient se conecta a tu LiteLLM para un acceso a cualquier IA con prioridad en la privacidad."
+ "value" : "Si continúas, las llamadas futuras se bloquearán para esta configuración del servidor.",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient maakt verbinding met je LiteLLM voor privacygerichte toegang tot elke AI."
+ "value" : "Se continuar, as chamadas futuras serão bloqueadas para esta configuração do servidor."
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το OpenClient συνδέεται με το LiteLLM σας για πρόσβαση με προτεραιότητα στην ιδιωτικότητα σε οποιαδήποτε AI."
+ "value" : "Αν συνεχίσετε, οι μελλοντικές κλήσεις θα αποκλειστούν για αυτήν τη διαμόρφωση διακομιστή.",
+ "state" : "translated"
+ }
+ },
+ "de" : {
+ "stringUnit" : {
+ "value" : "Wenn Sie fortfahren, werden zukünftige Aufrufe für diese Serverkonfiguration blockiert.",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient se connecte à votre LiteLLM pour un accès à l’IA privilégiant la confidentialité."
+ "value" : "Si vous continuez, les prochains appels seront bloqués pour cette configuration du serveur.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "OpenClient ansluter till din LiteLLM för integritetsfokuserad åtkomst till AI."
+ "value" : "Om du fortsätter blockeras framtida anrop för den här serverkonfigurationen."
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "OpenClient connects to your LiteLLM for privacy-first access to any AI."
+ "value" : "Als je doorgaat, worden toekomstige aanroepen voor deze serverconfiguratie geblokkeerd.",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A message displayed in an alert that warns the user of the consequences of denying a permanent permission."
},
- "Delete comment" : {
+ "Creative" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Elimina commento"
+ "value" : "Creatief"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kommentar löschen"
+ "value" : "Δημιουργικό",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "コメントを削除"
+ "value" : "Creativo"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar comentário"
+ "value" : "Criativo"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminar comentario"
+ "value" : "Creative"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reactie verwijderen"
+ "value" : "Kreativ"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Supprimer le commentaire"
+ "value" : "Kreativ",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Διαγραφή σχολίου"
+ "value" : "クリエイティブ"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Radera kommentar"
+ "value" : "Creativo"
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Delete comment"
+ "value" : "Créatif"
}
}
}
},
- "Deleting a memory..." : {
- "comment" : "A message displayed when a memory is being deleted.",
+ "MCP Approval Required" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Eliminazione di una memoria..."
+ "value" : "Approbation MCP requise"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Speicher wird gelöscht..."
+ "value" : "Approvazione MCP richiesta",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "メモリを削除中…"
+ "value" : "MCPの承認が必要です"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A eliminar uma memória..."
+ "value" : "É necessária a aprovação do MCP",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Eliminando un recuerdo..."
+ "value" : "Se requiere aprobación de MCP",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geheugen verwijderen..."
+ "value" : "Απαιτείται έγκριση MCP",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Διαγραφή μνήμης..."
+ "value" : "MCP-godkännande krävs",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Suppression d’une mémoire…"
+ "value" : "Goedkeuring voor MCP vereist",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tar bort ett minne..."
+ "value" : "MCP Approval Required"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Deleting a memory..."
+ "value" : "MCP-Genehmigung erforderlich"
}
}
- }
+ },
+ "comment" : "A title for a screen that requires user approval for MCP permissions."
},
- "Title" : {
- "comment" : "A label displayed above the title field.",
+ "More support" : {
+ "comment" : "A label displayed above a button that opens a subscription for users who want to further support the project.",
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Titolo"
+ "value" : "Más apoyo",
+ "state" : "translated"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Titel"
+ "value" : "Meer steun"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "タイトル"
+ "value" : "Mer stöd"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Título"
+ "value" : "Più sostegno",
+ "state" : "translated"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Título"
+ "value" : "Plus de soutien"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Titel"
+ "value" : "More support"
}
},
"el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Τίτλος"
+ "value" : "Περισσότερη στήριξη"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Titre"
+ "value" : "Mais apoio",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Titel"
+ "value" : "さらなる応援",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Title"
+ "value" : "Mehr Unterstützung"
}
}
}
},
- "MCP Servers Unavailable" : {
- "comment" : "A label that describes the unavailable state of the MCP servers.",
+ "Tap to return to your conversation." : {
+ "comment" : "Text displayed in a conversation card when there is no conversation to show.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Server MCP non disponibili"
+ "value" : "会話に戻るにはタップしてください"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP-Server nicht verfügbar"
+ "value" : "Toque para voltar à sua conversa.",
+ "state" : "translated"
}
},
- "ja" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCPサーバー利用不可"
+ "value" : "Tryck för att återvända till din konversation."
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Servidores MCP Indisponíveis"
+ "value" : "Πατήστε για να επιστρέψετε στη συνομιλία σας."
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Servidores MCP no disponibles"
+ "value" : "Tippen, um zu Ihrer Unterhaltung zurückzukehren."
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP-servers niet beschikbaar"
+ "value" : "Tik om terug te keren naar je gesprek."
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Serveurs MCP indisponibles"
+ "value" : "Tap to return to your conversation",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Οι διακομιστές MCP δεν είναι διαθέσιμοι"
+ "value" : "Toca para volver a tu conversación.",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "MCP-servrar otillgängliga"
+ "value" : "Touchez pour revenir à votre conversation.",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "MCP Servers Unavailable"
+ "value" : "Tocca per tornare alla tua conversazione."
}
}
}
},
- "Review, edit, disable, or delete the memories used in future conversations." : {
- "comment" : "A description of the memory management feature.",
+ "Subscriptions" : {
+ "comment" : "A label for a section of the tip jar view that shows subscription options.",
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Rivedi, modifica, disabilita o elimina i ricordi utilizzati nelle conversazioni future."
+ "value" : "Subscrições"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Überprüfen, bearbeiten, deaktivieren oder löschen Sie die Erinnerungen, die in zukünftigen Gesprächen verwendet werden."
+ "value" : "Abonnementen",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "今後の会話で使用される記憶を確認、編集、無効化、または削除します。"
+ "value" : "Abbonamenti"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Revise, edite, desative ou elimine as memórias usadas em conversas futuras."
+ "value" : "Suscripciones",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Revisa, edita, desactiva o elimina los recuerdos usados en futuras conversaciones."
+ "value" : "Abonnements"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Beoordeel, bewerk, schakel uit of verwijder de herinneringen die in toekomstige gesprekken worden gebruikt."
+ "value" : "Abonnements",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αναθεώρηση, επεξεργασία, απενεργοποίηση ή διαγραφή των αναμνήσεων που χρησιμοποιούνται σε μελλοντικές συνομιλίες."
+ "value" : "サブスクリプション"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Révisez, modifiez, désactivez ou supprimez les souvenirs utilisés dans les conversations futures."
+ "value" : "Prenumerationer",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Granska, redigera, inaktivera eller ta bort minnen som används i framtida konversationer."
+ "value" : "Συνδρομές",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Review, edit, disable, or delete the memories used in future conversations"
+ "value" : "Subscriptions"
}
}
}
},
- "Hide Actions" : {
- "comment" : "A label for hiding the available actions.",
+ "Update required" : {
+ "comment" : "A title for the update required alert.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nascondi azioni"
+ "value" : "Mise à jour requise"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktionen ausblenden"
+ "value" : "Update erforderlich"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "アクションを非表示"
+ "value" : "Update vereist"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ocultar Ações"
+ "value" : "Απαιτείται ενημέρωση"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ocultar acciones"
+ "value" : "Atualização necessária"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Acties verbergen"
+ "value" : "Update required",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Masquer les actions"
+ "value" : "Aggiornamento richiesto",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Απόκρυψη ενεργειών"
+ "value" : "アップデートが必要です",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dölj åtgärder"
+ "value" : "Uppdatering krävs"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hide Actions"
+ "value" : "Actualización necesaria"
}
}
}
},
- "Open Settings" : {
- "comment" : "A button that opens the user's device settings.",
+ "Server URL" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Apri Impostazioni"
+ "value" : "Server URL",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Einstellungen öffnen"
+ "value" : "Server-URL",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "設定を開く"
+ "value" : "URL du serveur"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Abrir Definições"
+ "value" : "URL do servidor"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abrir ajustes"
+ "value" : "サーバーURL",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Open instellingen"
+ "value" : "URL del servidor"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ouvrir les Réglages"
+ "value" : "Server-URL",
+ "state" : "translated"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Άνοιγμα ρυθμίσεων"
+ "value" : "URL del server"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Öppna inställningar"
+ "value" : "Διεύθυνση URL διακομιστή",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Open Settings"
+ "value" : "Server-URL",
+ "state" : "translated"
}
}
}
},
- "Output" : {
- "shouldTranslate" : false,
- "comment" : "A label for the cost of output tokens."
- },
- "Balanced" : {
- "comment" : "A description of a temperature value.",
+ "Report Issue" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Bilanciato"
+ "value" : "Αναφορά προβλήματος"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ausgeglichen"
+ "value" : "Rapportera problem",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "バランス型"
+ "value" : "問題を報告する"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Equilibrada"
+ "value" : "Probleem melden"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Equilibrado"
+ "value" : "Reportar problema"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gebalanceerd"
+ "value" : "Signaler un problème",
+ "state" : "translated"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Équilibré"
+ "value" : "Problem melden"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ισορροπημένη"
+ "value" : "Reportar problema",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Balanserad"
+ "value" : "Segnala problema",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Balanced"
+ "value" : "Report Issue"
}
}
}
},
- "Use Local Data" : {
- "comment" : "A button that uses the local data.",
+ "The backup contains duplicate identifiers." : {
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Usa dati locali"
+ "value" : "Die Sicherung enthält doppelte Bezeichner.",
+ "state" : "translated"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Lokale Daten verwenden"
+ "value" : "The backup contains duplicate identifiers.",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ローカルデータを使用"
+ "value" : "Η δημιουργία αντιγράφου περιέχει διπλότυπους αναγνωριστικούς κωδικούς.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Usar Dados Locais"
+ "value" : "De back-up bevat dubbele identificaties."
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Usar datos locales"
+ "value" : "Il backup contiene identificatori duplicati.",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gebruik lokale gegevens"
+ "value" : "La sauvegarde contient des identifiants en double."
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Χρήση τοπικών δεδομένων"
+ "value" : "バックアップに重複した識別子が含まれています。"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Utiliser les données locales"
+ "value" : "O backup contém identificadores duplicados.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Använd lokal data"
+ "value" : "Säkerhetskopian innehåller dubblettidentifierare."
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Use Local Data"
+ "value" : "La copia de seguridad contiene identificadores duplicados."
}
}
}
},
- "Yesterday" : {
+ "New suggestion" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ieri"
+ "value" : "新しい提案",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gestern"
+ "value" : "Neuer Vorschlag"
}
},
- "ja" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "昨日"
+ "value" : "Nieuwe suggestie"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ontem"
+ "value" : "Nytt förslag",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ayer"
+ "value" : "Nova sugestão",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gisteren"
+ "value" : "Νέα πρόταση",
+ "state" : "translated"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Χθες"
+ "value" : "Nueva sugerencia",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hier"
+ "value" : "Nouvelle suggestion"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Igår"
+ "value" : "Nuovo suggerimento"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Yesterday"
+ "value" : "New suggestion",
+ "state" : "translated"
}
}
}
},
- "Review the current account before enabling synchronization." : {
+ "Help me with my code" : {
"localizations" : {
- "it" : {
- "stringUnit" : {
- "state" : "translated",
- "value" : "Esamina l'account attuale prima di abilitare la sincronizzazione."
- }
- },
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Überprüfen Sie das aktuelle Konto, bevor Sie die Synchronisierung aktivieren."
+ "value" : "Hilf mir bei meinem Code"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "同期を有効にする前に、現在のアカウントを確認してください。"
+ "value" : "Aide-moi avec mon code",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Reveja a conta atual antes de ativar a sincronização."
+ "value" : "Ayúdame con mi código"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Revisa la cuenta actual antes de activar la sincronización."
+ "value" : "Help me met mijn code",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Controleer het huidige account voordat u synchronisatie inschakelt."
+ "value" : "Aiutami con il mio codice"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ελέγξτε τον τρέχοντα λογαριασμό πριν ενεργοποιήσετε τον συγχρονισμό."
+ "value" : "コードの助けをしてください"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vérifiez le compte actuel avant d’activer la synchronisation."
+ "value" : "Ajuda-me com o meu código"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Granska det aktuella kontot innan synkronisering aktiveras."
+ "value" : "Hjälp mig med min kod",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Review the current account before enabling synchronization."
+ "value" : "Help me with my code",
+ "state" : "translated"
+ }
+ },
+ "el" : {
+ "stringUnit" : {
+ "value" : "Βοήθησέ με με τον κώδικά μου",
+ "state" : "translated"
}
}
}
},
- "%lld of %lld MCP tools enabled. Availability and permissions can also be managed from the chat input bar." : {
- "comment" : "A summary of the number of enabled and total MCP tools.",
+ "Estimated context" : {
+ "comment" : "A label that describes the context usage.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld di %2$lld strumenti MCP abilitati. La disponibilità e le autorizzazioni possono essere gestite anche dalla barra di input della chat."
+ "value" : "Geschätzter Kontext"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld von %2$lld MCP-Tools aktiviert. Verfügbarkeit und Berechtigungen können auch über die Chat-Eingabeleiste verwaltet werden."
+ "value" : "Uppskattad kontext"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld\/%2$lld個のMCPツールが有効です。利用可能状況と権限は、チャット入力バーからも管理できます。"
+ "value" : "Contexto estimado",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld de %2$lld ferramentas MCP ativadas. A disponibilidade e as permissões também podem ser geridas a partir da barra de entrada do chat."
+ "value" : "推定コンテキスト",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld de %2$lld herramientas de MCP habilitadas. La disponibilidad y los permisos también se pueden gestionar desde la barra de entrada del chat."
+ "value" : "Contexto estimado"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld van %2$lld MCP-tools ingeschakeld. Beschikbaarheid en machtigingen kunnen ook worden beheerd via de invoerbalk van de chat."
+ "value" : "Contesto stimato"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$lld sur %2$lld outils MCP activés. La disponibilité et les autorisations peuvent également être gérées depuis la barre de saisie du chat."
+ "value" : "Contexte estimé"
}
},
"el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld από %2$lld εργαλεία MCP ενεργοποιημένα. Η διαθεσιμότητα και τα δικαιώματα μπορούν επίσης να διαχειριστούν από τη γραμμή εισαγωγής συνομιλίας."
+ "value" : "Εκτιμώμενο πλαίσιο",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$lld av %2$lld MCP-verktyg aktiverade. Tillgänglighet och behörigheter kan också hanteras från chattens inmatningsfält."
+ "value" : "Estimated context",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "new",
- "value" : "%1$lld of %2$lld MCP tools enabled. Availability and permissions can also be managed from the chat input bar."
+ "value" : "Geschatte context",
+ "state" : "translated"
}
}
}
},
- "App Data Reset Failed" : {
- "comment" : "A title for a view that indicates that app data reset failed.",
+ "Feature Tips Reset" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ripristino dei dati dell’app non riuscito"
+ "value" : "Repor Dicas de Funcionalidades"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Zurücksetzen der App-Daten fehlgeschlagen"
+ "value" : "Réinitialisation des astuces de fonctionnalité",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "アプリデータのリセットに失敗しました"
+ "value" : "Restablecer consejos de funciones",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Falha ao repor os dados da aplicação"
+ "value" : "Feature Tips Reset",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se pudo restablecer los datos de la app"
+ "value" : "Επαναφορά Συμβουλών Χαρακτηριστικών"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Resetten van appgegevens mislukt"
+ "value" : "Feature-Tipps zurücksetzen"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Échec de la réinitialisation des données de l’appuite"
+ "value" : "機能ヒントのリセット"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η επαναφορά των δεδομένων της εφαρμογής απέτυχε"
+ "value" : "Functietips resetten"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Återställning av appdata misslyckades"
+ "value" : "Återställ tips för funktioner"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "App Data Reset Failed"
+ "value" : "Suggerimenti Funzionalità Reimpostati",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A title for an alert that informs the user that the feature tips have been reset."
},
- "Chat" : {
- "comment" : "A section of the settings view that deals with chat-related settings.",
+ "Recent Conversations" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chat"
+ "value" : "Πρόσφατες Συνομιλίες"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chat"
+ "value" : "最近の会話"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "チャット"
+ "value" : "Letzte Unterhaltungen"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chat"
+ "value" : "Conversas Recentes"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chat"
+ "value" : "Conversaciones recientes"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chatten"
+ "value" : "Senaste konversationer",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Discussion"
+ "value" : "Conversations récentes"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Συνομιλία"
+ "value" : "Conversazioni recenti"
}
},
- "sv" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chatt"
+ "value" : "Recente gesprekken"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chat"
+ "value" : "Recent Conversations"
}
}
- }
+ },
+ "comment" : "Title of the widget."
},
- "Unable to read the backup file." : {
+ "Connection successful — ready to continue" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile leggere il file di backup."
+ "value" : "Ligação bem-sucedida — pronto para continuar"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Die Sicherungsdatei kann nicht gelesen werden."
+ "value" : "Connexion réussie — prêt à continuer",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "バックアップファイルを読み取れません。"
+ "value" : "Conexión exitosa — listo para continuar"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Não foi possível ler o ficheiro de backup."
+ "value" : "Connection successful — ready to continue"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "No se puede leer el archivo de copia de seguridad."
+ "value" : "Η σύνδεση ήταν επιτυχής — έτοιμοι για συνέχεια"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kan het back-upbestand niet lezen."
+ "value" : "Verbindung erfolgreich — bereit zum Fortfahren",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αδυναμία ανάγνωσης του αρχείου αντιγράφου ασφαλείας."
+ "value" : "接続に成功しました — 続行の準備ができました",
+ "state" : "translated"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Impossible de lire le fichier de sauvegarde."
+ "value" : "Verbinding geslaagd — klaar om door te gaan",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Kan inte läsa säkerhetskopieringsfilen."
+ "value" : "Anslutning lyckades — redo att fortsätta"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Unable to read the backup file."
+ "value" : "Connessione riuscita — pronto per continuare",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A message displayed when the connection to the server is successful."
},
- "tag.tools" : {
- "comment" : "Label for a capability that allows calling functions in other tools.",
+ "App Icon" : {
+ "comment" : "A label displayed in the navigation bar.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tools"
+ "value" : "アプリアイコン"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tools"
+ "value" : "App Icon"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tools"
+ "value" : "Ícone da app",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tools"
+ "value" : "Icône de l’app"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tools"
+ "value" : "Apppictogram"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tools"
+ "value" : "App-Symbol"
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tools"
+ "value" : "Εικονίδιο εφαρμογής"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tools"
+ "value" : "Icona dell’app"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tools"
+ "value" : "Appikon",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tools"
+ "value" : "Icono de la app",
+ "state" : "translated"
}
}
}
},
- "Leave empty to submit anonymously" : {
+ "More" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lascia vuoto per inviare in modo anonimo"
+ "value" : "Mais"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Leer lassen, um anonym zu senden"
+ "value" : "Mehr"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "匿名で送信するには空欄のままにしてください"
+ "value" : "Plus",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Deixe vazio para enviar anonimamente"
+ "value" : "もっと見る",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Dejar vacío para enviar de forma anónima"
+ "value" : "Meer",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Laat leeg om anoniem te verzenden"
+ "value" : "Περισσότερα"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αφήστε κενό για ανώνυμη υποβολή"
+ "value" : "Más"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Laisser vide pour soumettre anonymement"
+ "value" : "Altro",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lämna tomt för att skicka anonymt"
+ "value" : "More"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Leave empty to submit anonymously"
+ "value" : "Mer"
}
}
- }
+ },
+ "comment" : "A button that opens a menu with options to export and import conversations."
},
- "Search Tool" : {
- "comment" : "A label for the search tool picker.",
+ "Title (Minimum 3 characters)" : {
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Strumento di ricerca"
+ "value" : "Titolo (Minimo 3 caratteri)",
+ "state" : "translated"
}
},
- "de" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Suchwerkzeug"
+ "value" : "タイトル(最低3文字)"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "検索ツール"
+ "value" : "Título (mínimo 3 caracteres)",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ferramenta de Pesquisa"
+ "value" : "Titel (mindestens 3 Zeichen)"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Herramienta de búsqueda"
+ "value" : "Titre (Minimum 3 caractères)",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zoekhulpmiddel"
+ "value" : "Title (Minimum 3 characters)"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Outil de recherche"
+ "value" : "Título (Mínimo 3 caracteres)"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Εργαλείο αναζήτησης"
+ "value" : "Titel (Minst 3 tecken)",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sökverktyg"
+ "value" : "Τίτλος (Ελάχιστο 3 χαρακτήρες)",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Search Tool"
+ "value" : "Titel (Minimaal 3 tekens)"
}
}
}
},
- "iCloud account unavailable" : {
+ "No Tools Available" : {
+ "comment" : "A description of the view when there are no tools available.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Account iCloud non disponibile"
+ "value" : "Aucun outil disponible"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-Account nicht verfügbar"
+ "value" : "Geen tools beschikbaar"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudアカウントを利用できません"
+ "value" : "Δεν υπάρχουν διαθέσιμα εργαλεία"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conta do iCloud indisponível"
+ "value" : "No hay herramientas disponibles"
}
},
- "es" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Cuenta de iCloud no disponible"
+ "value" : "No Tools Available",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-account niet beschikbaar"
+ "value" : "Nessuno strumento disponibile"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Compte iCloud indisponible"
+ "value" : "Keine Tools verfügbar",
+ "state" : "translated"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ο λογαριασμός iCloud δεν είναι διαθέσιμος"
+ "value" : "Nenhuma ferramenta disponível",
+ "state" : "translated"
}
},
- "sv" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-kontot är inte tillgängligt"
+ "value" : "利用可能なツールはありません"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "iCloud account unavailable"
+ "value" : "Inga verktyg tillgängliga",
+ "state" : "translated"
}
}
}
},
- "Image File..." : {
- "comment" : "A label for selecting an image file.",
+ "No Media or Files" : {
+ "comment" : "A description of the state displayed when the user has no media or files.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "File immagine..."
+ "value" : "Geen media of bestanden"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bilddatei..."
+ "value" : "Aucun média ni fichier",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "画像ファイル..."
+ "value" : "No Media or Files",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ficheiro de Imagem..."
+ "value" : "Nessun media o file",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Archivo de imagen..."
+ "value" : "Δεν υπάρχουν μέσα ή αρχεία",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Afbeeldingsbestand..."
+ "value" : "Sin medios ni archivos",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fichier image..."
+ "value" : "Sem Média ou Ficheiros"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Αρχείο εικόνας..."
+ "value" : "メディアやファイルがありません"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bildfil..."
+ "value" : "Keine Medien oder Dateien",
+ "state" : "translated"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Image File..."
+ "value" : "Inga medier eller filer"
}
}
}
},
- "Notifications not authorized" : {
- "comment" : "A label that indicates that the app has not yet been authorized to send notifications.",
+ "Customise this conversation" : {
+ "comment" : "A label for a menu that allows users to customise their current conversation.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Notifiche non autorizzate"
+ "value" : "Personnaliser cette conversation",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Benachrichtigungen nicht erlaubt"
+ "value" : "Personalizza questa conversazione",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "通知が許可されていません"
+ "value" : "Customize this conversation",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Notificações não autorizadas"
+ "value" : "Pas dit gesprek aan"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Notificaciones no autorizadas"
+ "value" : "Diese Unterhaltung anpassen",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Meldingen niet toegestaan"
+ "value" : "Personalizar esta conversación",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Οι ειδοποιήσεις δεν έχουν εξουσιοδοτηθεί"
+ "value" : "Anpassa den här konversationen",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Notifications non autorisées"
+ "value" : "この会話をカスタマイズする",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aviseringar inte godkända"
+ "value" : "Personalizar esta conversa"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Notifications not authorized"
+ "value" : "Προσαρμόστε αυτή τη συνομιλία",
+ "state" : "translated"
}
}
}
},
- "Choose the right model" : {
- "comment" : "A title for a tip that explains how to select a model for a conversation.",
+ "tag.web.search" : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Scegli il modello giusto"
+ "value" : "Web Search",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Wähle das richtige Modell"
+ "value" : "Web Search"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "適切なモデルを選択する"
+ "value" : "Web Search",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Escolha o modelo correto"
+ "value" : "Web Search",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Elige el modelo correcto"
+ "value" : "Web Search",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kies het juiste model"
+ "value" : "Web Search",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Choisissez le bon modèle"
+ "value" : "Web Search"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Επιλέξτε το σωστό μοντέλο"
+ "value" : "Web Search",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Välj rätt modell"
+ "value" : "Web Search"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Choose the right model"
+ "value" : "Web Search"
}
}
- }
+ },
+ "comment" : "Label for a capability that allows the model to perform web searches."
},
- "The iCloud container is unavailable." : {
- "comment" : "Error description when the iCloud container is unavailable.",
+ "Any additional context for the assistant" : {
+ "comment" : "A label for a text field where the user can add additional context for the assistant.",
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il contenitore iCloud non è disponibile."
+ "value" : "アシスタントへの追加情報"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Der iCloud-Container ist nicht verfügbar."
+ "value" : "Contesto aggiuntivo per l’assistente"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloudコンテナを利用できません。"
+ "value" : "Additional context for the assistant"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O contentor do iCloud está indisponível."
+ "value" : "Contexto adicional para el asistente"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El contenedor de iCloud no está disponible."
+ "value" : "Contexto adicional para o assistente",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De iCloud-container is niet beschikbaar."
+ "value" : "Πρόσθετο πλαίσιο για τον βοηθό"
}
},
- "el" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Το κοντέινερ iCloud δεν είναι διαθέσιμο."
+ "value" : "Zusätzlicher Kontext für den Assistenten",
+ "state" : "translated"
}
},
"fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Le conteneur iCloud est indisponible."
+ "value" : "Contexte supplémentaire pour l’assistant",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "iCloud-behållaren är inte tillgänglig."
+ "value" : "Ytterligare information för assistenten"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The iCloud container is unavailable."
+ "value" : "Aanvullende context voor de assistent",
+ "state" : "translated"
}
}
}
},
- "Regenerate Response" : {
- "comment" : "A button that regenerates the last response.",
+ "Terminal" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Rigenera risposta"
+ "value" : "ターミナル",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Antwort neu generieren"
+ "value" : "Terminal"
}
},
- "ja" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "回答を再生成"
+ "value" : "Terminal"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Regenerar Resposta"
+ "value" : "Τερματικό"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Regenerar respuesta"
+ "value" : "Terminal",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Antwoord opnieuw genereren"
+ "value" : "Terminal",
+ "state" : "translated"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αναδημιουργία Απάντησης"
+ "value" : "Terminal",
+ "state" : "translated"
}
},
- "fr" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Régénérer la réponse"
+ "value" : "Terminal",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Generera om svar"
+ "value" : "Terminal"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Regenerate Response"
+ "value" : "Terminal"
}
}
- }
+ },
+ "comment" : "Name of the terminal icon."
},
- "All" : {
+ "Loading more..." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tutti"
+ "value" : "Chargement de plus..."
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alle"
+ "value" : "Φόρτωση περισσότερων...",
+ "state" : "translated"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "すべて"
+ "value" : "Cargando más...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tudo"
+ "value" : "Laddar mer...",
+ "state" : "translated"
}
},
- "es" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Todos"
+ "value" : "Caricamento in corso...",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alles"
+ "value" : "A carregar mais...",
+ "state" : "translated"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tout"
+ "value" : "Loading more...",
+ "state" : "translated"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Όλα"
+ "value" : "さらに読み込み中...",
+ "state" : "translated"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Alla"
+ "value" : "Mehr laden...",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "All"
+ "value" : "Meer laden..."
}
}
}
},
- "Hide API Key" : {
+ "Deletion Incomplete" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nascondi chiave API"
+ "value" : "Deletion Incomplete"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "API-Schlüssel verbergen"
+ "value" : "Löschen nicht abgeschlossen"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "APIキーを隠す"
+ "value" : "Eliminación incompleta"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ocultar chave API"
+ "value" : "Η διαγραφή δεν ολοκληρώθηκε",
+ "state" : "translated"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ocultar clave API"
+ "value" : "Verwijderen niet voltooid"
}
},
- "nl" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "API-sleutel verbergen"
+ "value" : "Borttagningen är inte slutförd"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Απόκρυψη κλειδιού API"
+ "value" : "Suppression incomplète",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Masquer la clé API"
+ "value" : "Eliminazione incompleta"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Dölj API-nyckel"
+ "value" : "Eliminação incompleta"
}
},
- "en" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hide API Key"
+ "value" : "削除未完了",
+ "state" : "translated"
}
}
}
},
- "1 source" : {
- "comment" : "A label that indicates that there is 1 source.",
+ "Review and improve my writing" : {
"localizations" : {
- "it" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 fonte"
+ "value" : "私の文章を見直して改善する",
+ "state" : "translated"
}
},
- "de" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 Quelle"
+ "value" : "Rever e melhorar a minha escrita"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1つのソース"
+ "value" : "Αναθεώρηση και βελτίωση της γραφής μου",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 fonte"
+ "value" : "Granska och förbättra min text",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 fuente"
+ "value" : "Überprüfen und verbessern Sie meinen Text",
+ "state" : "translated"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 bron"
+ "value" : "Beoordeel en verbeter mijn tekst"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "1 source"
+ "value" : "Review and improve my writing"
}
},
- "el" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 πηγή"
+ "value" : "Revisa y mejora mi redacción",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 källa"
+ "value" : "Relisez et améliorez mon texte",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "1 source"
+ "value" : "Rivedi e migliora il mio testo",
+ "state" : "translated"
}
}
}
},
- "Record Audio" : {
- "comment" : "A label for the record audio button.",
+ "The app's iCloud container is unavailable. Your local data is retained." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Registra audio"
+ "value" : "Το κοντέινερ iCloud της εφαρμογής δεν είναι διαθέσιμο. Τα τοπικά δεδομένα σας διατηρούνται."
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Audio aufnehmen"
+ "value" : "El contenedor de iCloud de la app no está disponible. Tus datos locales se conservan."
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "音声を録音"
+ "value" : "Der iCloud-Container der App ist nicht verfügbar. Deine lokalen Daten bleiben erhalten."
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gravar Áudio"
+ "value" : "De iCloud-container van de app is niet beschikbaar. Je lokale gegevens blijven behouden.",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Grabar audio"
+ "value" : "アプリのiCloudコンテナを利用できません。ローカルデータは保持されています。"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Audio opnemen"
+ "value" : "The app's iCloud container is unavailable. Your local data is retained."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Εγγραφή ήχου"
+ "value" : "O contentor iCloud da aplicação está indisponível. Os seus dados locais foram mantidos."
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enregistrer l’audio"
+ "value" : "Appens iCloud-behållare är inte tillgänglig. Dina lokala data har sparats."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Spela in ljud"
+ "value" : "Il contenitore iCloud dell’app non è disponibile. I tuoi dati locali sono conservati."
}
},
- "en" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Record Audio"
+ "value" : "Le conteneur iCloud de l’app est indisponible. Vos données locales sont conservées."
}
}
}
},
- "Summarize a long text" : {
+ "Are you sure you want to delete this comment?" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Riassumi un testo lungo"
+ "value" : "Weet je zeker dat je deze opmerking wilt verwijderen?"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Einen langen Text zusammenfassen"
+ "value" : "Are you sure you want to delete this comment?"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "長文を要約する"
+ "value" : "Êtes-vous sûr de vouloir supprimer ce commentaire ?"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Resumir um texto longo"
+ "value" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το σχόλιο;"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Resumir un texto largo"
+ "value" : "¿Seguro que quieres eliminar este comentario?"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Vat een lange tekst samen"
+ "value" : "このコメントを削除してもよろしいですか?"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Résumer un long texte"
+ "value" : "Tem a certeza de que pretende eliminar este comentário?"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Περίληψη μεγάλου κειμένου"
+ "value" : "Är du säker på att du vill ta bort den här kommentaren?"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sammanfatta en lång text"
+ "value" : "Sei sicuro di voler eliminare questo commento?"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Summarize a long text"
+ "value" : "Möchten Sie diesen Kommentar wirklich löschen?"
}
}
}
},
- "Always Allow Selected" : {
- "comment" : "A label that describes a selection of \"Always Allow\" for a permission.",
+ "No MCP servers configured. Add them in your LiteLLM server's config.yaml." : {
+ "comment" : "A message that appears when there are no MCP servers configured.",
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Consenti sempre ai selezionati"
+ "value" : "Geen MCP-servers geconfigureerd. Voeg ze toe in de config.yaml van je LiteLLM-server.",
+ "state" : "translated"
}
},
- "de" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ausgewählte immer erlauben"
+ "value" : "Δεν έχουν ρυθμιστεί MCP διακομιστές. Προσθέστε τους στο config.yaml του διακομιστή LiteLLM σας.",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "選択項目を常に許可"
+ "value" : "No MCP servers configured. Add them in your LiteLLM server's config.yaml."
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Permitir sempre os selecionados"
+ "value" : "No hay servidores MCP configurados. Agréguelos en el config.yaml de su servidor LiteLLM."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Permitir siempre lo seleccionado"
+ "value" : "Aucun serveur MCP configuré. Ajoutez-les dans le config.yaml de votre serveur LiteLLM."
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Geselecteerde altijd toestaan"
+ "value" : "MCPサーバーが設定されていません。LiteLLMサーバーのconfig.yamlに追加してください。",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Toujours autoriser la sélectionnée"
+ "value" : "Nenhum servidor MCP configurado. Adicione-os no config.yaml do seu servidor LiteLLM.",
+ "state" : "translated"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Να επιτρέπονται πάντα τα επιλεγμένα"
+ "value" : "Inga MCP-servrar konfigurerade. Lägg till dem i din LiteLLM-servers config.yaml."
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tillåt alltid valda"
+ "value" : "Nessun server MCP configurato. Aggiungili nel file config.yaml del tuo server LiteLLM."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Always Allow Selected"
+ "value" : "Keine MCP-Server konfiguriert. Fügen Sie sie in der config.yaml Ihres LiteLLM-Servers hinzu.",
+ "state" : "translated"
}
}
}
},
- "Could not write file to the shared container" : {
+ "Open **Shortcuts** and create a new shortcut." : {
+ "comment" : "Step 1 of creating a shortcut using the Shortcuts app.",
"localizations" : {
- "it" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossibile scrivere il file nel contenitore condiviso"
+ "value" : "Öffne **Kurzbefehle** und erstelle einen neuen Kurzbefehl."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Datei konnte nicht im gemeinsamen Container gespeichert werden"
+ "value" : "Open **Shortcuts** and create a new shortcut."
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "共有コンテナにファイルを書き込めませんでした"
+ "value" : "Abre **Atajos** y crea un nuevo atajo."
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Não foi possível gravar o ficheiro no contentor partilhado"
+ "value" : "**ショートカット**を開き、新しいショートカットを作成します。",
+ "state" : "translated"
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "No se pudo escribir el archivo en el contenedor compartido"
+ "value" : "Abra as **Atalhos** e crie um novo atalho.",
+ "state" : "translated"
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kon bestand niet naar de gedeelde container schrijven"
+ "value" : "Ouvrez **Raccourcis** et créez un nouveau raccourci.",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Impossible d’écrire le fichier dans le conteneur partagé"
+ "value" : "Apri **Comandi** e crea un nuovo comando."
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Δεν ήταν δυνατή η εγγραφή του αρχείου στον κοινόχρηστο φάκελο"
+ "value" : "Open **Opdrachten** en maak een nieuwe opdracht aan.",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Kunde inte skriva fil till den delade behållaren"
+ "value" : "Öppna **Genvägar** och skapa en ny genväg.",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Could not write file to the shared container"
+ "value" : "Άνοιξε τις **Συντομεύσεις** και δημιούργησε μια νέα συντόμευση.",
+ "state" : "translated"
}
}
}
},
- "More" : {
- "comment" : "A button that opens a menu with options to export and import conversations.",
+ "Mars" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Altro"
+ "value" : "Mars",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mehr"
+ "value" : "Mars"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "もっと見る"
+ "value" : "Mars"
}
},
- "pt-PT" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Mais"
+ "value" : "Mars"
}
},
- "es" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Más"
+ "value" : "Mars"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Meer"
+ "value" : "MARS",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Περισσότερα"
+ "value" : "Mars",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Plus"
+ "value" : "Mars"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mer"
+ "value" : "Mars",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "More"
+ "value" : "Mars"
}
}
- }
+ },
+ "comment" : "A name for the icon of the Mars candy."
},
- "Add images and documents" : {
- "comment" : "A description of how to add images and documents to a conversation.",
+ "Suggested by" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aggiungi immagini e documenti"
+ "value" : "Voorgesteld door"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Bilder und Dokumente hinzufügen"
+ "value" : "Sugerido por",
+ "state" : "translated"
}
},
- "ja" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "画像とドキュメントを追加"
+ "value" : "Προτεινόμενο από",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Adicionar imagens e documentos"
+ "value" : "からの提案",
+ "state" : "translated"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Agregar imágenes y documentos"
+ "value" : "Vorgeschlagen von",
+ "state" : "translated"
}
},
- "nl" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Afbeeldingen en documenten toevoegen"
+ "value" : "Suggerito da"
}
},
- "fr" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ajouter des images et des documents"
+ "value" : "Suggested by"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Προσθήκη εικόνων και εγγράφων"
+ "value" : "Föreslagen av",
+ "state" : "translated"
}
},
- "sv" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Lägg till bilder och dokument"
+ "value" : "Suggéré par"
}
},
- "en" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Add images and documents"
+ "value" : "Sugerido por"
}
}
}
},
- "Translate text to another language" : {
+ "tag.thinking" : {
"localizations" : {
- "it" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Traduci testo in un'altra lingua"
+ "value" : "Thinking",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Text in eine andere Sprache übersetzen"
+ "value" : "Thinking",
+ "state" : "translated"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "テキストを別の言語に翻訳する"
+ "value" : "Thinking",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Traduzir texto para outra língua"
+ "value" : "Thinking",
+ "state" : "translated"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Traducir texto a otro idioma"
+ "value" : "Thinking",
+ "state" : "translated"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Vertaal tekst naar een andere taal"
+ "value" : "Thinking",
+ "state" : "translated"
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Traduire le texte dans une autre langue"
+ "value" : "Thinking",
+ "state" : "translated"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Μεταφράστε το κείμενο σε άλλη γλώσσα"
+ "value" : "Thinking"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Översätt text till ett annat språk"
+ "value" : "Thinking"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Translate text to another language"
+ "value" : "Thinking",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Label for a capability that allows the LLM to think and generate complex responses."
},
- "Sync Now" : {
- "comment" : "A button that triggers a sync of conversations.",
+ "Model Info" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sincronizza ora"
+ "value" : "Modelinformatie"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Jetzt synchronisieren"
+ "value" : "Informazioni sul modello"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "今すぐ同期"
+ "value" : "モデル情報",
+ "state" : "translated"
}
},
"pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Sincronizar Agora"
+ "value" : "Informações do Modelo"
}
},
"es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sincronizar ahora"
+ "value" : "Información del modelo",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Nu synchroniseren"
+ "value" : "Πληροφορίες Μοντέλου",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synchroniser maintenant"
+ "value" : "Modellinformation"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Συγχρονισμός τώρα"
+ "value" : "Infos sur le modèle",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Synkronisera nu"
+ "value" : "Model Info"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sync Now"
+ "value" : "Modellinformationen",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "A title for a screen that shows information about a specific LLM model."
},
- "Tagged Conversations" : {
- "comment" : "Title of the widget configuration intent.",
+ "Right-click a message to edit, regenerate, branch, or save it as a favourite." : {
"localizations" : {
"it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversazioni taggate"
+ "value" : "Fai clic con il tasto destro su un messaggio per modificarlo, rigenerarlo, creare un ramo o salvarlo tra i preferiti."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Markierte Unterhaltungen"
+ "value" : "Right-click a message to edit, regenerate, branch, or save it as a favorite."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "タグ付き会話"
+ "value" : "メッセージを右クリックして編集、再生成、分岐、またはお気に入りに保存します。",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversas Marcadas"
+ "value" : "Haz clic derecho en un mensaje para editarlo, regenerarlo, ramificarlo o guardarlo como favorito."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Conversaciones Etiquetadas"
+ "value" : "Clique com o botão direito numa mensagem para editar, regenerar, ramificar ou guardar como favorito.",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Gemerkt Gesprekken"
+ "value" : "Klicken Sie mit der rechten Maustaste auf eine Nachricht, um sie zu bearbeiten, neu zu generieren, zu verzweigen oder als Favorit zu speichern."
}
},
- "fr" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversations étiquetées"
+ "value" : "Κάντε δεξί κλικ σε ένα μήνυμα για να το επεξεργαστείτε, αναγεννήσετε, διακλαδώσετε ή αποθηκεύσετε ως αγαπημένο."
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Επισημασμένες Συνομιλίες"
+ "value" : "Cliquez droit sur un message pour le modifier, régénérer, créer une branche ou l’enregistrer en favori."
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Taggade konversationer"
+ "value" : "Högerklicka på ett meddelande för att redigera, generera om, skapa en gren eller spara det som favorit.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tagged Conversations"
+ "value" : "Klik met de rechtermuisknop op een bericht om het te bewerken, opnieuw te genereren, vertakken of als favoriet op te slaan.",
+ "state" : "translated"
}
}
}
},
- "█" : {
- "comment" : "A cursor that is visible when the user is typing.",
+ "Pending" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "█"
+ "value" : "Pendente",
+ "state" : "translated"
}
},
"de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "█"
+ "value" : "Ausstehend"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "█"
+ "value" : "En attente",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "█"
+ "value" : "Pendiente"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "█"
+ "value" : "Εκκρεμεί"
}
},
"nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "█"
+ "value" : "In behandeling"
}
},
- "el" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "█"
+ "value" : "Pending",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "█"
+ "value" : "保留中"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "█"
+ "value" : "Väntar"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "█"
+ "value" : "In sospeso",
+ "state" : "translated"
}
}
}
},
- "Find a conversation" : {
- "comment" : "Text displayed in a shortcut item for searching conversations.",
+ "You'll need eggs, guanciale, Pecorino Romano..." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Trova una conversazione"
+ "value" : "Θα χρειαστείς αυγά, γκουαντσιάλε, Πεκορίνο Ρομάνο...",
+ "state" : "translated"
}
},
- "de" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Konversation finden"
+ "value" : "Du behöver ägg, guanciale, Pecorino Romano...",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "会話を検索"
+ "value" : "卵、グアンチャーレ、ペコリーノ・ロマーノが必要です...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Encontrar uma conversa"
+ "value" : "Je hebt eieren, guanciale, Pecorino Romano nodig...",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Buscar una conversación"
+ "value" : "Necesitarás huevos, guanciale, Pecorino Romano..."
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Zoek een gesprek"
+ "value" : "Du brauchst Eier, Guanciale, Pecorino Romano...",
+ "state" : "translated"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Βρες μια συνομιλία"
+ "value" : "Vous aurez besoin d'œufs, de guanciale, de Pecorino Romano...",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Trouver une conversation"
+ "value" : "Vai precisar de ovos, guanciale, Pecorino Romano...",
+ "state" : "translated"
}
},
- "sv" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Hitta en konversation"
+ "value" : "Ti serviranno uova, guanciale, Pecorino Romano...",
+ "state" : "translated"
}
},
"en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Find a conversation"
+ "value" : "You'll need eggs, guanciale, Pecorino Romano...",
+ "state" : "translated"
}
}
- }
+ },
+ "comment" : "Last message preview text in a conversation widget."
},
- "The backup contains an invalid attachment reference." : {
+ "Your name (optional)" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il backup contiene un riferimento a un allegato non valido."
+ "value" : "Votre nom (optionnel)"
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Die Sicherung enthält eine ungültige Anlagenreferenz."
+ "value" : "Je naam (optioneel)"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "バックアップに無効な添付ファイル参照が含まれています。"
+ "value" : "Your name (optional)"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A cópia de segurança contém uma referência de anexo inválida."
+ "value" : "Il tuo nome (opzionale)",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La copia de seguridad contiene una referencia de archivo adjunto no válida."
+ "value" : "Tu nombre (opcional)"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "De back-up bevat een ongeldige bijlageverwijzing."
+ "value" : "Το όνομά σας (προαιρετικό)"
}
},
- "fr" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La sauvegarde contient une référence de pièce jointe invalide."
+ "value" : "Ihr Name (optional)"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η δημιουργία αντιγράφου περιέχει μη έγκυρη αναφορά συνημμένου."
+ "value" : "あなたの名前(任意)"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Säkerhetskopian innehåller en ogiltig bilagereferens."
+ "value" : "O seu nome (opcional)"
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "The backup contains an invalid attachment reference."
+ "value" : "Ditt namn (valfritt)",
+ "state" : "translated"
}
}
}
},
- "Enable All Tools" : {
- "comment" : "A toggle that enables or disables all tools.",
+ "Saving a memory..." : {
+ "comment" : "A message displayed when saving a memory.",
"localizations" : {
"it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Abilita tutti gli strumenti"
+ "value" : "Salvataggio di un ricordo...",
+ "state" : "translated"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alle Werkzeuge aktivieren"
+ "value" : "Guardando un recuerdo..."
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "すべてのツールを有効にする"
+ "value" : "Saving a memory..."
}
},
- "pt-PT" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ativar Todas as Ferramentas"
+ "value" : "Speichere eine Erinnerung …"
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Activar todas las herramientas"
+ "value" : "Enregistrement d’un souvenir…"
}
},
- "nl" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Alle tools inschakelen"
+ "value" : "メモリーを保存中…"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ενεργοποίηση όλων των εργαλείων"
+ "value" : "Geheugen opslaan…"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Activer tous les outils"
+ "value" : "A guardar uma memória..."
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aktivera alla verktyg"
+ "value" : "Αποθήκευση μνήμης..."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Enable All Tools"
+ "value" : "Sparar ett minne..."
}
}
}
},
- "Not Now" : {
- "comment" : "A button that dismisses an alert.",
+ "Send" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Non ora"
+ "value" : "Envoyer",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Nicht jetzt"
+ "value" : "Invia"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "今はしない"
+ "value" : "Send"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Agora não"
+ "value" : "Verzenden"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ahora no"
+ "value" : "Senden"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Niet nu"
+ "value" : "Enviar"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Όχι τώρα"
+ "value" : "Skicka"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Pas maintenant"
+ "value" : "送信"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Inte nu"
+ "value" : "Enviar",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Not Now"
+ "value" : "Αποστολή"
}
}
}
},
- "Done" : {
+ "Embedding" : {
+ "comment" : "A label for an LLM model.",
+ "shouldTranslate" : false
+ },
+ "Opens OpenClient with the conversation search field active." : {
"localizations" : {
- "it" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Fatto"
+ "value" : "Abre OpenClient con el campo de búsqueda de conversación activo."
}
},
"de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Fertig"
+ "value" : "Öffnet OpenClient mit aktivem Suchfeld für Konversationen.",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "完了"
+ "value" : "OpenClientを会話検索フィールドがアクティブな状態で開く。",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Concluído"
+ "value" : "Apre OpenClient con il campo di ricerca conversazioni attivo."
}
},
- "es" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Hecho"
+ "value" : "Ouvre OpenClient avec le champ de recherche de conversation actif."
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Gereed"
+ "value" : "Opens OpenClient with the conversation search field active.",
+ "state" : "translated"
}
},
- "fr" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Terminé"
+ "value" : "Abre o OpenClient com o campo de pesquisa da conversa ativo."
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "ΤΕΛΕΙΩΣΕ"
+ "value" : "Öppnar OpenClient med sökfältet för konversation aktivt.",
+ "state" : "translated"
}
},
- "sv" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Klart"
+ "value" : "Ανοίγει το OpenClient με ενεργό το πεδίο αναζήτησης συνομιλίας.",
+ "state" : "translated"
}
},
- "en" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Done"
+ "value" : "Opent OpenClient met het zoekveld voor gesprekken actief."
}
}
}
},
- "Waiting for iCloud downloads for: %@." : {
+ "Special" : {
+ "comment" : "Category for icons with special visual effects.",
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "In attesa dei download di iCloud per: %@."
+ "value" : "Spécial"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Warten auf iCloud-Downloads für: %@."
+ "value" : "Speciale",
+ "state" : "translated"
}
},
"ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%@ の iCloud ダウンロードを待機中。"
+ "value" : "特殊"
}
},
"pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A aguardar pelas transferências do iCloud para: %@."
+ "value" : "Especial",
+ "state" : "translated"
}
},
"es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Esperando las descargas de iCloud para: %@."
+ "value" : "Especial"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Wachten op iCloud-downloads voor: %@."
+ "value" : "Ειδικά",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "En attente des téléchargements iCloud pour : %@."
+ "value" : "Special"
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Αναμονή για λήψεις από το iCloud για: %@."
+ "value" : "Speciaal",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Väntar på iCloud-nedladdningar för: %@."
+ "value" : "Special",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Waiting for iCloud downloads for: %@."
+ "value" : "Spezial",
+ "state" : "translated"
}
}
}
},
- "Very creative" : {
+ "Insufficient storage" : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Molto creativo"
+ "value" : "Espace de stockage insuffisant",
+ "state" : "translated"
}
},
- "de" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Sehr kreativ"
+ "value" : "Spazio di archiviazione insufficiente",
+ "state" : "translated"
}
},
- "ja" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "とても創造的"
+ "value" : "Insufficient storage"
}
},
- "pt-PT" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Muito criativo"
+ "value" : "Onvoldoende opslagruimte"
}
},
- "es" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Muy creativo"
+ "value" : "Nicht genügend Speicherplatz"
}
},
- "nl" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Zeer creatief"
+ "value" : "Almacenamiento insuficiente"
}
},
- "el" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Πολύ δημιουργικό"
+ "value" : "Otillräckligt lagringsutrymme"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Très créatif"
+ "value" : "ストレージ容量が不足しています",
+ "state" : "translated"
}
},
- "sv" : {
+ "pt-PT" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Mycket kreativ"
+ "value" : "Armazenamento insuficiente",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Very creative"
+ "value" : "Ανεπαρκής χώρος αποθήκευσης",
+ "state" : "translated"
}
}
}
},
- "Testing..." : {
+ "Your support means a lot and helps keep the app free and open source." : {
"localizations" : {
- "it" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Test in corso..."
+ "value" : "Votre soutien est précieux et permet de garder l’application gratuite et open source."
}
},
- "de" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Testen..."
+ "value" : "Je steun betekent veel en helpt de app gratis en open source te houden.",
+ "state" : "translated"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "テスト中..."
+ "value" : "Il tuo supporto è molto importante e aiuta a mantenere l’app gratuita e open source.",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "A testar..."
+ "value" : "Tu apoyo significa mucho y ayuda a mantener la aplicación gratuita y de código abierto.",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Probando..."
+ "value" : "Η υποστήριξή σας σημαίνει πολλά και βοηθά να παραμείνει η εφαρμογή δωρεάν και ανοιχτού κώδικα.",
+ "state" : "translated"
}
},
- "nl" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Testen..."
+ "value" : "Your support means a lot and helps keep the app free and open source."
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Δοκιμή..."
+ "value" : "O seu apoio é muito importante e ajuda a manter a aplicação gratuita e de código aberto."
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Test en cours..."
+ "value" : "ご支援いただくことで、アプリを無料かつオープンソースのまま維持できます。"
}
},
- "sv" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Testar..."
+ "value" : "Deine Unterstützung bedeutet viel und hilft, die App kostenlos und Open Source zu halten."
}
},
- "en" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Testing..."
+ "value" : "Ditt stöd betyder mycket och hjälper till att hålla appen gratis och öppen källkod."
}
}
- }
- },
- "" : {
- "shouldTranslate" : false
+ },
+ "comment" : "A message displayed in a thank you alert."
},
- "%@%@" : {
- "comment" : "A view that displays a message with a cursor that blinks.",
+ "Describe the issue in detail..." : {
"localizations" : {
- "it" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@%2$@"
+ "value" : "Περιγράψτε το πρόβλημα με λεπτομέρεια..."
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@%2$@"
+ "value" : "Describe the issue in detail..."
}
},
"ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$@%2$@"
+ "value" : "問題を詳しく説明してください...",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@%2$@"
+ "value" : "Describe el problema en detalle..."
}
},
- "es" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@%2$@"
+ "value" : "Descreva o problema em detalhe..."
}
},
- "nl" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@%2$@"
+ "value" : "Décrivez le problème en détail..."
}
},
- "fr" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@%2$@"
+ "value" : "Descrivi il problema in dettaglio..."
}
},
- "el" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "%1$@%2$@"
+ "value" : "Beschrijf het probleem in detail...",
+ "state" : "translated"
}
},
"sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "%1$@%2$@"
+ "value" : "Beskriv problemet i detalj..."
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "new",
- "value" : "%1$@%2$@"
+ "state" : "translated",
+ "value" : "Beschreiben Sie das Problem ausführlich..."
}
}
}
},
- "Add tag..." : {
- "comment" : "A placeholder for a text field that adds a tag to a conversation.",
+ "Load Available Tools" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Aggiungi tag..."
+ "value" : "Carregar Ferramentas Disponíveis"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tag hinzufügen..."
+ "value" : "Charger les outils disponibles"
}
},
- "ja" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "タグを追加..."
+ "value" : "Cargar herramientas disponibles"
}
},
- "pt-PT" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Adicionar etiqueta..."
+ "value" : "Load Available Tools"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Agregar etiqueta..."
+ "value" : "Φόρτωση Διαθέσιμων Εργαλείων"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tag toevoegen..."
+ "value" : "Verfügbare Werkzeuge laden"
}
},
- "el" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Προσθήκη ετικέτας..."
+ "value" : "利用可能なツールを読み込む"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Ajouter un tag..."
+ "value" : "Beschikbare tools laden"
}
},
"sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Lägg till tagg..."
+ "value" : "Ladda tillgängliga verktyg",
+ "state" : "translated"
}
},
- "en" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Add tag..."
+ "value" : "Carica strumenti disponibili"
}
}
- }
+ },
+ "comment" : "A button that fetches the list of search tools configured in the user's LiteLLM server."
},
- "Support type" : {
- "comment" : "A label that describes the type of support being selected.",
+ "Manage iCloud Data" : {
"localizations" : {
- "it" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Tipo di supporto"
+ "value" : "iCloud-gegevens beheren"
}
},
- "de" : {
+ "en" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Supporttyp"
+ "value" : "Manage iCloud Data"
}
},
- "ja" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "サポートの種類"
+ "value" : "Gestisci i dati di iCloud",
+ "state" : "translated"
}
},
- "pt-PT" : {
+ "sv" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tipo de suporte"
+ "value" : "Hantera iCloud-data",
+ "state" : "translated"
}
},
- "es" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Tipo de soporte"
+ "value" : "Διαχείριση δεδομένων iCloud",
+ "state" : "translated"
}
},
- "nl" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Type ondersteuning"
+ "value" : "Gerir dados do iCloud"
}
},
- "el" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Τύπος υποστήριξης"
+ "value" : "Gérer les données iCloud",
+ "state" : "translated"
}
},
- "fr" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Type d’assistance"
+ "value" : "iCloudデータを管理"
}
},
- "sv" : {
+ "es" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Typ av support"
+ "value" : "Gestionar los datos de iCloud",
+ "state" : "translated"
}
},
- "en" : {
+ "de" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Support type"
+ "value" : "iCloud-Daten verwalten",
+ "state" : "translated"
}
}
}
},
- "Speech recognition is not available on this device." : {
- "comment" : "Error message when the speech recognition is not available on the device.",
+ "Issue" : {
"localizations" : {
- "it" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Il riconoscimento vocale non è disponibile su questo dispositivo."
+ "value" : "Problem"
}
},
- "de" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Spracherkennung ist auf diesem Gerät nicht verfügbar."
+ "value" : "Problema"
}
},
- "ja" : {
+ "fr" : {
"stringUnit" : {
"state" : "translated",
- "value" : "このデバイスでは音声認識が利用できません。"
+ "value" : "Problème"
}
},
- "pt-PT" : {
+ "it" : {
"stringUnit" : {
"state" : "translated",
- "value" : "O reconhecimento de voz não está disponível neste dispositivo."
+ "value" : "Problema"
}
},
- "es" : {
+ "ja" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "El reconocimiento de voz no está disponible en este dispositivo."
+ "value" : "問題",
+ "state" : "translated"
}
},
- "nl" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Spraakherkenning is niet beschikbaar op dit apparaat."
+ "value" : "Problem"
}
},
- "el" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Η αναγνώριση ομιλίας δεν είναι διαθέσιμη σε αυτή τη συσκευή."
+ "value" : "Problema"
}
},
- "fr" : {
+ "nl" : {
"stringUnit" : {
"state" : "translated",
- "value" : "La reconnaissance vocale n’est pas disponible sur cet appareil."
+ "value" : "Probleem"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Taligenkänning är inte tillgänglig på den här enheten."
+ "value" : "Issue",
+ "state" : "translated"
}
},
- "en" : {
+ "el" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Speech recognition is not available on this device."
+ "value" : "Πρόβλημα"
}
}
}
},
- "Private Chat" : {
- "comment" : "A label displayed in the empty state view.",
+ "Recent" : {
"localizations" : {
- "it" : {
+ "pt-PT" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Chat privata"
+ "value" : "Recentes"
}
},
- "de" : {
+ "fr" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Privater Chat"
+ "value" : "Récent",
+ "state" : "translated"
}
},
- "ja" : {
+ "de" : {
"stringUnit" : {
"state" : "translated",
- "value" : "プライベートチャット"
+ "value" : "Neueste"
}
},
- "pt-PT" : {
+ "ja" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Conversa Privada"
+ "value" : "最近の会話"
}
},
- "es" : {
+ "nl" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Chat privado"
+ "value" : "Recentelijk",
+ "state" : "translated"
}
},
- "nl" : {
+ "el" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Privéchat"
+ "value" : "Πρόσφατα",
+ "state" : "translated"
}
},
- "fr" : {
+ "sv" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Discussion privée"
+ "value" : "Senaste"
}
},
- "el" : {
+ "it" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Ιδιωτική Συνομιλία"
+ "value" : "Recenti",
+ "state" : "translated"
}
},
- "sv" : {
+ "en" : {
"stringUnit" : {
- "state" : "translated",
- "value" : "Privatchatt"
+ "value" : "Recent",
+ "state" : "translated"
}
},
- "en" : {
+ "es" : {
"stringUnit" : {
"state" : "translated",
- "value" : "Private Chat"
+ "value" : "Recientes"
}
}
- }
+ },
+ "comment" : "A heading for the recent conversations section."
}
},
+ "sourceLanguage" : "en",
"version" : "1.2"
}
\ No newline at end of file
diff --git a/specs/version.instructions.md b/specs/version.instructions.md
index 87f2444d..b38c836b 100644
--- a/specs/version.instructions.md
+++ b/specs/version.instructions.md
@@ -116,7 +116,7 @@ When the user chooses a new banner, ask for any information not already supplied
- Which locales to include or whether to adapt the copy for every locale already present in the file.
Generate a new `dismiss_banner_key` from the release version and a concise stable slug unless the user supplies one, for
-example `release-1.6.30-chat-streaming`. A new key makes the banner visible again to users who dismissed an older banner;
+example `release-1.6.35-chat-streaming`. A new key makes the banner visible again to users who dismissed an older banner;
never change it merely to re-show unchanged content.
### Valid banner actions