diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 023f50d14..a93d4c70a 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -82,7 +82,7 @@ jobs: - run: ./flutter/bin/flutter build linux --target-platform linux-${{ matrix.arch }} build_debug_ios: - runs-on: macos-latest + runs-on: macos-15 steps: - uses: actions/checkout@v5 - run: cat .github/workflows/versions.env >> $GITHUB_ENV @@ -90,10 +90,8 @@ jobs: with: flutter-version: ${{ env.FLUTTER_VERSION }} cache: true - - name: Setup Xcode version - uses: maxim-lobanov/setup-xcode@v1.6.0 - with: - xcode-version: latest + - name: Use Xcode 16.4 + run: sudo xcode-select --switch /Applications/Xcode_16.4.app - run: brew install sqlcipher - uses: moonrepo/setup-rust@v1 - name: Add Firebase Messaging diff --git a/CHANGELOG.md b/CHANGELOG.md index 83067c377..32948157a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## v2.1.1 +Bugfix release to trigger flatpak arm64 release again. + +- build: (deps): bump actions/checkout from 4 to 5 (dependabot[bot]) +- build: (deps): bump app_links from 6.4.0 to 6.4.1 (dependabot[bot]) +- build: (deps): bump file_picker from 10.2.3 to 10.3.1 (dependabot[bot]) +- build: (deps): bump msix from 3.16.10 to 3.16.12 (dependabot[bot]) +- build: (deps): bump package_info_plus from 8.3.0 to 8.3.1 (dependabot[bot]) +- build: (deps): bump share_plus from 11.0.0 to 11.1.0 (dependabot[bot]) +- build: Also build linux on github runners (Christian Kußowski) +- build: Update macos podfile (Christian Kußowski) +- chore: Follow up subtitle font style (Christian Kußowski) +- chore: Slightly adjust font sizes and design (Christian Kußowski) +- chore(translations): Translated using Weblate (Chinese (Traditional Han script)) (miullu) +- chore(translations): Translated using Weblate (Norwegian Bokmål) (Frank Paul Silye) +- chore(translations): Translated using Weblate (Polish) (Piotr Orzechowski) +- feat: support xdp selector for linux (ShootingStarDragons) +- fix: Follow up fix rectangle avatars (Christian Kußowski) +- refactor: Remove broken push error reporter (Christian Kußowski) + ## v2.1.0 FluffyChat 2.1.0 brings support for room version 12 and a lot of bugfixes, updated translations and performance improvements. Also chat state events are now collapsed by default. diff --git a/android/fastlane/metadata/android/en-US/changelogs/default.txt b/android/fastlane/metadata/android/en-US/changelogs/default.txt index 0b2d50a81..3a532842a 100644 --- a/android/fastlane/metadata/android/en-US/changelogs/default.txt +++ b/android/fastlane/metadata/android/en-US/changelogs/default.txt @@ -1 +1 @@ -FluffyChat 2.1.0 brings support for room version 12 and a lot of bugfixes, updated translations and performance improvements. Also chat state events are now collapsed by default. \ No newline at end of file +Fixes broken error reporter for push notifications and wrong clipped avatars. Also updates dependencies and translations. \ No newline at end of file diff --git a/ios/Localizable.xcstrings b/ios/Localizable.xcstrings new file mode 100644 index 000000000..7895903ad --- /dev/null +++ b/ios/Localizable.xcstrings @@ -0,0 +1,58 @@ +{ + "sourceLanguage" : "en", + "strings" : { + "%lld unread messages" : { + "comment" : "Default notification title", + "localizations" : { + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungelesene Nachricht" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ungelesene nachrichten" + } + } + } + } + }, + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unread message" + } + }, + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%lld unread messages" + } + } + } + } + } + } + }, + "New message - open app to read" : { + "comment" : "Default notification body", + "localizations" : { + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neue Nachricht - App öffnen zum lesen" + } + } + } + } + }, + "version" : "1.0" +} \ No newline at end of file diff --git a/ios/Notification Service Extension/Info.plist b/ios/Notification Service Extension/Info.plist new file mode 100644 index 000000000..57421ebf9 --- /dev/null +++ b/ios/Notification Service Extension/Info.plist @@ -0,0 +1,13 @@ + + + + + NSExtension + + NSExtensionPointIdentifier + com.apple.usernotifications.service + NSExtensionPrincipalClass + $(PRODUCT_MODULE_NAME).NotificationService + + + diff --git a/ios/Notification Service Extension/Notification Service Extension.entitlements b/ios/Notification Service Extension/Notification Service Extension.entitlements new file mode 100644 index 000000000..932f3e01e --- /dev/null +++ b/ios/Notification Service Extension/Notification Service Extension.entitlements @@ -0,0 +1,10 @@ + + + + + com.apple.security.application-groups + + group.im.fluffychat.app + + + diff --git a/ios/Notification Service Extension/NotificationService.swift b/ios/Notification Service Extension/NotificationService.swift new file mode 100644 index 000000000..9d464e127 --- /dev/null +++ b/ios/Notification Service Extension/NotificationService.swift @@ -0,0 +1,63 @@ +// +// NotificationService.swift +// Notification Extension +// +// Created by Christian Pauly on 26.08.25. +// + +import UserNotifications +import os + +class NotificationService: UNNotificationServiceExtension { + + var contentHandler: ((UNNotificationContent) -> Void)? + var bestAttemptContent: UNMutableNotificationContent? + + override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) { + self.contentHandler = contentHandler + bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent) + + if let bestAttemptContent = bestAttemptContent { + // Uncomment to read the push message payload: + // os_log("[FluffyChatPushHelper] New message received: %{public}@", log: .default, type: .error, bestAttemptContent.userInfo) + os_log("[FluffyChatPushHelper] New message received") + + guard let roomId = bestAttemptContent.userInfo["room_id"] as? String, + let eventId = bestAttemptContent.userInfo["event_id"] as? String else { + os_log("[FluffyChatPushHelper] Room ID or Event ID is missing!") + let emptyContent = UNMutableNotificationContent() + contentHandler(emptyContent) + return + } + bestAttemptContent.threadIdentifier = roomId + + if + let jsonString = bestAttemptContent.userInfo["counts"] as? String, + let jsonData = jsonString.data(using: .utf8), + let jsonMap = try? JSONSerialization.jsonObject(with: jsonData, options: []) as? [String: Any], + let unread = jsonMap["unread"] as? Int { + bestAttemptContent.title = String( + localized: "\(unread) unread messages", + comment: "Default notification title" + ) + bestAttemptContent.badge = NSNumber(integerLiteral: unread) + } + + // TODO: Download and decrypt event to display a better body: + bestAttemptContent.body = String( + localized: "New message - open app to read", + comment: "Default notification body" + ) + + contentHandler(bestAttemptContent) + } + } + + override func serviceExtensionTimeWillExpire() { + // Called just before the extension will be terminated by the system. + // Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used. + if let contentHandler = contentHandler, let bestAttemptContent = bestAttemptContent { + contentHandler(bestAttemptContent) + } + } +} diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index a5b6eca36..ffc039c5e 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 54; + objectVersion = 77; objects = { /* Begin PBXBuildFile section */ @@ -19,6 +19,10 @@ C1005C48261071B5002F4F32 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C1005C46261071B5002F4F32 /* MainInterface.storyboard */; }; C1005C4C261071B5002F4F32 /* FluffyChat Share.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = C1005C42261071B5002F4F32 /* FluffyChat Share.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; C137635E2AD1446100A8F905 /* notification.caf in Resources */ = {isa = PBXBuildFile; fileRef = C137635D2AD1446100A8F905 /* notification.caf */; }; + C14695592E642D400075F2F7 /* Notification Service Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = C14695522E642D400075F2F7 /* Notification Service Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; + C14695662E642E450075F2F7 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = C14695652E642E450075F2F7 /* Localizable.xcstrings */; }; + C14695672E642E450075F2F7 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = C14695652E642E450075F2F7 /* Localizable.xcstrings */; }; + C14695682E642E450075F2F7 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = C14695652E642E450075F2F7 /* Localizable.xcstrings */; }; C149567C25C7274F00A16396 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = C149567B25C7274F00A16396 /* GoogleService-Info.plist */; }; /* End PBXBuildFile section */ @@ -30,6 +34,13 @@ remoteGlobalIDString = C1005C41261071B5002F4F32; remoteInfo = "FluffyChat Share"; }; + C14695572E642D400075F2F7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = C14695512E642D400075F2F7; + remoteInfo = "Notification Service Extension"; + }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -50,6 +61,7 @@ dstSubfolderSpec = 13; files = ( C1005C4C261071B5002F4F32 /* FluffyChat Share.appex in Embed App Extensions */, + C14695592E642D400075F2F7 /* Notification Service Extension.appex in Embed App Extensions */, ); name = "Embed App Extensions"; runOnlyForDeploymentPostprocessing = 0; @@ -81,6 +93,8 @@ C1005C49261071B5002F4F32 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; C1005C53261072D4002F4F32 /* FluffyChat Share.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "FluffyChat Share.entitlements"; sourceTree = ""; }; C137635D2AD1446100A8F905 /* notification.caf */ = {isa = PBXFileReference; lastKnownFileType = file; path = notification.caf; sourceTree = ""; }; + C14695522E642D400075F2F7 /* Notification Service Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Notification Service Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; }; + C14695652E642E450075F2F7 /* Localizable.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = Localizable.xcstrings; sourceTree = ""; }; C149567B25C7274F00A16396 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; C149567D25C7276200A16396 /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = ""; }; C9EB6E6475A19949A37A2634 /* Pods_FluffyChat_Share.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FluffyChat_Share.framework; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -88,6 +102,27 @@ F3778959E67CDA0CDB0D97BC /* Pods-FluffyChat Share.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-FluffyChat Share.release.xcconfig"; path = "Target Support Files/Pods-FluffyChat Share/Pods-FluffyChat Share.release.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ +/* Begin PBXFileSystemSynchronizedBuildFileExceptionSet section */ + C146955D2E642D400075F2F7 /* Exceptions for "Notification Service Extension" folder in "Notification Service Extension" target */ = { + isa = PBXFileSystemSynchronizedBuildFileExceptionSet; + membershipExceptions = ( + Info.plist, + ); + target = C14695512E642D400075F2F7 /* Notification Service Extension */; + }; +/* End PBXFileSystemSynchronizedBuildFileExceptionSet section */ + +/* Begin PBXFileSystemSynchronizedRootGroup section */ + C14695532E642D400075F2F7 /* Notification Service Extension */ = { + isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + C146955D2E642D400075F2F7 /* Exceptions for "Notification Service Extension" folder in "Notification Service Extension" target */, + ); + path = "Notification Service Extension"; + sourceTree = ""; + }; +/* End PBXFileSystemSynchronizedRootGroup section */ + /* Begin PBXFrameworksBuildPhase section */ 97C146EB1CF9000F007C117D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; @@ -105,6 +140,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C146954F2E642D400075F2F7 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ @@ -131,9 +173,11 @@ 97C146E51CF9000F007C117D = { isa = PBXGroup; children = ( + C14695652E642E450075F2F7 /* Localizable.xcstrings */, 9740EEB11CF90186004384FC /* Flutter */, 97C146F01CF9000F007C117D /* Runner */, C1005C43261071B5002F4F32 /* FluffyChat Share */, + C14695532E642D400075F2F7 /* Notification Service Extension */, 97C146EF1CF9000F007C117D /* Products */, E89DCAC000D371640E94E65B /* Pods */, 075EE1BE25359E34308E0B78 /* Frameworks */, @@ -145,6 +189,7 @@ children = ( 97C146EE1CF9000F007C117D /* Runner.app */, C1005C42261071B5002F4F32 /* FluffyChat Share.appex */, + C14695522E642D400075F2F7 /* Notification Service Extension.appex */, ); name = Products; sourceTree = ""; @@ -213,6 +258,7 @@ ); dependencies = ( C1005C4B261071B5002F4F32 /* PBXTargetDependency */, + C14695582E642D400075F2F7 /* PBXTargetDependency */, ); name = Runner; productName = Runner; @@ -237,13 +283,33 @@ productReference = C1005C42261071B5002F4F32 /* FluffyChat Share.appex */; productType = "com.apple.product-type.app-extension"; }; + C14695512E642D400075F2F7 /* Notification Service Extension */ = { + isa = PBXNativeTarget; + buildConfigurationList = C146955E2E642D400075F2F7 /* Build configuration list for PBXNativeTarget "Notification Service Extension" */; + buildPhases = ( + C146954E2E642D400075F2F7 /* Sources */, + C146954F2E642D400075F2F7 /* Frameworks */, + C14695502E642D400075F2F7 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + fileSystemSynchronizedGroups = ( + C14695532E642D400075F2F7 /* Notification Service Extension */, + ); + name = "Notification Service Extension"; + productName = "Notification Service Extension"; + productReference = C14695522E642D400075F2F7 /* Notification Service Extension.appex */; + productType = "com.apple.product-type.app-extension"; + }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ 97C146E61CF9000F007C117D /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 1240; + LastSwiftUpdateCheck = 1640; LastUpgradeCheck = 1510; ORGANIZATIONNAME = ""; TargetAttributes = { @@ -254,23 +320,28 @@ C1005C41261071B5002F4F32 = { CreatedOnToolsVersion = 12.4; }; + C14695512E642D400075F2F7 = { + CreatedOnToolsVersion = 16.4; + }; }; }; buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; - compatibilityVersion = "Xcode 9.3"; developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( en, Base, + de, ); mainGroup = 97C146E51CF9000F007C117D; + preferredProjectObjectVersion = 77; productRefGroup = 97C146EF1CF9000F007C117D /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 97C146ED1CF9000F007C117D /* Runner */, C1005C41261071B5002F4F32 /* FluffyChat Share */, + C14695512E642D400075F2F7 /* Notification Service Extension */, ); }; /* End PBXProject section */ @@ -285,6 +356,7 @@ C149567C25C7274F00A16396 /* GoogleService-Info.plist in Resources */, C137635E2AD1446100A8F905 /* notification.caf in Resources */, 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + C14695672E642E450075F2F7 /* Localizable.xcstrings in Resources */, 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -293,10 +365,19 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + C14695682E642E450075F2F7 /* Localizable.xcstrings in Resources */, C1005C48261071B5002F4F32 /* MainInterface.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; + C14695502E642D400075F2F7 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C14695662E642E450075F2F7 /* Localizable.xcstrings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ @@ -308,10 +389,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Copy Pods Resources"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n"; @@ -400,10 +485,14 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); + inputPaths = ( + ); name = "[CP] Embed Pods Frameworks"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", ); + outputPaths = ( + ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; @@ -429,6 +518,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C146954E2E642D400075F2F7 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ @@ -437,6 +533,11 @@ target = C1005C41261071B5002F4F32 /* FluffyChat Share */; targetProxy = C1005C4A261071B5002F4F32 /* PBXContainerItemProxy */; }; + C14695582E642D400075F2F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = C14695512E642D400075F2F7 /* Notification Service Extension */; + targetProxy = C14695572E642D400075F2F7 /* PBXContainerItemProxy */; + }; /* End PBXTargetDependency section */ /* Begin PBXVariantGroup section */ @@ -512,6 +613,7 @@ MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SUPPORTED_PLATFORMS = iphoneos; + SWIFT_EMIT_LOC_STRINGS = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; @@ -604,6 +706,7 @@ MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; + SWIFT_EMIT_LOC_STRINGS = YES; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; @@ -654,6 +757,7 @@ SDKROOT = iphoneos; SUPPORTED_PLATFORMS = iphoneos; SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_OPTIMIZATION_LEVEL = "-O"; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -832,6 +936,126 @@ }; name = Profile; }; + C146955A2E642D400075F2F7 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_ENTITLEMENTS = "Notification Service Extension/Notification Service Extension.entitlements"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 4NXF6Z997G; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = "Notification Service Extension/Info.plist"; + INFOPLIST_KEY_CFBundleDisplayName = "Notification Service Extension"; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@executable_path/../../Frameworks", + ); + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MARKETING_VERSION = 1.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "im.fluffychat.app.Notification-Service-Extension"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + C146955B2E642D400075F2F7 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_ENTITLEMENTS = "Notification Service Extension/Notification Service Extension.entitlements"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 4NXF6Z997G; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = "Notification Service Extension/Info.plist"; + INFOPLIST_KEY_CFBundleDisplayName = "Notification Service Extension"; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@executable_path/../../Frameworks", + ); + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MARKETING_VERSION = 1.0; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "im.fluffychat.app.Notification-Service-Extension"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + C146955C2E642D400075F2F7 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_ENTITLEMENTS = "Notification Service Extension/Notification Service Extension.entitlements"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 4NXF6Z997G; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = "Notification Service Extension/Info.plist"; + INFOPLIST_KEY_CFBundleDisplayName = "Notification Service Extension"; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@executable_path/../../Frameworks", + ); + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MARKETING_VERSION = 1.0; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "im.fluffychat.app.Notification-Service-Extension"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Profile; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -865,6 +1089,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + C146955E2E642D400075F2F7 /* Build configuration list for PBXNativeTarget "Notification Service Extension" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + C146955A2E642D400075F2F7 /* Debug */, + C146955B2E642D400075F2F7 /* Release */, + C146955C2E642D400075F2F7 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; /* End XCConfigurationList section */ }; rootObject = 97C146E61CF9000F007C117D /* Project object */; diff --git a/lib/config/themes.dart b/lib/config/themes.dart index e66fc5e05..6b20af645 100644 --- a/lib/config/themes.dart +++ b/lib/config/themes.dart @@ -102,9 +102,6 @@ abstract class FluffyThemes { systemNavigationBarColor: colorScheme.surface, ), ), - listTileTheme: ListTileThemeData( - subtitleTextStyle: TextStyle(color: colorScheme.outline, fontSize: 14), - ), outlinedButtonTheme: OutlinedButtonThemeData( style: OutlinedButton.styleFrom( side: BorderSide( diff --git a/lib/l10n/intl_nb.arb b/lib/l10n/intl_nb.arb index 13cd82593..1645c6596 100644 --- a/lib/l10n/intl_nb.arb +++ b/lib/l10n/intl_nb.arb @@ -1,2404 +1,2482 @@ { - "@@last_modified": "2021-08-14 12:41:09.967351", - "about": "Om", - "@about": { - "type": "String", - "placeholders": {} - }, - "accept": "Godta", - "@accept": { - "type": "String", - "placeholders": {} - }, - "acceptedTheInvitation": "👍{username} godtok invitasjonen", - "@acceptedTheInvitation": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "account": "Konto", - "@account": { - "type": "String", - "placeholders": {} - }, - "activatedEndToEndEncryption": "{username} skrudde på ende-til-ende -kryptering", - "@activatedEndToEndEncryption": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "admin": "Administrator", - "@admin": { - "type": "String", - "placeholders": {} - }, - "alias": "alias", - "@alias": { - "type": "String", - "placeholders": {} - }, - "all": "Alle", - "@all": { - "type": "String", - "placeholders": {} - }, - "answeredTheCall": "{senderName} besvarte anropet", - "@answeredTheCall": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "anyoneCanJoin": "Hvem som helst kan delta", - "@anyoneCanJoin": { - "type": "String", - "placeholders": {} - }, - "appLock": "Programlås", - "@appLock": { - "type": "String", - "placeholders": {} - }, - "archive": "Arkiv", - "@archive": { - "type": "String", - "placeholders": {} - }, - "areGuestsAllowedToJoin": "Skal gjester tillates å ta del", - "@areGuestsAllowedToJoin": { - "type": "String", - "placeholders": {} - }, - "areYouSure": "Er du sikker?", - "@areYouSure": { - "type": "String", - "placeholders": {} - }, - "areYouSureYouWantToLogout": "Er du sikker på at du vil logge ut?", - "@areYouSureYouWantToLogout": { - "type": "String", - "placeholders": {} - }, - "askSSSSSign": "For å kunne signere den andre personen, skriv inn ditt sikre lagerpassord eller gjenopprettingsnøkkel.", - "@askSSSSSign": { - "type": "String", - "placeholders": {} - }, - "askVerificationRequest": "Godta denne bekreftelsesforespørselen fra {username}?", - "@askVerificationRequest": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "banFromChat": "Bannlys fra sludring", - "@banFromChat": { - "type": "String", - "placeholders": {} - }, - "banned": "Bannlyst", - "@banned": { - "type": "String", - "placeholders": {} - }, - "bannedUser": "{username} bannlyste {targetName}", - "@bannedUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "blockDevice": "Blokker enhet", - "@blockDevice": { - "type": "String", - "placeholders": {} - }, - "botMessages": "Bot-meldinger", - "@botMessages": { - "type": "String", - "placeholders": {} - }, - "cancel": "Avbryt", - "@cancel": { - "type": "String", - "placeholders": {} - }, - "changeDeviceName": "Endre enhetsnavn", - "@changeDeviceName": { - "type": "String", - "placeholders": {} - }, - "changedTheChatAvatar": "{username} endret sludreavatar", - "@changedTheChatAvatar": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheChatDescriptionTo": "{username} endret sludrebeskrivelse til: «{description}»", - "@changedTheChatDescriptionTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "description": { - "type": "String" - } - } - }, - "changedTheChatNameTo": "{username} endret sludringsnavn til: «{chatname}»", - "@changedTheChatNameTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "chatname": { - "type": "String" - } - } - }, - "changedTheChatPermissions": "{username} endret sludretilgangene", - "@changedTheChatPermissions": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheDisplaynameTo": "{username} endret visningsnavn til: {displayname}", - "@changedTheDisplaynameTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "displayname": { - "type": "String" - } - } - }, - "changedTheGuestAccessRules": "{username} endret gjestetilgangsreglene", - "@changedTheGuestAccessRules": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheGuestAccessRulesTo": "{username} endret gjestetilgangsregler til: {rules}", - "@changedTheGuestAccessRulesTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "rules": { - "type": "String" - } - } - }, - "changedTheHistoryVisibility": "{username} endret historikksynlighet", - "@changedTheHistoryVisibility": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheHistoryVisibilityTo": "{username} endret historikksynlighet til: {rules}", - "@changedTheHistoryVisibilityTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "rules": { - "type": "String" - } - } - }, - "changedTheJoinRules": "{username} endret tilgangsreglene", - "@changedTheJoinRules": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheJoinRulesTo": "{username} endret tilgangsreglene til: {joinRules}", - "@changedTheJoinRulesTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "joinRules": { - "type": "String" - } - } - }, - "changedTheProfileAvatar": "{username} endret avataren sin", - "@changedTheProfileAvatar": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheRoomAliases": "{username} endret rom-aliasene", - "@changedTheRoomAliases": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheRoomInvitationLink": "{username} endret invitasjonslenken", - "@changedTheRoomInvitationLink": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changePassword": "Endre passord", - "@changePassword": { - "type": "String", - "placeholders": {} - }, - "changeTheHomeserver": "Endre hjemmetjener", - "@changeTheHomeserver": { - "type": "String", - "placeholders": {} - }, - "changeTheme": "Endre din stil", - "@changeTheme": { - "type": "String", - "placeholders": {} - }, - "changeTheNameOfTheGroup": "Endre gruppens navn", - "@changeTheNameOfTheGroup": { - "type": "String", - "placeholders": {} - }, - "channelCorruptedDecryptError": "Krypteringen er skadet", - "@channelCorruptedDecryptError": { - "type": "String", - "placeholders": {} - }, - "chat": "Sludring", - "@chat": { - "type": "String", - "placeholders": {} - }, - "chatBackup": "Sludringssikkerhetskopi", - "@chatBackup": { - "type": "String", - "placeholders": {} - }, - "chatBackupDescription": "Din sludringssikkerhetskopi er sikret med en sikkerhetsnøkkel. Ikke mist den.", - "@chatBackupDescription": { - "type": "String", - "placeholders": {} - }, - "chatDetails": "Sludringsdetaljer", - "@chatDetails": { - "type": "String", - "placeholders": {} - }, - "chooseAStrongPassword": "Velg et sterkt passord", - "@chooseAStrongPassword": { - "type": "String", - "placeholders": {} - }, - "close": "Lukk", - "@close": { - "type": "String", - "placeholders": {} - }, - "compareEmojiMatch": "Sammenlign og forsikre at følgende smilefjes samsvarer med de på den andre enheten:", - "@compareEmojiMatch": { - "type": "String", - "placeholders": {} - }, - "compareNumbersMatch": "Sammenlign og forsikre at følgende tall samsvarer med de på den andre enheten:", - "@compareNumbersMatch": { - "type": "String", - "placeholders": {} - }, - "configureChat": "Sett opp sludring", - "@configureChat": { - "type": "String", - "placeholders": {} - }, - "confirm": "Bekreft", - "@confirm": { - "type": "String", - "placeholders": {} - }, - "connect": "Koble til", - "@connect": { - "type": "String", - "placeholders": {} - }, - "contactHasBeenInvitedToTheGroup": "Kontakt invitert til gruppen", - "@contactHasBeenInvitedToTheGroup": { - "type": "String", - "placeholders": {} - }, - "containsDisplayName": "Inneholder visningsnavn", - "@containsDisplayName": { - "type": "String", - "placeholders": {} - }, - "containsUserName": "Inneholder brukernavn", - "@containsUserName": { - "type": "String", - "placeholders": {} - }, - "contentHasBeenReported": "Innholdet har blitt rapportert til tjeneradministratorene", - "@contentHasBeenReported": { - "type": "String", - "placeholders": {} - }, - "copiedToClipboard": "Kopiert til utklippstavle", - "@copiedToClipboard": { - "type": "String", - "placeholders": {} - }, - "copy": "Kopier", - "@copy": { - "type": "String", - "placeholders": {} - }, - "copyToClipboard": "Kopier til utklippstavle", - "@copyToClipboard": { - "type": "String", - "placeholders": {} - }, - "couldNotDecryptMessage": "Kunne ikke dekryptere melding: {error}", - "@couldNotDecryptMessage": { - "type": "String", - "placeholders": { - "error": { - "type": "String" - } - } - }, - "countParticipants": "{count} deltagere", - "@countParticipants": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "create": "Opprett", - "@create": { - "type": "String", - "placeholders": {} - }, - "createdTheChat": "{username} opprettet sludringen", - "@createdTheChat": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "currentlyActive": "Aktiv nå", - "@currentlyActive": { - "type": "String", - "placeholders": {} - }, - "darkTheme": "Mørk", - "@darkTheme": { - "type": "String", - "placeholders": {} - }, - "dateAndTimeOfDay": "{timeOfDay}, {date}", - "@dateAndTimeOfDay": { - "type": "String", - "placeholders": { - "date": { - "type": "String" - }, - "timeOfDay": { - "type": "String" - } - } - }, - "dateWithoutYear": "{day} {month}", - "@dateWithoutYear": { - "type": "String", - "placeholders": { - "month": { - "type": "String" - }, - "day": { - "type": "String" - } - } - }, - "dateWithYear": "{day} {month} {year}", - "@dateWithYear": { - "type": "String", - "placeholders": { - "year": { - "type": "String" - }, - "month": { - "type": "String" - }, - "day": { - "type": "String" - } - } - }, - "deactivateAccountWarning": "Dette vil skru av din brukerkonto for godt, og kan ikke angres! Er du sikker?", - "@deactivateAccountWarning": { - "type": "String", - "placeholders": {} - }, - "defaultPermissionLevel": "Forvalgt tilgangsnivå", - "@defaultPermissionLevel": { - "type": "String", - "placeholders": {} - }, - "delete": "Slett", - "@delete": { - "type": "String", - "placeholders": {} - }, - "deleteAccount": "Slett konto", - "@deleteAccount": { - "type": "String", - "placeholders": {} - }, - "deleteMessage": "Slett melding", - "@deleteMessage": { - "type": "String", - "placeholders": {} - }, - "device": "Enhet", - "@device": { - "type": "String", - "placeholders": {} - }, - "deviceId": "Enhets-ID", - "@deviceId": { - "type": "String", - "placeholders": {} - }, - "devices": "Enheter", - "@devices": { - "type": "String", - "placeholders": {} - }, - "directChats": "Direktesludringer", - "@directChats": { - "type": "String", - "placeholders": {} - }, - "displaynameHasBeenChanged": "Visningsnavn endret", - "@displaynameHasBeenChanged": { - "type": "String", - "placeholders": {} - }, - "downloadFile": "Last ned fil", - "@downloadFile": { - "type": "String", - "placeholders": {} - }, - "edit": "Rediger", - "@edit": { - "type": "String", - "placeholders": {} - }, - "editBlockedServers": "Rediger blokkerte tjenere", - "@editBlockedServers": { - "type": "String", - "placeholders": {} - }, - "editDisplayname": "Rediger visningsnavn", - "@editDisplayname": { - "type": "String", - "placeholders": {} - }, - "editRoomAvatar": "Rediger romavatar", - "@editRoomAvatar": { - "type": "String", - "placeholders": {} - }, - "emoteExists": "Smilefjeset finnes allerede!", - "@emoteExists": { - "type": "String", - "placeholders": {} - }, - "emoteInvalid": "Ugyldig smilefjes-kode!", - "@emoteInvalid": { - "type": "String", - "placeholders": {} - }, - "emotePacks": "Smilefjespakker for rommet", - "@emotePacks": { - "type": "String", - "placeholders": {} - }, - "emoteSettings": "Smilefjes-innstillinger", - "@emoteSettings": { - "type": "String", - "placeholders": {} - }, - "emoteShortcode": "Smilefjes-kode", - "@emoteShortcode": { - "type": "String", - "placeholders": {} - }, - "emoteWarnNeedToPick": "Du må velge en smilefjes-kode og et bilde!", - "@emoteWarnNeedToPick": { - "type": "String", - "placeholders": {} - }, - "emptyChat": "Tom sludring", - "@emptyChat": { - "type": "String", - "placeholders": {} - }, - "enableEmotesGlobally": "Skru på smilefjespakke for hele programmet", - "@enableEmotesGlobally": { - "type": "String", - "placeholders": {} - }, - "enableEncryption": "Skru på kryptering", - "@enableEncryption": { - "type": "String", - "placeholders": {} - }, - "enableEncryptionWarning": "Du vil ikke kunne skru av kryptering lenger. Er du sikker?", - "@enableEncryptionWarning": { - "type": "String", - "placeholders": {} - }, - "encrypted": "Kryptert", - "@encrypted": { - "type": "String", - "placeholders": {} - }, - "encryption": "Kryptering", - "@encryption": { - "type": "String", - "placeholders": {} - }, - "encryptionNotEnabled": "Kryptering er ikke påskrudd", - "@encryptionNotEnabled": { - "type": "String", - "placeholders": {} - }, - "endedTheCall": "{senderName} avsluttet samtalen", - "@endedTheCall": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "enterAnEmailAddress": "Skriv inn en e-postadresse", - "@enterAnEmailAddress": { - "type": "String", - "placeholders": {} - }, - "enterYourHomeserver": "Skriv inn din hjemmetjener", - "@enterYourHomeserver": { - "type": "String", - "placeholders": {} - }, - "everythingReady": "Alt er klart!", - "@everythingReady": { - "type": "String", - "placeholders": {} - }, - "extremeOffensive": "Veldig", - "@extremeOffensive": { - "type": "String", - "placeholders": {} - }, - "fileName": "Filnavn", - "@fileName": { - "type": "String", - "placeholders": {} - }, - "fluffychat": "FluffyChat", - "@fluffychat": { - "type": "String", - "placeholders": {} - }, - "fontSize": "Skriftstørrelse", - "@fontSize": { - "type": "String", - "placeholders": {} - }, - "forward": "Videre", - "@forward": { - "type": "String", - "placeholders": {} - }, - "fromJoining": "Fra å ta del", - "@fromJoining": { - "type": "String", - "placeholders": {} - }, - "fromTheInvitation": "Fra invitasjonen", - "@fromTheInvitation": { - "type": "String", - "placeholders": {} - }, - "group": "Gruppe", - "@group": { - "type": "String", - "placeholders": {} - }, - "groupIsPublic": "Gruppen er offentlig", - "@groupIsPublic": { - "type": "String", - "placeholders": {} - }, - "groups": "Grupper", - "@groups": { - "type": "String", - "placeholders": {} - }, - "groupWith": "Gruppe med {displayname}", - "@groupWith": { - "type": "String", - "placeholders": { - "displayname": { - "type": "String" - } - } - }, - "guestsAreForbidden": "Gjester forbudt", - "@guestsAreForbidden": { - "type": "String", - "placeholders": {} - }, - "guestsCanJoin": "Gjester kan ta del", - "@guestsCanJoin": { - "type": "String", - "placeholders": {} - }, - "hasWithdrawnTheInvitationFor": "{username} har trukket tilbake invitasjonen til {targetName}", - "@hasWithdrawnTheInvitationFor": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "help": "Hjelp", - "@help": { - "type": "String", - "placeholders": {} - }, - "hideRedactedEvents": "Skjul tilbaketrukne hendelser", - "@hideRedactedEvents": { - "type": "String", - "placeholders": {} - }, - "hideUnknownEvents": "Skjul ukjente hendelser", - "@hideUnknownEvents": { - "type": "String", - "placeholders": {} - }, - "howOffensiveIsThisContent": "Hvor støtende er innholdet?", - "@howOffensiveIsThisContent": { - "type": "String", - "placeholders": {} - }, - "id": "ID", - "@id": { - "type": "String", - "placeholders": {} - }, - "identity": "Identitet", - "@identity": { - "type": "String", - "placeholders": {} - }, - "ignore": "Ignorer", - "@ignore": { - "type": "String", - "placeholders": {} - }, - "ignoredUsers": "Ignorerte brukere", - "@ignoredUsers": { - "type": "String", - "placeholders": {} - }, - "iHaveClickedOnLink": "Jeg har klikket på lenken", - "@iHaveClickedOnLink": { - "type": "String", - "placeholders": {} - }, - "incorrectPassphraseOrKey": "Feilaktig passord eller gjenopprettingsnøkkel", - "@incorrectPassphraseOrKey": { - "type": "String", - "placeholders": {} - }, - "inoffensive": "Harmløst", - "@inoffensive": { - "type": "String", - "placeholders": {} - }, - "inviteContact": "Inviter kontakt", - "@inviteContact": { - "type": "String", - "placeholders": {} - }, - "inviteContactToGroup": "Inviter kontakt til {groupName}", - "@inviteContactToGroup": { - "type": "String", - "placeholders": { - "groupName": { - "type": "String" - } - } - }, - "invited": "Invitert", - "@invited": { - "type": "String", - "placeholders": {} - }, - "invitedUser": "{username} inviterte {targetName}", - "@invitedUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "invitedUsersOnly": "Kun inviterte brukere", - "@invitedUsersOnly": { - "type": "String", - "placeholders": {} - }, - "inviteForMe": "Invitasjon for meg", - "@inviteForMe": { - "type": "String", - "placeholders": {} - }, - "inviteText": "{username} har invitert deg til FluffyChat. \n1. Installer FluffyChat: https://fluffychat.im \n2. Registrer deg eller logg inn \n3. Åpne invitasjonslenken: {link}", - "@inviteText": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "link": { - "type": "String" - } - } - }, - "isTyping": "skriver…", - "@isTyping": { - "type": "String", - "placeholders": {} - }, - "joinedTheChat": "{username}ble med i samtalen", - "@joinedTheChat": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "joinRoom": "Ta del i rom", - "@joinRoom": { - "type": "String", - "placeholders": {} - }, - "kicked": "{username} kastet ut {targetName}", - "@kicked": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "kickedAndBanned": "{username} kastet ut og bannlyste {targetName}", - "@kickedAndBanned": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "kickFromChat": "Kast ut av sludringen", - "@kickFromChat": { - "type": "String", - "placeholders": {} - }, - "lastActiveAgo": "Sist aktiv: {localizedTimeShort}", - "@lastActiveAgo": { - "type": "String", - "placeholders": { - "localizedTimeShort": { - "type": "String" - } - } - }, - "leave": "Forlat", - "@leave": { - "type": "String", - "placeholders": {} - }, - "leftTheChat": "Forlat sludringen", - "@leftTheChat": { - "type": "String", - "placeholders": {} - }, - "license": "Lisens", - "@license": { - "type": "String", - "placeholders": {} - }, - "lightTheme": "Lys", - "@lightTheme": { - "type": "String", - "placeholders": {} - }, - "loadCountMoreParticipants": "Last inn {count} deltagere til", - "@loadCountMoreParticipants": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "loadingPleaseWait": "Laster inn… Vent.", - "@loadingPleaseWait": { - "type": "String", - "placeholders": {} - }, - "loadMore": "Last inn mer…", - "@loadMore": { - "type": "String", - "placeholders": {} - }, - "login": "Logg inn", - "@login": { - "type": "String", - "placeholders": {} - }, - "logInTo": "Logg inn på {homeserver}", - "@logInTo": { - "type": "String", - "placeholders": { - "homeserver": { - "type": "String" - } - } - }, - "logout": "Logg ut", - "@logout": { - "type": "String", - "placeholders": {} - }, - "memberChanges": "Medlemsendringer", - "@memberChanges": { - "type": "String", - "placeholders": {} - }, - "mention": "Nevn", - "@mention": { - "type": "String", - "placeholders": {} - }, - "messages": "Meldinger", - "@messages": { - "type": "String", - "placeholders": {} - }, - "moderator": "Moderator", - "@moderator": { - "type": "String", - "placeholders": {} - }, - "muteChat": "Forstum sludring", - "@muteChat": { - "type": "String", - "placeholders": {} - }, - "needPantalaimonWarning": "Merk at du trenger Pantalaimon for å bruke ende-til-ende -kryptering inntil videre.", - "@needPantalaimonWarning": { - "type": "String", - "placeholders": {} - }, - "newChat": "Ny sludring", - "@newChat": { - "type": "String", - "placeholders": {} - }, - "newMessageInFluffyChat": "Ny melding i FluffyChat", - "@newMessageInFluffyChat": { - "type": "String", - "placeholders": {} - }, - "newVerificationRequest": "Ny bekreftelsesforespørsel!", - "@newVerificationRequest": { - "type": "String", - "placeholders": {} - }, - "next": "Neste", - "@next": { - "type": "String", - "placeholders": {} - }, - "no": "Nei", - "@no": { - "type": "String", - "placeholders": {} - }, - "noEmotesFound": "Fant ingen smilefjes. 😕", - "@noEmotesFound": { - "type": "String", - "placeholders": {} - }, - "noGoogleServicesWarning": "Bruk https://microg.org/ for å få Google-tjenester (uten at det går ut over personvernet) for å få push-merknader i FluffyChat:", - "@noGoogleServicesWarning": { - "type": "String", - "placeholders": {} - }, - "none": "Ingen", - "@none": { - "type": "String", - "placeholders": {} - }, - "noPasswordRecoveryDescription": "Du har ikke lagt til en måte å gjenopprette passordet ditt på.", - "@noPasswordRecoveryDescription": { - "type": "String", - "placeholders": {} - }, - "noPermission": "Ingen tilgang", - "@noPermission": { - "type": "String", - "placeholders": {} - }, - "noRoomsFound": "Fant ingen rom …", - "@noRoomsFound": { - "type": "String", - "placeholders": {} - }, - "notifications": "Merknader", - "@notifications": { - "type": "String", - "placeholders": {} - }, - "notificationsEnabledForThisAccount": "Merknader påslått for denne kontoen", - "@notificationsEnabledForThisAccount": { - "type": "String", - "placeholders": {} - }, - "numUsersTyping": "{count} brukere skriver …", - "@numUsersTyping": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "offensive": "Støtende", - "@offensive": { - "type": "String", - "placeholders": {} - }, - "offline": "Frakoblet", - "@offline": { - "type": "String", - "placeholders": {} - }, - "ok": "OK", - "@ok": { - "type": "String", - "placeholders": {} - }, - "online": "Pålogget", - "@online": { - "type": "String", - "placeholders": {} - }, - "onlineKeyBackupEnabled": "Nettbasert sikkerhetskopiering av nøkler på", - "@onlineKeyBackupEnabled": { - "type": "String", - "placeholders": {} - }, - "oopsSomethingWentWrong": "Oida, noe gikk galt …", - "@oopsSomethingWentWrong": { - "type": "String", - "placeholders": {} - }, - "openAppToReadMessages": "Åpne programmet for å lese meldinger", - "@openAppToReadMessages": { - "type": "String", - "placeholders": {} - }, - "openCamera": "Åpne kamera", - "@openCamera": { - "type": "String", - "placeholders": {} - }, - "participant": "Deltager", - "@participant": { - "type": "String", - "placeholders": {} - }, - "passphraseOrKey": "Passord eller gjenopprettingsnøkkel", - "@passphraseOrKey": { - "type": "String", - "placeholders": {} - }, - "password": "Passord", - "@password": { - "type": "String", - "placeholders": {} - }, - "passwordForgotten": "Passord glemt", - "@passwordForgotten": { - "type": "String", - "placeholders": {} - }, - "passwordHasBeenChanged": "Passord endret", - "@passwordHasBeenChanged": { - "type": "String", - "placeholders": {} - }, - "passwordRecovery": "Passordgjenoppretting", - "@passwordRecovery": { - "type": "String", - "placeholders": {} - }, - "pickImage": "Velg bilde", - "@pickImage": { - "type": "String", - "placeholders": {} - }, - "pin": "Fest", - "@pin": { - "type": "String", - "placeholders": {} - }, - "play": "Spill av {fileName}", - "@play": { - "type": "String", - "placeholders": { - "fileName": { - "type": "String" - } - } - }, - "pleaseClickOnLink": "Klikk på lenken i e-posten og fortsett.", - "@pleaseClickOnLink": { - "type": "String", - "placeholders": {} - }, - "pleaseEnterYourPassword": "Skriv inn passordet ditt", - "@pleaseEnterYourPassword": { - "type": "String", - "placeholders": {} - }, - "pleaseEnterYourUsername": "Skriv inn brukernavnet ditt", - "@pleaseEnterYourUsername": { - "type": "String", - "placeholders": {} - }, - "pleaseFollowInstructionsOnWeb": "Følg instruksen på nettsiden og trykk på «Neste».", - "@pleaseFollowInstructionsOnWeb": { - "type": "String", - "placeholders": {} - }, - "privacy": "Personvern", - "@privacy": { - "type": "String", - "placeholders": {} - }, - "publicRooms": "Offentlige rom", - "@publicRooms": { - "type": "String", - "placeholders": {} - }, - "pushRules": "Dyttingsregler", - "@pushRules": { - "type": "String", - "placeholders": {} - }, - "reason": "Grunn", - "@reason": { - "type": "String", - "placeholders": {} - }, - "recording": "Opptak", - "@recording": { - "type": "String", - "placeholders": {} - }, - "redactedAnEvent": "{username} har trukket tilbake en hendelse", - "@redactedAnEvent": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "reject": "Avslå", - "@reject": { - "type": "String", - "placeholders": {} - }, - "rejectedTheInvitation": "{username} avslo invitasjonen", - "@rejectedTheInvitation": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "rejoin": "Ta del igjen", - "@rejoin": { - "type": "String", - "placeholders": {} - }, - "remove": "Fjern", - "@remove": { - "type": "String", - "placeholders": {} - }, - "removeAllOtherDevices": "Fjern alle andre enheter", - "@removeAllOtherDevices": { - "type": "String", - "placeholders": {} - }, - "removedBy": "Fjernet av {username}", - "@removedBy": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "removeDevice": "Fjern enhet", - "@removeDevice": { - "type": "String", - "placeholders": {} - }, - "unbanFromChat": "Opphev bannlysning", - "@unbanFromChat": { - "type": "String", - "placeholders": {} - }, - "replaceRoomWithNewerVersion": "Erstatt rom med nyere versjon", - "@replaceRoomWithNewerVersion": { - "type": "String", - "placeholders": {} - }, - "reply": "Svar", - "@reply": { - "type": "String", - "placeholders": {} - }, - "reportMessage": "Rapporter melding", - "@reportMessage": { - "type": "String", - "placeholders": {} - }, - "requestPermission": "Forespør tilgang", - "@requestPermission": { - "type": "String", - "placeholders": {} - }, - "roomHasBeenUpgraded": "Rommet har blitt oppgradert", - "@roomHasBeenUpgraded": { - "type": "String", - "placeholders": {} - }, - "search": "Søk", - "@search": { - "type": "String", - "placeholders": {} - }, - "security": "Sikkerhet", - "@security": { - "type": "String", - "placeholders": {} - }, - "seenByUser": "Sett av {username}", - "@seenByUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "send": "Send", - "@send": { - "type": "String", - "placeholders": {} - }, - "sendAMessage": "Send en melding", - "@sendAMessage": { - "type": "String", - "placeholders": {} - }, - "sendAudio": "Send lyd", - "@sendAudio": { - "type": "String", - "placeholders": {} - }, - "sendFile": "Send fil", - "@sendFile": { - "type": "String", - "placeholders": {} - }, - "sendImage": "Send bilde", - "@sendImage": { - "type": "String", - "placeholders": {} - }, - "sendMessages": "Send meldinger", - "@sendMessages": { - "type": "String", - "placeholders": {} - }, - "sendOriginal": "Send original", - "@sendOriginal": { - "type": "String", - "placeholders": {} - }, - "sendVideo": "Send video", - "@sendVideo": { - "type": "String", - "placeholders": {} - }, - "sentAFile": "{username} sendte en fil", - "@sentAFile": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentAnAudio": "{username} sendte lyd", - "@sentAnAudio": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentAPicture": "{username} sendte et bilde", - "@sentAPicture": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentASticker": "{username} sendte et klistremerke", - "@sentASticker": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentAVideo": "{username} sendte en video", - "@sentAVideo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentCallInformations": "{senderName} sendte anropsinfo", - "@sentCallInformations": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "setCustomEmotes": "Sett tilpassede smilefjes", - "@setCustomEmotes": { - "type": "String", - "placeholders": {} - }, - "setInvitationLink": "Sett invitasjonslenke", - "@setInvitationLink": { - "type": "String", - "placeholders": {} - }, - "setPermissionsLevel": "Sett tilgangsnivå", - "@setPermissionsLevel": { - "type": "String", - "placeholders": {} - }, - "setStatus": "Angi status", - "@setStatus": { - "type": "String", - "placeholders": {} - }, - "settings": "Innstilinger", - "@settings": { - "type": "String", - "placeholders": {} - }, - "share": "Del", - "@share": { - "type": "String", - "placeholders": {} - }, - "sharedTheLocation": "{username} delte posisjonen", - "@sharedTheLocation": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "skip": "Hopp over", - "@skip": { - "type": "String", - "placeholders": {} - }, - "sourceCode": "Kildekode", - "@sourceCode": { - "type": "String", - "placeholders": {} - }, - "startedACall": "{senderName} startet en samtale", - "@startedACall": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "status": "Status", - "@status": { - "type": "String", - "placeholders": {} - }, - "statusExampleMessage": "Hvordan har du det i dag?", - "@statusExampleMessage": { - "type": "String", - "placeholders": {} - }, - "submit": "Send inn", - "@submit": { - "type": "String", - "placeholders": {} - }, - "systemTheme": "System", - "@systemTheme": { - "type": "String", - "placeholders": {} - }, - "theyDontMatch": "Samsvarer ikke", - "@theyDontMatch": { - "type": "String", - "placeholders": {} - }, - "theyMatch": "Samsvarer", - "@theyMatch": { - "type": "String", - "placeholders": {} - }, - "title": "FluffyChat", - "@title": { - "description": "Title for the application", - "type": "String", - "placeholders": {} - }, - "tooManyRequestsWarning": "For mange forespørsler. Prøv igjen senere!", - "@tooManyRequestsWarning": { - "type": "String", - "placeholders": {} - }, - "transferFromAnotherDevice": "Overfør fra en annen enhet", - "@transferFromAnotherDevice": { - "type": "String", - "placeholders": {} - }, - "tryToSendAgain": "Prøv å sende igjen", - "@tryToSendAgain": { - "type": "String", - "placeholders": {} - }, - "unavailable": "Utilgjengelig", - "@unavailable": { - "type": "String", - "placeholders": {} - }, - "unbannedUser": "{username} opphevet bannlysning av {targetName}", - "@unbannedUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "unblockDevice": "Opphev blokkering av enhet", - "@unblockDevice": { - "type": "String", - "placeholders": {} - }, - "unknownDevice": "Ukjent enhet", - "@unknownDevice": { - "type": "String", - "placeholders": {} - }, - "unknownEncryptionAlgorithm": "Ukjent krypteringsalgoritme", - "@unknownEncryptionAlgorithm": { - "type": "String", - "placeholders": {} - }, - "unknownEvent": "Ukjent hendelse «{type}»", - "@unknownEvent": { - "type": "String", - "placeholders": { - "type": { - "type": "String" - } - } - }, - "unmuteChat": "Opphev forstumming av sludring", - "@unmuteChat": { - "type": "String", - "placeholders": {} - }, - "unpin": "Løsne", - "@unpin": { - "type": "String", - "placeholders": {} - }, - "unreadChats": "{unreadCount, plural, other{{unreadCount} uleste sludringer}}", - "@unreadChats": { - "type": "String", - "placeholders": { - "unreadCount": { - "type": "int" - } - } - }, - "userAndOthersAreTyping": "{username} og {count} andre skriver…", - "@userAndOthersAreTyping": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "count": { - "type": "int" - } - } - }, - "userAndUserAreTyping": "{username} og {username2} skriver…", - "@userAndUserAreTyping": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "username2": { - "type": "String" - } - } - }, - "userIsTyping": "{username} skriver…", - "@userIsTyping": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "userLeftTheChat": "{username} har forlatt sludringen", - "@userLeftTheChat": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "username": "Brukernavn", - "@username": { - "type": "String", - "placeholders": {} - }, - "userSentUnknownEvent": "{username} sendte en {type}-hendelse", - "@userSentUnknownEvent": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "type": { - "type": "String" - } - } - }, - "verify": "Bekreft", - "@verify": { - "type": "String", - "placeholders": {} - }, - "verifyStart": "Start bekreftelse", - "@verifyStart": { - "type": "String", - "placeholders": {} - }, - "verifySuccess": "Du har bekreftet!", - "@verifySuccess": { - "type": "String", - "placeholders": {} - }, - "verifyTitle": "Bekrefter annen konto", - "@verifyTitle": { - "type": "String", - "placeholders": {} - }, - "videoCall": "Videosamtale", - "@videoCall": { - "type": "String", - "placeholders": {} - }, - "visibilityOfTheChatHistory": "Sludrehistorikkens synlighet", - "@visibilityOfTheChatHistory": { - "type": "String", - "placeholders": {} - }, - "visibleForAllParticipants": "Synlig for alle deltagere", - "@visibleForAllParticipants": { - "type": "String", - "placeholders": {} - }, - "visibleForEveryone": "Synlig for alle", - "@visibleForEveryone": { - "type": "String", - "placeholders": {} - }, - "voiceMessage": "Lydmelding", - "@voiceMessage": { - "type": "String", - "placeholders": {} - }, - "waitingPartnerNumbers": "Venter på at samtalepartner skal godta tallene …", - "@waitingPartnerNumbers": { - "type": "String", - "placeholders": {} - }, - "wallpaper": "Bakgrunnsbilde", - "@wallpaper": { - "type": "String", - "placeholders": {} - }, - "warning": "Advarsel!", - "@warning": { - "type": "String", - "placeholders": {} - }, - "weSentYouAnEmail": "Du har fått en e-post", - "@weSentYouAnEmail": { - "type": "String", - "placeholders": {} - }, - "whoCanPerformWhichAction": "Hvem kan utføre hvilken handling", - "@whoCanPerformWhichAction": { - "type": "String", - "placeholders": {} - }, - "whoIsAllowedToJoinThisGroup": "Hvem tillates å ta del i denne gruppen", - "@whoIsAllowedToJoinThisGroup": { - "type": "String", - "placeholders": {} - }, - "whyDoYouWantToReportThis": "Hvorfor ønsker du å rapportere dette?", - "@whyDoYouWantToReportThis": { - "type": "String", - "placeholders": {} - }, - "withTheseAddressesRecoveryDescription": "Med disse adressene kan du gjenopprette passordet ditt hvis du trenger det.", - "@withTheseAddressesRecoveryDescription": { - "type": "String", - "placeholders": {} - }, - "writeAMessage": "Skriv en melding …", - "@writeAMessage": { - "type": "String", - "placeholders": {} - }, - "yes": "Ja", - "@yes": { - "type": "String", - "placeholders": {} - }, - "you": "Deg", - "@you": { - "type": "String", - "placeholders": {} - }, - "youAreNoLongerParticipatingInThisChat": "Du deltar ikke lenger i denne sludringen", - "@youAreNoLongerParticipatingInThisChat": { - "type": "String", - "placeholders": {} - }, - "youHaveBeenBannedFromThisChat": "Du har blitt bannlyst fra denne sludringen", - "@youHaveBeenBannedFromThisChat": { - "type": "String", - "placeholders": {} - }, - "yourPublicKey": "Din offentlige nøkkel", - "@yourPublicKey": { - "type": "String", - "placeholders": {} - }, - "toggleUnread": "Marker som lest/ulest", - "@toggleUnread": { - "type": "String", - "placeholders": {} - }, - "toggleMuted": "Veksle forstumming", - "@toggleMuted": { - "type": "String", - "placeholders": {} - }, - "toggleFavorite": "Veksle favorittmerking", - "@toggleFavorite": { - "type": "String", - "placeholders": {} - }, - "noConnectionToTheServer": "Ingen tilkobling til tjeneren", - "@noConnectionToTheServer": { - "type": "String", - "placeholders": {} - }, - "addEmail": "Legg til e-post", - "@addEmail": { - "type": "String", - "placeholders": {} - }, - "repeatPassword": "Gjenta passord", - "@repeatPassword": {}, - "addToSpace": "Legg til space", - "@addToSpace": {}, - "allChats": "Alle samtaler", - "@allChats": { - "type": "String", - "placeholders": {} - }, - "autoplayImages": "Automatisk spill av animerte stickers og emojis", - "@autoplayImages": { - "type": "String", - "placeholder": {} - }, - "badServerLoginTypesException": "Denne hjemme serveren støtter følgende innloggings-typer:\n{serverVersions}\nMen denne applikasjonen støtter kun:\n{supportedVersions}", - "@badServerLoginTypesException": { - "type": "String", - "placeholders": { - "serverVersions": { - "type": "String" - }, - "supportedVersions": { - "type": "String" - } - } - }, - "sendOnEnter": "Trykk på enter for å sende", - "@sendOnEnter": {}, - "badServerVersionsException": "Denne hjemme serveren støtter følgene Spec-versjoner:\n{serverVersions}\nMen denne applikasjonen støtter kun {supportedVersions}", - "@badServerVersionsException": { - "type": "String", - "placeholders": { - "serverVersions": { - "type": "String" - }, - "supportedVersions": { - "type": "String" - } - } - }, - "blocked": "Blokkert", - "@blocked": { - "type": "String", - "placeholders": {} - }, - "cantOpenUri": "Kan ikke åpne URI {uri}", - "@cantOpenUri": { - "type": "String", - "placeholders": { - "uri": { - "type": "String" - } - } - }, - "changeYourAvatar": "Bytt profilbilde", - "@changeYourAvatar": { - "type": "String", - "placeholders": {} - }, - "notAnImage": "Ikke en bildefil.", - "@notAnImage": {}, - "importNow": "Importer nå", - "@importNow": {}, - "hugContent": "{senderName} klemmer deg", - "@hugContent": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "space": "Område", - "@space": {}, - "spaces": "Områder", - "@spaces": {}, - "cuddleContent": "{senderName} koser med deg", - "@cuddleContent": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "appLockDescription": "Lås appen med en PIN-kode når den ikke er i bruk", - "@appLockDescription": {}, - "ignoreUser": "Ignorer bruker", - "@ignoreUser": {}, - "setCustomPermissionLevel": "Angi egendefinert tillatelsesnivå", - "@setCustomPermissionLevel": {}, - "normalUser": "Vanlig bruker", - "@normalUser": {}, - "replace": "Erstatt", - "@replace": {}, - "noMoreChatsFound": "Ingen flere chatter funnet ...", - "@noMoreChatsFound": {}, - "confirmMatrixId": "Vennligst bekreft din Matrix-ID for å slette kontoen din.", - "@confirmMatrixId": {}, - "unread": "", - "@unread": {}, - "aboutHomeserver": "Om {homeserver}", - "@aboutHomeserver": { - "type": "String", - "placeholders": { - "homeserver": { - "type": "String" - } - } - }, - "commandHint_hug": "Send en klem", - "@commandHint_hug": {}, - "markAsRead": "Marker som lest", - "@markAsRead": {}, - "openLinkInBrowser": "Åpne lenke i nettleser", - "@openLinkInBrowser": {}, - "start": "Start", - "@start": {}, - "passwordsDoNotMatch": "Passordene stemmer ikke overens", - "@passwordsDoNotMatch": {}, - "decline": "Avslå", - "@decline": {}, - "emailOrUsername": "E-post eller brukernavn", - "@emailOrUsername": {}, - "encryptThisChat": "Krypter denne chatten", - "@encryptThisChat": {}, - "nextAccount": "Neste konto", - "@nextAccount": {}, - "doNotShowAgain": "Ikke vis igjen", - "@doNotShowAgain": {}, - "notificationRuleContainsUserName": "Inneholder brukernavn", - "@notificationRuleContainsUserName": {}, - "notificationRuleMaster": "Demp alle varslinger", - "@notificationRuleMaster": {}, - "presenceStyle": "Tilstedeværelse:", - "@presenceStyle": { - "type": "String", - "placeholders": {} - }, - "verified": "Verifisert", - "@verified": { - "type": "String", - "placeholders": {} - }, - "saveFile": "Lagre fil", - "@saveFile": { - "type": "String", - "placeholders": {} - }, - "recoveryKey": "Gjenopprettingsnøkkel", - "@recoveryKey": {}, - "sendSticker": "Send sticker", - "@sendSticker": { - "type": "String", - "placeholders": {} - }, - "shareLocation": "Del lokasjon", - "@shareLocation": { - "type": "String", - "placeholders": {} - }, - "showPassword": "Vis passord", - "@showPassword": { - "type": "String", - "placeholders": {} - }, - "synchronizingPleaseWait": "Synkroniserer … Vent litt.", - "@synchronizingPleaseWait": { - "type": "String", - "placeholders": {} - }, - "dismiss": "Avvis", - "@dismiss": {}, - "openChat": "Åpne chat", - "@openChat": {}, - "addWidget": "Legg til widget", - "@addWidget": {}, - "reopenChat": "Gjenåpne chat", - "@reopenChat": {}, - "changeTheDescriptionOfTheGroup": "Endre beskrivelsen til chatten", - "@changeTheDescriptionOfTheGroup": {}, - "inviteOtherUsers": "Inviter andre brukere til denne chatten", - "@inviteOtherUsers": {}, - "open": "Åpne", - "@open": {}, - "waitingForServer": "Venter på server...", - "@waitingForServer": {}, - "notificationRuleJitsi": "Jitsi", - "@notificationRuleJitsi": {}, - "takeAPhoto": "Ta et bilde", - "@takeAPhoto": {}, - "setChatDescription": "Sett chat beskrivelse", - "@setChatDescription": {}, - "singlesignon": "Single Sign on (SSO)", - "@singlesignon": { - "type": "String", - "placeholders": {} - }, - "openGallery": "Åpne galleri", - "@openGallery": {}, - "widgetCustom": "Egendefinert", - "@widgetCustom": {}, - "widgetVideo": "Video", - "@widgetVideo": {}, - "pushNotificationsNotAvailable": "Push-varsler er ikke tilgjengelige", - "@pushNotificationsNotAvailable": {}, - "gallery": "Galleri", - "@gallery": {}, - "moderatorLevel": "{level} - Moderator", - "@moderatorLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "int" - } - } - }, - "adminLevel": "{level} - Admin", - "@adminLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "int" - } - } - }, - "restricted": "Begrenset", - "@restricted": {}, - "updateInstalled": "🎉 Oppdatering {version} installert!", - "@updateInstalled": { - "type": "String", - "placeholders": { - "version": { - "type": "String" - } - } - }, - "calculatingFileSize": "Beregner filstørrelse...", - "@calculatingFileSize": {}, - "continueText": "Fortsett", - "@continueText": {}, - "serverInformation": "Serverinformasjon:", - "@serverInformation": {}, - "previous": "Forrige", - "@previous": {}, - "name": "Navn", - "@name": {}, - "version": "Versjon", - "@version": {}, - "invalidUrl": "Ugyldig url", - "@invalidUrl": {}, - "notificationRuleReaction": "Reaksjon", - "@notificationRuleReaction": {}, - "notificationRuleMessage": "Melding", - "@notificationRuleMessage": {}, - "notificationRuleEncrypted": "Kkryptert", - "@notificationRuleEncrypted": {}, - "more": "Mer", - "@more": {}, - "passwordIsWrong": "Det inntastede passordet ditt er feil", - "@passwordIsWrong": {}, - "startConversation": "Start samtale", - "@startConversation": {}, - "manageAccount": "Administrer konto", - "@manageAccount": {}, - "nothingFound": "Ingenting funnet...", - "@nothingFound": {}, - "incomingMessages": "Innkommende meldinger", - "@incomingMessages": {}, - "changelog": "Endringslogg", - "@changelog": {}, - "contactServerAdmin": "Kontakt serveradministrator", - "@contactServerAdmin": {}, - "setWallpaper": "Sett bakgrunnsbilde", - "@setWallpaper": {}, - "unsupportedAndroidVersion": "Usupportert Android-versjon", - "@unsupportedAndroidVersion": {}, - "widgetName": "Navn", - "@widgetName": {}, - "youJoinedTheChat": "Du har blitt med i chatten", - "@youJoinedTheChat": {}, - "widgetJitsi": "Jitsi Meet", - "@widgetJitsi": {}, - "widgetNameError": "Vennligst oppgi et visningsnavn.", - "@widgetNameError": {}, - "youRejectedTheInvitation": "Du har avvist invitasjonen", - "@youRejectedTheInvitation": {}, - "formattedMessages": "Formaterte meldinger", - "@formattedMessages": {}, - "allDevices": "Alle enheter", - "@allDevices": {}, - "learnMore": "Lær mer", - "@learnMore": {}, - "sorryThatsNotPossible": "Beklager... det er ikke mulig", - "@sorryThatsNotPossible": {}, - "markAsUnread": "Marker som ulest", - "@markAsUnread": {}, - "newGroup": "Ny gruppe", - "@newGroup": {}, - "userRole": "Brukerrolle", - "@userRole": {}, - "addLink": "Legg til lenke", - "@addLink": {}, - "synchronizingPleaseWaitCounter": " Synkroniserer… ({percentage}%)", - "@synchronizingPleaseWaitCounter": { - "type": "String", - "placeholders": { - "percentage": { - "type": "String" - } - } - }, - "unverified": "Ikke verifisert", - "@unverified": {}, - "thisDevice": "Denne enheten:", - "@thisDevice": {}, - "sendingAttachment": "Sender vedlegg...", - "@sendingAttachment": {}, - "removeYourAvatar": "Fjern din avatar", - "@removeYourAvatar": { - "type": "String", - "placeholders": {} - }, - "importFromZipFile": "Importer fra .zip-fil", - "@importFromZipFile": {}, - "select": "Velg", - "@select": {}, - "databaseMigrationTitle": "Databasen er optimalisert", - "@databaseMigrationTitle": {}, - "newPassword": "Nytt passord", - "@newPassword": {}, - "files": "Filer", - "@files": {}, - "searchIn": "Søk i chatten «{chat}»...", - "@searchIn": { - "type": "String", - "placeholders": { - "chat": { - "type": "String" - } - } - }, - "approve": "Godkjenn", - "@approve": {}, - "goToSpace": "Gå til område: {space}", - "@goToSpace": { - "type": "String", - "space": {} - }, - "userLevel": "{level} - Bruker", - "@userLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "int" - } - } - }, - "oneOfYourDevicesIsNotVerified": "En av dine enheter er ikke verifisert", - "@oneOfYourDevicesIsNotVerified": {}, - "website": "Nettside", - "@website": {}, - "boldText": "Fet skrift", - "@boldText": {}, - "pleaseFillOut": "Vennligst fyll ut", - "@pleaseFillOut": {}, - "importEmojis": "Importer emojier", - "@importEmojis": {}, - "supposedMxid": "Denne bør være {mxid}", - "@supposedMxid": { - "type": "String", - "placeholders": { - "mxid": { - "type": "String" - } - } - }, - "addChatDescription": "Legg til chat beskrivelse...", - "@addChatDescription": {}, - "commandHint_roomupgrade": "Oppgrader dette rommet til den gitte romversjonen", - "@commandHint_roomupgrade": {}, - "hideMemberChangesInPublicChatsBody": "Ikke vis i chattens tidslinje hvis noen blir med i eller forlater en offentlig chat for økt lesbarhet.", - "@hideMemberChangesInPublicChatsBody": {}, - "overview": "Oversikt", - "@overview": {}, - "notifyMeFor": "Varsle meg om", - "@notifyMeFor": {}, - "passwordRecoverySettings": "Innstillinger for gjenoppretting av passord", - "@passwordRecoverySettings": {}, - "people": "Folk", - "@people": { - "type": "String", - "placeholders": {} - }, - "pleaseChoose": "Vennligst velg", - "@pleaseChoose": { - "type": "String", - "placeholders": {} - }, - "pleaseChooseAPasscode": "Vennligst velg en passordkode", - "@pleaseChooseAPasscode": { - "type": "String", - "placeholders": {} - }, - "pleaseEnter4Digits": "Skriv inn fire sifre eller la feltet stå tomt for å deaktivere applåsen.", - "@pleaseEnter4Digits": { - "type": "String", - "placeholders": {} - }, - "pleaseEnterRecoveryKey": "Vennligst skriv inn gjenopprettingsnøkkelen din:", - "@pleaseEnterRecoveryKey": {}, - "pleaseEnterYourPin": "Vennligst skriv inn PIN-koden din", - "@pleaseEnterYourPin": { - "type": "String", - "placeholders": {} - }, - "globalChatId": "Global chat-ID", - "@globalChatId": {}, - "allRooms": "Alle gruppechatter", - "@allRooms": { - "type": "String", - "placeholders": {} - }, - "chatPermissions": "Chat tillatelser", - "@chatPermissions": {}, - "setPermissionsLevelDescription": "Vennligst velg en forhåndsdefinert rolle nedenfor eller skriv inn et tilpasset tillatelsesnivå mellom 0 og 100.", - "@setPermissionsLevelDescription": {}, - "commandHint_invite": "Inviter den gitte brukeren til dette rommet", - "@commandHint_invite": { - "type": "String", - "description": "Usage hint for the command /invite" - }, - "commandHint_join": "Bli med i det gitte rommet", - "@commandHint_join": { - "type": "String", - "description": "Usage hint for the command /join" - }, - "chats": "Chatter", - "@chats": { - "type": "String", - "placeholders": {} - }, - "yourChatBackupHasBeenSetUp": "Sikkerhetskopien av chatten din er konfigurert.", - "@yourChatBackupHasBeenSetUp": {}, - "discover": "Oppdag", - "@discover": {}, - "thereAreCountUsersBlocked": "Akkurat nå er det {count} blokkerte brukere.", - "@thereAreCountUsersBlocked": { - "type": "String", - "count": {} - }, - "sendCanceled": "Sending avbrutt", - "@sendCanceled": {}, - "loginWithMatrixId": "Logg på med Matrix ID", - "@loginWithMatrixId": {}, - "discoverHomeservers": "Oppdag hjemmeservere", - "@discoverHomeservers": {}, - "shareInviteLink": "Del invitasjonslenke", - "@shareInviteLink": {}, - "scanQrCode": "Skann QR-kode", - "@scanQrCode": {}, - "messagesStyle": "Meldinger:", - "@messagesStyle": {}, - "hydrate": "Gjenopprett fra sikkerhetskopifil", - "@hydrate": {}, - "oneClientLoggedOut": "En av klientene dine har blitt logget ut", - "@oneClientLoggedOut": {}, - "addAccount": "Legg til konto", - "@addAccount": {}, - "enableMultiAccounts": "(BETA) Aktiver flere kontoer på denne enheten", - "@enableMultiAccounts": {}, - "openInMaps": "Åpne i kart", - "@openInMaps": { - "type": "String", - "placeholders": {} - }, - "link": "Lenke", - "@link": {}, - "serverRequiresEmail": "Denne serveren må validere e-postadressen din for registrering.", - "@serverRequiresEmail": {}, - "or": "Eller", - "@or": { - "type": "String", - "placeholders": {} - }, - "previousAccount": "Forrige konto", - "@previousAccount": {}, - "widgetUrlError": "Dette er ikke en gyldig URL.", - "@widgetUrlError": {}, - "custom": "Egendefinert", - "@custom": {}, - "user": "Bruker", - "@user": {}, - "users": "Brukere", - "@users": {}, - "countInvited": "{count} inviterte", - "@countInvited": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "createGroup": "Opprett gruppe", - "@createGroup": {}, - "editRoomAliases": "Rediger rom aliaser", - "@editRoomAliases": { - "type": "String", - "placeholders": {} - }, - "accessAndVisibility": "Tilgang og synlighet", - "@accessAndVisibility": {}, - "hideInvalidOrUnknownMessageFormats": "Skjul ugyldige eller ukjente meldingsformater", - "@hideInvalidOrUnknownMessageFormats": {}, - "block": "Blokkér", - "@block": {}, - "blockedUsers": "Blokkerte brukere", - "@blockedUsers": {}, - "tryAgain": "Prøv igjen", - "@tryAgain": {}, - "invalidServerName": "Ugyldig servernavn", - "@invalidServerName": {}, - "messageInfo": "Meldingsinformasjon", - "@messageInfo": {}, - "time": "Tid", - "@time": {}, - "messageType": "Meldingstype", - "@messageType": {}, - "sender": "Avsender", - "@sender": {}, - "publish": "Publiser", - "@publish": {}, - "videoWithSize": "Video ({size})", - "@videoWithSize": { - "type": "String", - "placeholders": { - "size": { - "type": "String" - } - } - }, - "reportUser": "Rapporter bruker", - "@reportUser": {}, - "youHaveWithdrawnTheInvitationFor": "Du har trukket tilbake invitasjonen for {user}", - "@youHaveWithdrawnTheInvitationFor": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "youAcceptedTheInvitation": "👍 Du har akseptert invitasjonen", - "@youAcceptedTheInvitation": {}, - "youBannedUser": "Du stengte ute {user}", - "@youBannedUser": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "chatDescriptionHasBeenChanged": "Chatbeskrivelsen er endret", - "@chatDescriptionHasBeenChanged": {}, - "goToTheNewRoom": "Gå til det nye rommet", - "@goToTheNewRoom": { - "type": "String", - "placeholders": {} - }, - "screenSharingTitle": "skjermdeling", - "@screenSharingTitle": {}, - "screenSharingDetail": "Du deler skjermen din i FuffyChat", - "@screenSharingDetail": {}, - "callingPermissions": "Anropstillatelser", - "@callingPermissions": {}, - "callingAccountDetails": "Lar FluffyChat bruke den innebygde Android-oppringingsappen.", - "@callingAccountDetails": {}, - "appearOnTop": "Vis øverst", - "@appearOnTop": {}, - "otherCallingPermissions": "Mikrofon, kamera og andre FluffyChat-tillatelser", - "@otherCallingPermissions": {}, - "whyIsThisMessageEncrypted": "Hvorfor er denne meldingen uleselig?", - "@whyIsThisMessageEncrypted": {}, - "yourGlobalUserIdIs": "Din globale bruker-ID er: ", - "@yourGlobalUserIdIs": {}, - "searchChatsRooms": "Søk etter #chatter, @brukere...", - "@searchChatsRooms": {}, - "groupName": "Gruppenavn", - "@groupName": {}, - "createGroupAndInviteUsers": "Opprett en gruppe og inviter brukere", - "@createGroupAndInviteUsers": {}, - "invite": "Inviter", - "@invite": {}, - "wrongPinEntered": "Feil PIN-kode tastet inn! Prøv igjen om {seconds} sekunder...", - "@wrongPinEntered": { - "type": "String", - "placeholders": { - "seconds": { - "type": "int" - } - } - }, - "sendAsText": "Send som tekst", - "@sendAsText": { - "type": "String" - }, - "sendImages": "Send {count} bilde", - "@sendImages": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "presencesToggle": "Vis statusmeldinger fra andre brukere", - "@presencesToggle": { - "type": "String", - "placeholders": {} - }, - "voiceCall": "Taleanrop", - "@voiceCall": {}, - "accessAndVisibilityDescription": "Hvem som har lov til å bli med i denne chatten og hvordan chatten kan oppdages.", - "@accessAndVisibilityDescription": {}, - "calls": "Anrop", - "@calls": {}, - "customEmojisAndStickers": "Egendefinerte emojier og klistremerker", - "@customEmojisAndStickers": {}, - "oopsPushError": "Oops! Dessverre oppsto det en feil under oppsettet av push-varsler.", - "@oopsPushError": { - "type": "String", - "placeholders": {} - }, - "openVideoCamera": "Åpne kameraet for en video", - "@openVideoCamera": { - "type": "String", - "placeholders": {} - }, - "obtainingLocation": "Henter sted …", - "@obtainingLocation": { - "type": "String", - "placeholders": {} - }, - "noDatabaseEncryption": "Databasekryptering støttes ikke på denne plattformen", - "@noDatabaseEncryption": {}, - "changeGeneralChatSettings": "Endre generelle chatinnstillinger", - "@changeGeneralChatSettings": {}, - "changeTheChatPermissions": "Endre chattillatelsene", - "@changeTheChatPermissions": {} + "@@last_modified": "2021-08-14 12:41:09.967351", + "about": "Om", + "@about": { + "type": "String", + "placeholders": {} + }, + "accept": "Godta", + "@accept": { + "type": "String", + "placeholders": {} + }, + "acceptedTheInvitation": "👍{username} godtok invitasjonen", + "@acceptedTheInvitation": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "account": "Konto", + "@account": { + "type": "String", + "placeholders": {} + }, + "activatedEndToEndEncryption": "{username} skrudde på ende-til-ende -kryptering", + "@activatedEndToEndEncryption": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "admin": "Administrator", + "@admin": { + "type": "String", + "placeholders": {} + }, + "alias": "alias", + "@alias": { + "type": "String", + "placeholders": {} + }, + "all": "Alle", + "@all": { + "type": "String", + "placeholders": {} + }, + "answeredTheCall": "{senderName} besvarte anropet", + "@answeredTheCall": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "anyoneCanJoin": "Hvem som helst kan delta", + "@anyoneCanJoin": { + "type": "String", + "placeholders": {} + }, + "appLock": "Programlås", + "@appLock": { + "type": "String", + "placeholders": {} + }, + "archive": "Arkiv", + "@archive": { + "type": "String", + "placeholders": {} + }, + "areGuestsAllowedToJoin": "Skal gjester tillates å ta del", + "@areGuestsAllowedToJoin": { + "type": "String", + "placeholders": {} + }, + "areYouSure": "Er du sikker?", + "@areYouSure": { + "type": "String", + "placeholders": {} + }, + "areYouSureYouWantToLogout": "Er du sikker på at du vil logge ut?", + "@areYouSureYouWantToLogout": { + "type": "String", + "placeholders": {} + }, + "askSSSSSign": "For å kunne signere den andre personen, skriv inn ditt sikre lagerpassord eller gjenopprettingsnøkkel.", + "@askSSSSSign": { + "type": "String", + "placeholders": {} + }, + "askVerificationRequest": "Godta denne bekreftelsesforespørselen fra {username}?", + "@askVerificationRequest": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "banFromChat": "Bannlys fra sludring", + "@banFromChat": { + "type": "String", + "placeholders": {} + }, + "banned": "Bannlyst", + "@banned": { + "type": "String", + "placeholders": {} + }, + "bannedUser": "{username} bannlyste {targetName}", + "@bannedUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "blockDevice": "Blokker enhet", + "@blockDevice": { + "type": "String", + "placeholders": {} + }, + "botMessages": "Bot-meldinger", + "@botMessages": { + "type": "String", + "placeholders": {} + }, + "cancel": "Avbryt", + "@cancel": { + "type": "String", + "placeholders": {} + }, + "changeDeviceName": "Endre enhetsnavn", + "@changeDeviceName": { + "type": "String", + "placeholders": {} + }, + "changedTheChatAvatar": "{username} endret sludreavatar", + "@changedTheChatAvatar": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheChatDescriptionTo": "{username} endret sludrebeskrivelse til: «{description}»", + "@changedTheChatDescriptionTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "description": { + "type": "String" + } + } + }, + "changedTheChatNameTo": "{username} endret sludringsnavn til: «{chatname}»", + "@changedTheChatNameTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "chatname": { + "type": "String" + } + } + }, + "changedTheChatPermissions": "{username} endret sludretilgangene", + "@changedTheChatPermissions": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheDisplaynameTo": "{username} endret visningsnavn til: {displayname}", + "@changedTheDisplaynameTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "displayname": { + "type": "String" + } + } + }, + "changedTheGuestAccessRules": "{username} endret gjestetilgangsreglene", + "@changedTheGuestAccessRules": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheGuestAccessRulesTo": "{username} endret gjestetilgangsregler til: {rules}", + "@changedTheGuestAccessRulesTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "rules": { + "type": "String" + } + } + }, + "changedTheHistoryVisibility": "{username} endret historikksynlighet", + "@changedTheHistoryVisibility": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheHistoryVisibilityTo": "{username} endret historikksynlighet til: {rules}", + "@changedTheHistoryVisibilityTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "rules": { + "type": "String" + } + } + }, + "changedTheJoinRules": "{username} endret tilgangsreglene", + "@changedTheJoinRules": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheJoinRulesTo": "{username} endret tilgangsreglene til: {joinRules}", + "@changedTheJoinRulesTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "joinRules": { + "type": "String" + } + } + }, + "changedTheProfileAvatar": "{username} endret avataren sin", + "@changedTheProfileAvatar": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheRoomAliases": "{username} endret rom-aliasene", + "@changedTheRoomAliases": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheRoomInvitationLink": "{username} endret invitasjonslenken", + "@changedTheRoomInvitationLink": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changePassword": "Endre passord", + "@changePassword": { + "type": "String", + "placeholders": {} + }, + "changeTheHomeserver": "Endre hjemmetjener", + "@changeTheHomeserver": { + "type": "String", + "placeholders": {} + }, + "changeTheme": "Endre din stil", + "@changeTheme": { + "type": "String", + "placeholders": {} + }, + "changeTheNameOfTheGroup": "Endre gruppens navn", + "@changeTheNameOfTheGroup": { + "type": "String", + "placeholders": {} + }, + "channelCorruptedDecryptError": "Krypteringen er skadet", + "@channelCorruptedDecryptError": { + "type": "String", + "placeholders": {} + }, + "chat": "Sludring", + "@chat": { + "type": "String", + "placeholders": {} + }, + "chatBackup": "Sludringssikkerhetskopi", + "@chatBackup": { + "type": "String", + "placeholders": {} + }, + "chatBackupDescription": "Din sludringssikkerhetskopi er sikret med en sikkerhetsnøkkel. Ikke mist den.", + "@chatBackupDescription": { + "type": "String", + "placeholders": {} + }, + "chatDetails": "Sludringsdetaljer", + "@chatDetails": { + "type": "String", + "placeholders": {} + }, + "chooseAStrongPassword": "Velg et sterkt passord", + "@chooseAStrongPassword": { + "type": "String", + "placeholders": {} + }, + "close": "Lukk", + "@close": { + "type": "String", + "placeholders": {} + }, + "compareEmojiMatch": "Sammenlign og forsikre at følgende smilefjes samsvarer med de på den andre enheten:", + "@compareEmojiMatch": { + "type": "String", + "placeholders": {} + }, + "compareNumbersMatch": "Sammenlign og forsikre at følgende tall samsvarer med de på den andre enheten:", + "@compareNumbersMatch": { + "type": "String", + "placeholders": {} + }, + "configureChat": "Sett opp sludring", + "@configureChat": { + "type": "String", + "placeholders": {} + }, + "confirm": "Bekreft", + "@confirm": { + "type": "String", + "placeholders": {} + }, + "connect": "Koble til", + "@connect": { + "type": "String", + "placeholders": {} + }, + "contactHasBeenInvitedToTheGroup": "Kontakt invitert til gruppen", + "@contactHasBeenInvitedToTheGroup": { + "type": "String", + "placeholders": {} + }, + "containsDisplayName": "Inneholder visningsnavn", + "@containsDisplayName": { + "type": "String", + "placeholders": {} + }, + "containsUserName": "Inneholder brukernavn", + "@containsUserName": { + "type": "String", + "placeholders": {} + }, + "contentHasBeenReported": "Innholdet har blitt rapportert til tjeneradministratorene", + "@contentHasBeenReported": { + "type": "String", + "placeholders": {} + }, + "copiedToClipboard": "Kopiert til utklippstavle", + "@copiedToClipboard": { + "type": "String", + "placeholders": {} + }, + "copy": "Kopier", + "@copy": { + "type": "String", + "placeholders": {} + }, + "copyToClipboard": "Kopier til utklippstavle", + "@copyToClipboard": { + "type": "String", + "placeholders": {} + }, + "couldNotDecryptMessage": "Kunne ikke dekryptere melding: {error}", + "@couldNotDecryptMessage": { + "type": "String", + "placeholders": { + "error": { + "type": "String" + } + } + }, + "countParticipants": "{count} deltagere", + "@countParticipants": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "create": "Opprett", + "@create": { + "type": "String", + "placeholders": {} + }, + "createdTheChat": "{username} opprettet sludringen", + "@createdTheChat": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "currentlyActive": "Aktiv nå", + "@currentlyActive": { + "type": "String", + "placeholders": {} + }, + "darkTheme": "Mørk", + "@darkTheme": { + "type": "String", + "placeholders": {} + }, + "dateAndTimeOfDay": "{timeOfDay}, {date}", + "@dateAndTimeOfDay": { + "type": "String", + "placeholders": { + "date": { + "type": "String" + }, + "timeOfDay": { + "type": "String" + } + } + }, + "dateWithoutYear": "{day} {month}", + "@dateWithoutYear": { + "type": "String", + "placeholders": { + "month": { + "type": "String" + }, + "day": { + "type": "String" + } + } + }, + "dateWithYear": "{day} {month} {year}", + "@dateWithYear": { + "type": "String", + "placeholders": { + "year": { + "type": "String" + }, + "month": { + "type": "String" + }, + "day": { + "type": "String" + } + } + }, + "deactivateAccountWarning": "Dette vil skru av din brukerkonto for godt, og kan ikke angres! Er du sikker?", + "@deactivateAccountWarning": { + "type": "String", + "placeholders": {} + }, + "defaultPermissionLevel": "Forvalgt tilgangsnivå", + "@defaultPermissionLevel": { + "type": "String", + "placeholders": {} + }, + "delete": "Slett", + "@delete": { + "type": "String", + "placeholders": {} + }, + "deleteAccount": "Slett konto", + "@deleteAccount": { + "type": "String", + "placeholders": {} + }, + "deleteMessage": "Slett melding", + "@deleteMessage": { + "type": "String", + "placeholders": {} + }, + "device": "Enhet", + "@device": { + "type": "String", + "placeholders": {} + }, + "deviceId": "Enhets-ID", + "@deviceId": { + "type": "String", + "placeholders": {} + }, + "devices": "Enheter", + "@devices": { + "type": "String", + "placeholders": {} + }, + "directChats": "Direktesludringer", + "@directChats": { + "type": "String", + "placeholders": {} + }, + "displaynameHasBeenChanged": "Visningsnavn endret", + "@displaynameHasBeenChanged": { + "type": "String", + "placeholders": {} + }, + "downloadFile": "Last ned fil", + "@downloadFile": { + "type": "String", + "placeholders": {} + }, + "edit": "Rediger", + "@edit": { + "type": "String", + "placeholders": {} + }, + "editBlockedServers": "Rediger blokkerte tjenere", + "@editBlockedServers": { + "type": "String", + "placeholders": {} + }, + "editDisplayname": "Rediger visningsnavn", + "@editDisplayname": { + "type": "String", + "placeholders": {} + }, + "editRoomAvatar": "Rediger romavatar", + "@editRoomAvatar": { + "type": "String", + "placeholders": {} + }, + "emoteExists": "Smilefjeset finnes allerede!", + "@emoteExists": { + "type": "String", + "placeholders": {} + }, + "emoteInvalid": "Ugyldig smilefjes-kode!", + "@emoteInvalid": { + "type": "String", + "placeholders": {} + }, + "emotePacks": "Smilefjespakker for rommet", + "@emotePacks": { + "type": "String", + "placeholders": {} + }, + "emoteSettings": "Smilefjes-innstillinger", + "@emoteSettings": { + "type": "String", + "placeholders": {} + }, + "emoteShortcode": "Smilefjes-kode", + "@emoteShortcode": { + "type": "String", + "placeholders": {} + }, + "emoteWarnNeedToPick": "Du må velge en smilefjes-kode og et bilde!", + "@emoteWarnNeedToPick": { + "type": "String", + "placeholders": {} + }, + "emptyChat": "Tom sludring", + "@emptyChat": { + "type": "String", + "placeholders": {} + }, + "enableEmotesGlobally": "Skru på smilefjespakke for hele programmet", + "@enableEmotesGlobally": { + "type": "String", + "placeholders": {} + }, + "enableEncryption": "Skru på kryptering", + "@enableEncryption": { + "type": "String", + "placeholders": {} + }, + "enableEncryptionWarning": "Du vil ikke kunne skru av kryptering lenger. Er du sikker?", + "@enableEncryptionWarning": { + "type": "String", + "placeholders": {} + }, + "encrypted": "Kryptert", + "@encrypted": { + "type": "String", + "placeholders": {} + }, + "encryption": "Kryptering", + "@encryption": { + "type": "String", + "placeholders": {} + }, + "encryptionNotEnabled": "Kryptering er ikke påskrudd", + "@encryptionNotEnabled": { + "type": "String", + "placeholders": {} + }, + "endedTheCall": "{senderName} avsluttet samtalen", + "@endedTheCall": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "enterAnEmailAddress": "Skriv inn en e-postadresse", + "@enterAnEmailAddress": { + "type": "String", + "placeholders": {} + }, + "enterYourHomeserver": "Skriv inn din hjemmetjener", + "@enterYourHomeserver": { + "type": "String", + "placeholders": {} + }, + "everythingReady": "Alt er klart!", + "@everythingReady": { + "type": "String", + "placeholders": {} + }, + "extremeOffensive": "Veldig", + "@extremeOffensive": { + "type": "String", + "placeholders": {} + }, + "fileName": "Filnavn", + "@fileName": { + "type": "String", + "placeholders": {} + }, + "fluffychat": "FluffyChat", + "@fluffychat": { + "type": "String", + "placeholders": {} + }, + "fontSize": "Skriftstørrelse", + "@fontSize": { + "type": "String", + "placeholders": {} + }, + "forward": "Videre", + "@forward": { + "type": "String", + "placeholders": {} + }, + "fromJoining": "Fra å ta del", + "@fromJoining": { + "type": "String", + "placeholders": {} + }, + "fromTheInvitation": "Fra invitasjonen", + "@fromTheInvitation": { + "type": "String", + "placeholders": {} + }, + "group": "Gruppe", + "@group": { + "type": "String", + "placeholders": {} + }, + "groupIsPublic": "Gruppen er offentlig", + "@groupIsPublic": { + "type": "String", + "placeholders": {} + }, + "groups": "Grupper", + "@groups": { + "type": "String", + "placeholders": {} + }, + "groupWith": "Gruppe med {displayname}", + "@groupWith": { + "type": "String", + "placeholders": { + "displayname": { + "type": "String" + } + } + }, + "guestsAreForbidden": "Gjester forbudt", + "@guestsAreForbidden": { + "type": "String", + "placeholders": {} + }, + "guestsCanJoin": "Gjester kan ta del", + "@guestsCanJoin": { + "type": "String", + "placeholders": {} + }, + "hasWithdrawnTheInvitationFor": "{username} har trukket tilbake invitasjonen til {targetName}", + "@hasWithdrawnTheInvitationFor": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "help": "Hjelp", + "@help": { + "type": "String", + "placeholders": {} + }, + "hideRedactedEvents": "Skjul tilbaketrukne hendelser", + "@hideRedactedEvents": { + "type": "String", + "placeholders": {} + }, + "hideUnknownEvents": "Skjul ukjente hendelser", + "@hideUnknownEvents": { + "type": "String", + "placeholders": {} + }, + "howOffensiveIsThisContent": "Hvor støtende er innholdet?", + "@howOffensiveIsThisContent": { + "type": "String", + "placeholders": {} + }, + "id": "ID", + "@id": { + "type": "String", + "placeholders": {} + }, + "identity": "Identitet", + "@identity": { + "type": "String", + "placeholders": {} + }, + "ignore": "Ignorer", + "@ignore": { + "type": "String", + "placeholders": {} + }, + "ignoredUsers": "Ignorerte brukere", + "@ignoredUsers": { + "type": "String", + "placeholders": {} + }, + "iHaveClickedOnLink": "Jeg har klikket på lenken", + "@iHaveClickedOnLink": { + "type": "String", + "placeholders": {} + }, + "incorrectPassphraseOrKey": "Feilaktig passord eller gjenopprettingsnøkkel", + "@incorrectPassphraseOrKey": { + "type": "String", + "placeholders": {} + }, + "inoffensive": "Harmløst", + "@inoffensive": { + "type": "String", + "placeholders": {} + }, + "inviteContact": "Inviter kontakt", + "@inviteContact": { + "type": "String", + "placeholders": {} + }, + "inviteContactToGroup": "Inviter kontakt til {groupName}", + "@inviteContactToGroup": { + "type": "String", + "placeholders": { + "groupName": { + "type": "String" + } + } + }, + "invited": "Invitert", + "@invited": { + "type": "String", + "placeholders": {} + }, + "invitedUser": "{username} inviterte {targetName}", + "@invitedUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "invitedUsersOnly": "Kun inviterte brukere", + "@invitedUsersOnly": { + "type": "String", + "placeholders": {} + }, + "inviteForMe": "Invitasjon for meg", + "@inviteForMe": { + "type": "String", + "placeholders": {} + }, + "inviteText": "{username} har invitert deg til FluffyChat. \n1. Installer FluffyChat: https://fluffychat.im \n2. Registrer deg eller logg inn \n3. Åpne invitasjonslenken: {link}", + "@inviteText": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "link": { + "type": "String" + } + } + }, + "isTyping": "skriver…", + "@isTyping": { + "type": "String", + "placeholders": {} + }, + "joinedTheChat": "{username}ble med i samtalen", + "@joinedTheChat": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "joinRoom": "Ta del i rom", + "@joinRoom": { + "type": "String", + "placeholders": {} + }, + "kicked": "{username} kastet ut {targetName}", + "@kicked": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "kickedAndBanned": "{username} kastet ut og bannlyste {targetName}", + "@kickedAndBanned": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "kickFromChat": "Kast ut av sludringen", + "@kickFromChat": { + "type": "String", + "placeholders": {} + }, + "lastActiveAgo": "Sist aktiv: {localizedTimeShort}", + "@lastActiveAgo": { + "type": "String", + "placeholders": { + "localizedTimeShort": { + "type": "String" + } + } + }, + "leave": "Forlat", + "@leave": { + "type": "String", + "placeholders": {} + }, + "leftTheChat": "Forlat sludringen", + "@leftTheChat": { + "type": "String", + "placeholders": {} + }, + "license": "Lisens", + "@license": { + "type": "String", + "placeholders": {} + }, + "lightTheme": "Lys", + "@lightTheme": { + "type": "String", + "placeholders": {} + }, + "loadCountMoreParticipants": "Last inn {count} deltagere til", + "@loadCountMoreParticipants": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "loadingPleaseWait": "Laster inn… Vent.", + "@loadingPleaseWait": { + "type": "String", + "placeholders": {} + }, + "loadMore": "Last inn mer…", + "@loadMore": { + "type": "String", + "placeholders": {} + }, + "login": "Logg inn", + "@login": { + "type": "String", + "placeholders": {} + }, + "logInTo": "Logg inn på {homeserver}", + "@logInTo": { + "type": "String", + "placeholders": { + "homeserver": { + "type": "String" + } + } + }, + "logout": "Logg ut", + "@logout": { + "type": "String", + "placeholders": {} + }, + "memberChanges": "Medlemsendringer", + "@memberChanges": { + "type": "String", + "placeholders": {} + }, + "mention": "Nevn", + "@mention": { + "type": "String", + "placeholders": {} + }, + "messages": "Meldinger", + "@messages": { + "type": "String", + "placeholders": {} + }, + "moderator": "Moderator", + "@moderator": { + "type": "String", + "placeholders": {} + }, + "muteChat": "Forstum sludring", + "@muteChat": { + "type": "String", + "placeholders": {} + }, + "needPantalaimonWarning": "Merk at du trenger Pantalaimon for å bruke ende-til-ende -kryptering inntil videre.", + "@needPantalaimonWarning": { + "type": "String", + "placeholders": {} + }, + "newChat": "Ny sludring", + "@newChat": { + "type": "String", + "placeholders": {} + }, + "newMessageInFluffyChat": "Ny melding i FluffyChat", + "@newMessageInFluffyChat": { + "type": "String", + "placeholders": {} + }, + "newVerificationRequest": "Ny bekreftelsesforespørsel!", + "@newVerificationRequest": { + "type": "String", + "placeholders": {} + }, + "next": "Neste", + "@next": { + "type": "String", + "placeholders": {} + }, + "no": "Nei", + "@no": { + "type": "String", + "placeholders": {} + }, + "noEmotesFound": "Fant ingen smilefjes. 😕", + "@noEmotesFound": { + "type": "String", + "placeholders": {} + }, + "noGoogleServicesWarning": "Bruk https://microg.org/ for å få Google-tjenester (uten at det går ut over personvernet) for å få push-merknader i FluffyChat:", + "@noGoogleServicesWarning": { + "type": "String", + "placeholders": {} + }, + "none": "Ingen", + "@none": { + "type": "String", + "placeholders": {} + }, + "noPasswordRecoveryDescription": "Du har ikke lagt til en måte å gjenopprette passordet ditt på.", + "@noPasswordRecoveryDescription": { + "type": "String", + "placeholders": {} + }, + "noPermission": "Ingen tilgang", + "@noPermission": { + "type": "String", + "placeholders": {} + }, + "noRoomsFound": "Fant ingen rom …", + "@noRoomsFound": { + "type": "String", + "placeholders": {} + }, + "notifications": "Merknader", + "@notifications": { + "type": "String", + "placeholders": {} + }, + "notificationsEnabledForThisAccount": "Merknader påslått for denne kontoen", + "@notificationsEnabledForThisAccount": { + "type": "String", + "placeholders": {} + }, + "numUsersTyping": "{count} brukere skriver …", + "@numUsersTyping": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "offensive": "Støtende", + "@offensive": { + "type": "String", + "placeholders": {} + }, + "offline": "Frakoblet", + "@offline": { + "type": "String", + "placeholders": {} + }, + "ok": "OK", + "@ok": { + "type": "String", + "placeholders": {} + }, + "online": "Pålogget", + "@online": { + "type": "String", + "placeholders": {} + }, + "onlineKeyBackupEnabled": "Nettbasert sikkerhetskopiering av nøkler på", + "@onlineKeyBackupEnabled": { + "type": "String", + "placeholders": {} + }, + "oopsSomethingWentWrong": "Oida, noe gikk galt …", + "@oopsSomethingWentWrong": { + "type": "String", + "placeholders": {} + }, + "openAppToReadMessages": "Åpne programmet for å lese meldinger", + "@openAppToReadMessages": { + "type": "String", + "placeholders": {} + }, + "openCamera": "Åpne kamera", + "@openCamera": { + "type": "String", + "placeholders": {} + }, + "participant": "Deltager", + "@participant": { + "type": "String", + "placeholders": {} + }, + "passphraseOrKey": "Passord eller gjenopprettingsnøkkel", + "@passphraseOrKey": { + "type": "String", + "placeholders": {} + }, + "password": "Passord", + "@password": { + "type": "String", + "placeholders": {} + }, + "passwordForgotten": "Passord glemt", + "@passwordForgotten": { + "type": "String", + "placeholders": {} + }, + "passwordHasBeenChanged": "Passord endret", + "@passwordHasBeenChanged": { + "type": "String", + "placeholders": {} + }, + "passwordRecovery": "Passordgjenoppretting", + "@passwordRecovery": { + "type": "String", + "placeholders": {} + }, + "pickImage": "Velg bilde", + "@pickImage": { + "type": "String", + "placeholders": {} + }, + "pin": "Fest", + "@pin": { + "type": "String", + "placeholders": {} + }, + "play": "Spill av {fileName}", + "@play": { + "type": "String", + "placeholders": { + "fileName": { + "type": "String" + } + } + }, + "pleaseClickOnLink": "Klikk på lenken i e-posten og fortsett.", + "@pleaseClickOnLink": { + "type": "String", + "placeholders": {} + }, + "pleaseEnterYourPassword": "Skriv inn passordet ditt", + "@pleaseEnterYourPassword": { + "type": "String", + "placeholders": {} + }, + "pleaseEnterYourUsername": "Skriv inn brukernavnet ditt", + "@pleaseEnterYourUsername": { + "type": "String", + "placeholders": {} + }, + "pleaseFollowInstructionsOnWeb": "Følg instruksen på nettsiden og trykk på «Neste».", + "@pleaseFollowInstructionsOnWeb": { + "type": "String", + "placeholders": {} + }, + "privacy": "Personvern", + "@privacy": { + "type": "String", + "placeholders": {} + }, + "publicRooms": "Offentlige rom", + "@publicRooms": { + "type": "String", + "placeholders": {} + }, + "pushRules": "Dyttingsregler", + "@pushRules": { + "type": "String", + "placeholders": {} + }, + "reason": "Grunn", + "@reason": { + "type": "String", + "placeholders": {} + }, + "recording": "Opptak", + "@recording": { + "type": "String", + "placeholders": {} + }, + "redactedAnEvent": "{username} har trukket tilbake en hendelse", + "@redactedAnEvent": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "reject": "Avslå", + "@reject": { + "type": "String", + "placeholders": {} + }, + "rejectedTheInvitation": "{username} avslo invitasjonen", + "@rejectedTheInvitation": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "rejoin": "Ta del igjen", + "@rejoin": { + "type": "String", + "placeholders": {} + }, + "remove": "Fjern", + "@remove": { + "type": "String", + "placeholders": {} + }, + "removeAllOtherDevices": "Fjern alle andre enheter", + "@removeAllOtherDevices": { + "type": "String", + "placeholders": {} + }, + "removedBy": "Fjernet av {username}", + "@removedBy": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "removeDevice": "Fjern enhet", + "@removeDevice": { + "type": "String", + "placeholders": {} + }, + "unbanFromChat": "Opphev bannlysning", + "@unbanFromChat": { + "type": "String", + "placeholders": {} + }, + "replaceRoomWithNewerVersion": "Erstatt rom med nyere versjon", + "@replaceRoomWithNewerVersion": { + "type": "String", + "placeholders": {} + }, + "reply": "Svar", + "@reply": { + "type": "String", + "placeholders": {} + }, + "reportMessage": "Rapporter melding", + "@reportMessage": { + "type": "String", + "placeholders": {} + }, + "requestPermission": "Forespør tilgang", + "@requestPermission": { + "type": "String", + "placeholders": {} + }, + "roomHasBeenUpgraded": "Rommet har blitt oppgradert", + "@roomHasBeenUpgraded": { + "type": "String", + "placeholders": {} + }, + "search": "Søk", + "@search": { + "type": "String", + "placeholders": {} + }, + "security": "Sikkerhet", + "@security": { + "type": "String", + "placeholders": {} + }, + "seenByUser": "Sett av {username}", + "@seenByUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "send": "Send", + "@send": { + "type": "String", + "placeholders": {} + }, + "sendAMessage": "Send en melding", + "@sendAMessage": { + "type": "String", + "placeholders": {} + }, + "sendAudio": "Send lyd", + "@sendAudio": { + "type": "String", + "placeholders": {} + }, + "sendFile": "Send fil", + "@sendFile": { + "type": "String", + "placeholders": {} + }, + "sendImage": "Send bilde", + "@sendImage": { + "type": "String", + "placeholders": {} + }, + "sendMessages": "Send meldinger", + "@sendMessages": { + "type": "String", + "placeholders": {} + }, + "sendOriginal": "Send original", + "@sendOriginal": { + "type": "String", + "placeholders": {} + }, + "sendVideo": "Send video", + "@sendVideo": { + "type": "String", + "placeholders": {} + }, + "sentAFile": "{username} sendte en fil", + "@sentAFile": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentAnAudio": "{username} sendte lyd", + "@sentAnAudio": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentAPicture": "{username} sendte et bilde", + "@sentAPicture": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentASticker": "{username} sendte et klistremerke", + "@sentASticker": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentAVideo": "{username} sendte en video", + "@sentAVideo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentCallInformations": "{senderName} sendte anropsinfo", + "@sentCallInformations": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "setCustomEmotes": "Sett tilpassede smilefjes", + "@setCustomEmotes": { + "type": "String", + "placeholders": {} + }, + "setInvitationLink": "Sett invitasjonslenke", + "@setInvitationLink": { + "type": "String", + "placeholders": {} + }, + "setPermissionsLevel": "Sett tilgangsnivå", + "@setPermissionsLevel": { + "type": "String", + "placeholders": {} + }, + "setStatus": "Angi status", + "@setStatus": { + "type": "String", + "placeholders": {} + }, + "settings": "Innstilinger", + "@settings": { + "type": "String", + "placeholders": {} + }, + "share": "Del", + "@share": { + "type": "String", + "placeholders": {} + }, + "sharedTheLocation": "{username} delte posisjonen", + "@sharedTheLocation": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "skip": "Hopp over", + "@skip": { + "type": "String", + "placeholders": {} + }, + "sourceCode": "Kildekode", + "@sourceCode": { + "type": "String", + "placeholders": {} + }, + "startedACall": "{senderName} startet en samtale", + "@startedACall": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "status": "Status", + "@status": { + "type": "String", + "placeholders": {} + }, + "statusExampleMessage": "Hvordan har du det i dag?", + "@statusExampleMessage": { + "type": "String", + "placeholders": {} + }, + "submit": "Send inn", + "@submit": { + "type": "String", + "placeholders": {} + }, + "systemTheme": "System", + "@systemTheme": { + "type": "String", + "placeholders": {} + }, + "theyDontMatch": "Samsvarer ikke", + "@theyDontMatch": { + "type": "String", + "placeholders": {} + }, + "theyMatch": "Samsvarer", + "@theyMatch": { + "type": "String", + "placeholders": {} + }, + "title": "FluffyChat", + "@title": { + "description": "Title for the application", + "type": "String", + "placeholders": {} + }, + "tooManyRequestsWarning": "For mange forespørsler. Prøv igjen senere!", + "@tooManyRequestsWarning": { + "type": "String", + "placeholders": {} + }, + "transferFromAnotherDevice": "Overfør fra en annen enhet", + "@transferFromAnotherDevice": { + "type": "String", + "placeholders": {} + }, + "tryToSendAgain": "Prøv å sende igjen", + "@tryToSendAgain": { + "type": "String", + "placeholders": {} + }, + "unavailable": "Utilgjengelig", + "@unavailable": { + "type": "String", + "placeholders": {} + }, + "unbannedUser": "{username} opphevet bannlysning av {targetName}", + "@unbannedUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "unblockDevice": "Opphev blokkering av enhet", + "@unblockDevice": { + "type": "String", + "placeholders": {} + }, + "unknownDevice": "Ukjent enhet", + "@unknownDevice": { + "type": "String", + "placeholders": {} + }, + "unknownEncryptionAlgorithm": "Ukjent krypteringsalgoritme", + "@unknownEncryptionAlgorithm": { + "type": "String", + "placeholders": {} + }, + "unknownEvent": "Ukjent hendelse «{type}»", + "@unknownEvent": { + "type": "String", + "placeholders": { + "type": { + "type": "String" + } + } + }, + "unmuteChat": "Opphev forstumming av sludring", + "@unmuteChat": { + "type": "String", + "placeholders": {} + }, + "unpin": "Løsne", + "@unpin": { + "type": "String", + "placeholders": {} + }, + "unreadChats": "{unreadCount, plural, other{{unreadCount} uleste sludringer}}", + "@unreadChats": { + "type": "String", + "placeholders": { + "unreadCount": { + "type": "int" + } + } + }, + "userAndOthersAreTyping": "{username} og {count} andre skriver…", + "@userAndOthersAreTyping": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "count": { + "type": "int" + } + } + }, + "userAndUserAreTyping": "{username} og {username2} skriver…", + "@userAndUserAreTyping": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "username2": { + "type": "String" + } + } + }, + "userIsTyping": "{username} skriver…", + "@userIsTyping": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "userLeftTheChat": "{username} har forlatt sludringen", + "@userLeftTheChat": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "username": "Brukernavn", + "@username": { + "type": "String", + "placeholders": {} + }, + "userSentUnknownEvent": "{username} sendte en {type}-hendelse", + "@userSentUnknownEvent": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "type": { + "type": "String" + } + } + }, + "verify": "Bekreft", + "@verify": { + "type": "String", + "placeholders": {} + }, + "verifyStart": "Start bekreftelse", + "@verifyStart": { + "type": "String", + "placeholders": {} + }, + "verifySuccess": "Du har bekreftet!", + "@verifySuccess": { + "type": "String", + "placeholders": {} + }, + "verifyTitle": "Bekrefter annen konto", + "@verifyTitle": { + "type": "String", + "placeholders": {} + }, + "videoCall": "Videosamtale", + "@videoCall": { + "type": "String", + "placeholders": {} + }, + "visibilityOfTheChatHistory": "Sludrehistorikkens synlighet", + "@visibilityOfTheChatHistory": { + "type": "String", + "placeholders": {} + }, + "visibleForAllParticipants": "Synlig for alle deltagere", + "@visibleForAllParticipants": { + "type": "String", + "placeholders": {} + }, + "visibleForEveryone": "Synlig for alle", + "@visibleForEveryone": { + "type": "String", + "placeholders": {} + }, + "voiceMessage": "Lydmelding", + "@voiceMessage": { + "type": "String", + "placeholders": {} + }, + "waitingPartnerNumbers": "Venter på at samtalepartner skal godta tallene …", + "@waitingPartnerNumbers": { + "type": "String", + "placeholders": {} + }, + "wallpaper": "Bakgrunnsbilde", + "@wallpaper": { + "type": "String", + "placeholders": {} + }, + "warning": "Advarsel!", + "@warning": { + "type": "String", + "placeholders": {} + }, + "weSentYouAnEmail": "Du har fått en e-post", + "@weSentYouAnEmail": { + "type": "String", + "placeholders": {} + }, + "whoCanPerformWhichAction": "Hvem kan utføre hvilken handling", + "@whoCanPerformWhichAction": { + "type": "String", + "placeholders": {} + }, + "whoIsAllowedToJoinThisGroup": "Hvem tillates å ta del i denne gruppen", + "@whoIsAllowedToJoinThisGroup": { + "type": "String", + "placeholders": {} + }, + "whyDoYouWantToReportThis": "Hvorfor ønsker du å rapportere dette?", + "@whyDoYouWantToReportThis": { + "type": "String", + "placeholders": {} + }, + "withTheseAddressesRecoveryDescription": "Med disse adressene kan du gjenopprette passordet ditt hvis du trenger det.", + "@withTheseAddressesRecoveryDescription": { + "type": "String", + "placeholders": {} + }, + "writeAMessage": "Skriv en melding …", + "@writeAMessage": { + "type": "String", + "placeholders": {} + }, + "yes": "Ja", + "@yes": { + "type": "String", + "placeholders": {} + }, + "you": "Deg", + "@you": { + "type": "String", + "placeholders": {} + }, + "youAreNoLongerParticipatingInThisChat": "Du deltar ikke lenger i denne sludringen", + "@youAreNoLongerParticipatingInThisChat": { + "type": "String", + "placeholders": {} + }, + "youHaveBeenBannedFromThisChat": "Du har blitt bannlyst fra denne sludringen", + "@youHaveBeenBannedFromThisChat": { + "type": "String", + "placeholders": {} + }, + "yourPublicKey": "Din offentlige nøkkel", + "@yourPublicKey": { + "type": "String", + "placeholders": {} + }, + "toggleUnread": "Marker som lest/ulest", + "@toggleUnread": { + "type": "String", + "placeholders": {} + }, + "toggleMuted": "Veksle forstumming", + "@toggleMuted": { + "type": "String", + "placeholders": {} + }, + "toggleFavorite": "Veksle favorittmerking", + "@toggleFavorite": { + "type": "String", + "placeholders": {} + }, + "noConnectionToTheServer": "Ingen tilkobling til tjeneren", + "@noConnectionToTheServer": { + "type": "String", + "placeholders": {} + }, + "addEmail": "Legg til e-post", + "@addEmail": { + "type": "String", + "placeholders": {} + }, + "repeatPassword": "Gjenta passord", + "@repeatPassword": {}, + "addToSpace": "Legg til space", + "@addToSpace": {}, + "allChats": "Alle samtaler", + "@allChats": { + "type": "String", + "placeholders": {} + }, + "autoplayImages": "Automatisk spill av animerte stickers og emojis", + "@autoplayImages": { + "type": "String", + "placeholder": {} + }, + "badServerLoginTypesException": "Denne hjemme serveren støtter følgende innloggings-typer:\n{serverVersions}\nMen denne applikasjonen støtter kun:\n{supportedVersions}", + "@badServerLoginTypesException": { + "type": "String", + "placeholders": { + "serverVersions": { + "type": "String" + }, + "supportedVersions": { + "type": "String" + } + } + }, + "sendOnEnter": "Trykk på enter for å sende", + "@sendOnEnter": {}, + "badServerVersionsException": "Denne hjemme serveren støtter følgene Spec-versjoner:\n{serverVersions}\nMen denne applikasjonen støtter kun {supportedVersions}", + "@badServerVersionsException": { + "type": "String", + "placeholders": { + "serverVersions": { + "type": "String" + }, + "supportedVersions": { + "type": "String" + } + } + }, + "blocked": "Blokkert", + "@blocked": { + "type": "String", + "placeholders": {} + }, + "cantOpenUri": "Kan ikke åpne URI {uri}", + "@cantOpenUri": { + "type": "String", + "placeholders": { + "uri": { + "type": "String" + } + } + }, + "changeYourAvatar": "Bytt profilbilde", + "@changeYourAvatar": { + "type": "String", + "placeholders": {} + }, + "notAnImage": "Ikke en bildefil.", + "@notAnImage": {}, + "importNow": "Importer nå", + "@importNow": {}, + "hugContent": "{senderName} klemmer deg", + "@hugContent": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "space": "Område", + "@space": {}, + "spaces": "Områder", + "@spaces": {}, + "cuddleContent": "{senderName} koser med deg", + "@cuddleContent": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "appLockDescription": "Lås appen med en PIN-kode når den ikke er i bruk", + "@appLockDescription": {}, + "ignoreUser": "Ignorer bruker", + "@ignoreUser": {}, + "setCustomPermissionLevel": "Angi egendefinert tillatelsesnivå", + "@setCustomPermissionLevel": {}, + "normalUser": "Vanlig bruker", + "@normalUser": {}, + "replace": "Erstatt", + "@replace": {}, + "noMoreChatsFound": "Ingen flere chatter funnet ...", + "@noMoreChatsFound": {}, + "confirmMatrixId": "Vennligst bekreft din Matrix-ID for å slette kontoen din.", + "@confirmMatrixId": {}, + "unread": "", + "@unread": {}, + "aboutHomeserver": "Om {homeserver}", + "@aboutHomeserver": { + "type": "String", + "placeholders": { + "homeserver": { + "type": "String" + } + } + }, + "commandHint_hug": "Send en klem", + "@commandHint_hug": {}, + "markAsRead": "Marker som lest", + "@markAsRead": {}, + "openLinkInBrowser": "Åpne lenke i nettleser", + "@openLinkInBrowser": {}, + "start": "Start", + "@start": {}, + "passwordsDoNotMatch": "Passordene stemmer ikke overens", + "@passwordsDoNotMatch": {}, + "decline": "Avslå", + "@decline": {}, + "emailOrUsername": "E-post eller brukernavn", + "@emailOrUsername": {}, + "encryptThisChat": "Krypter denne chatten", + "@encryptThisChat": {}, + "nextAccount": "Neste konto", + "@nextAccount": {}, + "doNotShowAgain": "Ikke vis igjen", + "@doNotShowAgain": {}, + "notificationRuleContainsUserName": "Inneholder brukernavn", + "@notificationRuleContainsUserName": {}, + "notificationRuleMaster": "Demp alle varslinger", + "@notificationRuleMaster": {}, + "presenceStyle": "Tilstedeværelse:", + "@presenceStyle": { + "type": "String", + "placeholders": {} + }, + "verified": "Verifisert", + "@verified": { + "type": "String", + "placeholders": {} + }, + "saveFile": "Lagre fil", + "@saveFile": { + "type": "String", + "placeholders": {} + }, + "recoveryKey": "Gjenopprettingsnøkkel", + "@recoveryKey": {}, + "sendSticker": "Send sticker", + "@sendSticker": { + "type": "String", + "placeholders": {} + }, + "shareLocation": "Del lokasjon", + "@shareLocation": { + "type": "String", + "placeholders": {} + }, + "showPassword": "Vis passord", + "@showPassword": { + "type": "String", + "placeholders": {} + }, + "synchronizingPleaseWait": "Synkroniserer … Vent litt.", + "@synchronizingPleaseWait": { + "type": "String", + "placeholders": {} + }, + "dismiss": "Avvis", + "@dismiss": {}, + "openChat": "Åpne chat", + "@openChat": {}, + "addWidget": "Legg til widget", + "@addWidget": {}, + "reopenChat": "Gjenåpne chat", + "@reopenChat": {}, + "changeTheDescriptionOfTheGroup": "Endre beskrivelsen til chatten", + "@changeTheDescriptionOfTheGroup": {}, + "inviteOtherUsers": "Inviter andre brukere til denne chatten", + "@inviteOtherUsers": {}, + "open": "Åpne", + "@open": {}, + "waitingForServer": "Venter på server...", + "@waitingForServer": {}, + "notificationRuleJitsi": "Jitsi", + "@notificationRuleJitsi": {}, + "takeAPhoto": "Ta et bilde", + "@takeAPhoto": {}, + "setChatDescription": "Sett chat beskrivelse", + "@setChatDescription": {}, + "singlesignon": "Single Sign on (SSO)", + "@singlesignon": { + "type": "String", + "placeholders": {} + }, + "openGallery": "Åpne galleri", + "@openGallery": {}, + "widgetCustom": "Egendefinert", + "@widgetCustom": {}, + "widgetVideo": "Video", + "@widgetVideo": {}, + "pushNotificationsNotAvailable": "Push-varsler er ikke tilgjengelige", + "@pushNotificationsNotAvailable": {}, + "gallery": "Galleri", + "@gallery": {}, + "moderatorLevel": "{level} - Moderator", + "@moderatorLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "int" + } + } + }, + "adminLevel": "{level} - Admin", + "@adminLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "int" + } + } + }, + "restricted": "Begrenset", + "@restricted": {}, + "updateInstalled": "🎉 Oppdatering {version} installert!", + "@updateInstalled": { + "type": "String", + "placeholders": { + "version": { + "type": "String" + } + } + }, + "calculatingFileSize": "Beregner filstørrelse...", + "@calculatingFileSize": {}, + "continueText": "Fortsett", + "@continueText": {}, + "serverInformation": "Serverinformasjon:", + "@serverInformation": {}, + "previous": "Forrige", + "@previous": {}, + "name": "Navn", + "@name": {}, + "version": "Versjon", + "@version": {}, + "invalidUrl": "Ugyldig url", + "@invalidUrl": {}, + "notificationRuleReaction": "Reaksjon", + "@notificationRuleReaction": {}, + "notificationRuleMessage": "Melding", + "@notificationRuleMessage": {}, + "notificationRuleEncrypted": "Kkryptert", + "@notificationRuleEncrypted": {}, + "more": "Mer", + "@more": {}, + "passwordIsWrong": "Det inntastede passordet ditt er feil", + "@passwordIsWrong": {}, + "startConversation": "Start samtale", + "@startConversation": {}, + "manageAccount": "Administrer konto", + "@manageAccount": {}, + "nothingFound": "Ingenting funnet...", + "@nothingFound": {}, + "incomingMessages": "Innkommende meldinger", + "@incomingMessages": {}, + "changelog": "Endringslogg", + "@changelog": {}, + "contactServerAdmin": "Kontakt serveradministrator", + "@contactServerAdmin": {}, + "setWallpaper": "Sett bakgrunnsbilde", + "@setWallpaper": {}, + "unsupportedAndroidVersion": "Usupportert Android-versjon", + "@unsupportedAndroidVersion": {}, + "widgetName": "Navn", + "@widgetName": {}, + "youJoinedTheChat": "Du har blitt med i chatten", + "@youJoinedTheChat": {}, + "widgetJitsi": "Jitsi Meet", + "@widgetJitsi": {}, + "widgetNameError": "Vennligst oppgi et visningsnavn.", + "@widgetNameError": {}, + "youRejectedTheInvitation": "Du har avvist invitasjonen", + "@youRejectedTheInvitation": {}, + "formattedMessages": "Formaterte meldinger", + "@formattedMessages": {}, + "allDevices": "Alle enheter", + "@allDevices": {}, + "learnMore": "Lær mer", + "@learnMore": {}, + "sorryThatsNotPossible": "Beklager... det er ikke mulig", + "@sorryThatsNotPossible": {}, + "markAsUnread": "Marker som ulest", + "@markAsUnread": {}, + "newGroup": "Ny gruppe", + "@newGroup": {}, + "userRole": "Brukerrolle", + "@userRole": {}, + "addLink": "Legg til lenke", + "@addLink": {}, + "synchronizingPleaseWaitCounter": " Synkroniserer… ({percentage}%)", + "@synchronizingPleaseWaitCounter": { + "type": "String", + "placeholders": { + "percentage": { + "type": "String" + } + } + }, + "unverified": "Ikke verifisert", + "@unverified": {}, + "thisDevice": "Denne enheten:", + "@thisDevice": {}, + "sendingAttachment": "Sender vedlegg...", + "@sendingAttachment": {}, + "removeYourAvatar": "Fjern din avatar", + "@removeYourAvatar": { + "type": "String", + "placeholders": {} + }, + "importFromZipFile": "Importer fra .zip-fil", + "@importFromZipFile": {}, + "select": "Velg", + "@select": {}, + "databaseMigrationTitle": "Databasen er optimalisert", + "@databaseMigrationTitle": {}, + "newPassword": "Nytt passord", + "@newPassword": {}, + "files": "Filer", + "@files": {}, + "searchIn": "Søk i chatten «{chat}»...", + "@searchIn": { + "type": "String", + "placeholders": { + "chat": { + "type": "String" + } + } + }, + "approve": "Godkjenn", + "@approve": {}, + "goToSpace": "Gå til område: {space}", + "@goToSpace": { + "type": "String", + "space": {} + }, + "userLevel": "{level} - Bruker", + "@userLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "int" + } + } + }, + "oneOfYourDevicesIsNotVerified": "En av dine enheter er ikke verifisert", + "@oneOfYourDevicesIsNotVerified": {}, + "website": "Nettside", + "@website": {}, + "boldText": "Fet skrift", + "@boldText": {}, + "pleaseFillOut": "Vennligst fyll ut", + "@pleaseFillOut": {}, + "importEmojis": "Importer emojier", + "@importEmojis": {}, + "supposedMxid": "Denne bør være {mxid}", + "@supposedMxid": { + "type": "String", + "placeholders": { + "mxid": { + "type": "String" + } + } + }, + "addChatDescription": "Legg til chat beskrivelse...", + "@addChatDescription": {}, + "commandHint_roomupgrade": "Oppgrader dette rommet til den gitte romversjonen", + "@commandHint_roomupgrade": {}, + "hideMemberChangesInPublicChatsBody": "Ikke vis i chattens tidslinje hvis noen blir med i eller forlater en offentlig chat for økt lesbarhet.", + "@hideMemberChangesInPublicChatsBody": {}, + "overview": "Oversikt", + "@overview": {}, + "notifyMeFor": "Varsle meg om", + "@notifyMeFor": {}, + "passwordRecoverySettings": "Innstillinger for gjenoppretting av passord", + "@passwordRecoverySettings": {}, + "people": "Folk", + "@people": { + "type": "String", + "placeholders": {} + }, + "pleaseChoose": "Vennligst velg", + "@pleaseChoose": { + "type": "String", + "placeholders": {} + }, + "pleaseChooseAPasscode": "Vennligst velg en passordkode", + "@pleaseChooseAPasscode": { + "type": "String", + "placeholders": {} + }, + "pleaseEnter4Digits": "Skriv inn fire sifre eller la feltet stå tomt for å deaktivere applåsen.", + "@pleaseEnter4Digits": { + "type": "String", + "placeholders": {} + }, + "pleaseEnterRecoveryKey": "Vennligst skriv inn gjenopprettingsnøkkelen din:", + "@pleaseEnterRecoveryKey": {}, + "pleaseEnterYourPin": "Vennligst skriv inn PIN-koden din", + "@pleaseEnterYourPin": { + "type": "String", + "placeholders": {} + }, + "globalChatId": "Global chat-ID", + "@globalChatId": {}, + "allRooms": "Alle gruppechatter", + "@allRooms": { + "type": "String", + "placeholders": {} + }, + "chatPermissions": "Chat tillatelser", + "@chatPermissions": {}, + "setPermissionsLevelDescription": "Vennligst velg en forhåndsdefinert rolle nedenfor eller skriv inn et tilpasset tillatelsesnivå mellom 0 og 100.", + "@setPermissionsLevelDescription": {}, + "commandHint_invite": "Inviter den gitte brukeren til dette rommet", + "@commandHint_invite": { + "type": "String", + "description": "Usage hint for the command /invite" + }, + "commandHint_join": "Bli med i det gitte rommet", + "@commandHint_join": { + "type": "String", + "description": "Usage hint for the command /join" + }, + "chats": "Chatter", + "@chats": { + "type": "String", + "placeholders": {} + }, + "yourChatBackupHasBeenSetUp": "Sikkerhetskopien av chatten din er konfigurert.", + "@yourChatBackupHasBeenSetUp": {}, + "discover": "Oppdag", + "@discover": {}, + "thereAreCountUsersBlocked": "Akkurat nå er det {count} blokkerte brukere.", + "@thereAreCountUsersBlocked": { + "type": "String", + "count": {} + }, + "sendCanceled": "Sending avbrutt", + "@sendCanceled": {}, + "loginWithMatrixId": "Logg på med Matrix ID", + "@loginWithMatrixId": {}, + "discoverHomeservers": "Oppdag hjemmeservere", + "@discoverHomeservers": {}, + "shareInviteLink": "Del invitasjonslenke", + "@shareInviteLink": {}, + "scanQrCode": "Skann QR-kode", + "@scanQrCode": {}, + "messagesStyle": "Meldinger:", + "@messagesStyle": {}, + "hydrate": "Gjenopprett fra sikkerhetskopifil", + "@hydrate": {}, + "oneClientLoggedOut": "En av klientene dine har blitt logget ut", + "@oneClientLoggedOut": {}, + "addAccount": "Legg til konto", + "@addAccount": {}, + "enableMultiAccounts": "(BETA) Aktiver flere kontoer på denne enheten", + "@enableMultiAccounts": {}, + "openInMaps": "Åpne i kart", + "@openInMaps": { + "type": "String", + "placeholders": {} + }, + "link": "Lenke", + "@link": {}, + "serverRequiresEmail": "Denne serveren må validere e-postadressen din for registrering.", + "@serverRequiresEmail": {}, + "or": "Eller", + "@or": { + "type": "String", + "placeholders": {} + }, + "previousAccount": "Forrige konto", + "@previousAccount": {}, + "widgetUrlError": "Dette er ikke en gyldig URL.", + "@widgetUrlError": {}, + "custom": "Egendefinert", + "@custom": {}, + "user": "Bruker", + "@user": {}, + "users": "Brukere", + "@users": {}, + "countInvited": "{count} inviterte", + "@countInvited": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "createGroup": "Opprett gruppe", + "@createGroup": {}, + "editRoomAliases": "Rediger rom aliaser", + "@editRoomAliases": { + "type": "String", + "placeholders": {} + }, + "accessAndVisibility": "Tilgang og synlighet", + "@accessAndVisibility": {}, + "hideInvalidOrUnknownMessageFormats": "Skjul ugyldige eller ukjente meldingsformater", + "@hideInvalidOrUnknownMessageFormats": {}, + "block": "Blokkér", + "@block": {}, + "blockedUsers": "Blokkerte brukere", + "@blockedUsers": {}, + "tryAgain": "Prøv igjen", + "@tryAgain": {}, + "invalidServerName": "Ugyldig servernavn", + "@invalidServerName": {}, + "messageInfo": "Meldingsinformasjon", + "@messageInfo": {}, + "time": "Tid", + "@time": {}, + "messageType": "Meldingstype", + "@messageType": {}, + "sender": "Avsender", + "@sender": {}, + "publish": "Publiser", + "@publish": {}, + "videoWithSize": "Video ({size})", + "@videoWithSize": { + "type": "String", + "placeholders": { + "size": { + "type": "String" + } + } + }, + "reportUser": "Rapporter bruker", + "@reportUser": {}, + "youHaveWithdrawnTheInvitationFor": "Du har trukket tilbake invitasjonen for {user}", + "@youHaveWithdrawnTheInvitationFor": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youAcceptedTheInvitation": "👍 Du har akseptert invitasjonen", + "@youAcceptedTheInvitation": {}, + "youBannedUser": "Du stengte ute {user}", + "@youBannedUser": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "chatDescriptionHasBeenChanged": "Chatbeskrivelsen er endret", + "@chatDescriptionHasBeenChanged": {}, + "goToTheNewRoom": "Gå til det nye rommet", + "@goToTheNewRoom": { + "type": "String", + "placeholders": {} + }, + "screenSharingTitle": "skjermdeling", + "@screenSharingTitle": {}, + "screenSharingDetail": "Du deler skjermen din i FuffyChat", + "@screenSharingDetail": {}, + "callingPermissions": "Anropstillatelser", + "@callingPermissions": {}, + "callingAccountDetails": "Lar FluffyChat bruke den innebygde Android-oppringingsappen.", + "@callingAccountDetails": {}, + "appearOnTop": "Vis øverst", + "@appearOnTop": {}, + "otherCallingPermissions": "Mikrofon, kamera og andre FluffyChat-tillatelser", + "@otherCallingPermissions": {}, + "whyIsThisMessageEncrypted": "Hvorfor er denne meldingen uleselig?", + "@whyIsThisMessageEncrypted": {}, + "yourGlobalUserIdIs": "Din globale bruker-ID er: ", + "@yourGlobalUserIdIs": {}, + "searchChatsRooms": "Søk etter #chatter, @brukere...", + "@searchChatsRooms": {}, + "groupName": "Gruppenavn", + "@groupName": {}, + "createGroupAndInviteUsers": "Opprett en gruppe og inviter brukere", + "@createGroupAndInviteUsers": {}, + "invite": "Inviter", + "@invite": {}, + "wrongPinEntered": "Feil PIN-kode tastet inn! Prøv igjen om {seconds} sekunder...", + "@wrongPinEntered": { + "type": "String", + "placeholders": { + "seconds": { + "type": "int" + } + } + }, + "sendAsText": "Send som tekst", + "@sendAsText": { + "type": "String" + }, + "sendImages": "Send {count} bilde", + "@sendImages": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "presencesToggle": "Vis statusmeldinger fra andre brukere", + "@presencesToggle": { + "type": "String", + "placeholders": {} + }, + "voiceCall": "Taleanrop", + "@voiceCall": {}, + "accessAndVisibilityDescription": "Hvem som har lov til å bli med i denne chatten og hvordan chatten kan oppdages.", + "@accessAndVisibilityDescription": {}, + "calls": "Anrop", + "@calls": {}, + "customEmojisAndStickers": "Egendefinerte emojier og klistremerker", + "@customEmojisAndStickers": {}, + "oopsPushError": "Oops! Dessverre oppsto det en feil under oppsettet av push-varsler.", + "@oopsPushError": { + "type": "String", + "placeholders": {} + }, + "openVideoCamera": "Åpne kameraet for en video", + "@openVideoCamera": { + "type": "String", + "placeholders": {} + }, + "obtainingLocation": "Henter sted …", + "@obtainingLocation": { + "type": "String", + "placeholders": {} + }, + "noDatabaseEncryption": "Databasekryptering støttes ikke på denne plattformen", + "@noDatabaseEncryption": {}, + "changeGeneralChatSettings": "Endre generelle chatinnstillinger", + "@changeGeneralChatSettings": {}, + "changeTheChatPermissions": "Endre chattillatelsene", + "@changeTheChatPermissions": {}, + "youInvitedToBy": "📩 Du har blitt invitert via lenke til:\n{alias}", + "@youInvitedToBy": { + "placeholders": { + "alias": { + "type": "String" + } + } + }, + "youInvitedBy": "📩 Du har blitt invitert av {user}", + "@youInvitedBy": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "invitedBy": "📩 Invitert av {user}", + "@invitedBy": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youInvitedUser": "📩 Du inviterte {user}", + "@youInvitedUser": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youKicked": "👞 You sparket ut {user}", + "@youKicked": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youKickedAndBanned": "🙅 Du sparket og stengte ute {user}", + "@youKickedAndBanned": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "countFiles": "{count} filer", + "@countFiles": { + "placeholders": { + "count": { + "type": "int" + } + } + }, + "noOtherDevicesFound": "Ingen andre enheter funnet", + "@noOtherDevicesFound": {}, + "fileIsTooBigForServer": "Kan ikke sende! Serveren støtter bare vedlegg opptil {max}.", + "@fileIsTooBigForServer": { + "type": "String", + "placeholders": { + "max": { + "type": "String" + } + } + }, + "fileHasBeenSavedAt": "Filen er lagret på {path}", + "@fileHasBeenSavedAt": { + "type": "String", + "placeholders": { + "path": { + "type": "String" + } + } + }, + "jumpToLastReadMessage": "Hopp til sist leste melding", + "@jumpToLastReadMessage": {} } diff --git a/lib/l10n/intl_pl.arb b/lib/l10n/intl_pl.arb index b58e3bb80..01edeb056 100644 --- a/lib/l10n/intl_pl.arb +++ b/lib/l10n/intl_pl.arb @@ -1,3387 +1,3389 @@ { - "@@locale": "pl", - "@@last_modified": "2021-08-14 12:41:09.943634", - "about": "O aplikacji", - "@about": { - "type": "String", - "placeholders": {} - }, - "accept": "Akceptuj", - "@accept": { - "type": "String", - "placeholders": {} - }, - "acceptedTheInvitation": "👍 {username} zaakceptował/-a zaproszenie", - "@acceptedTheInvitation": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "account": "Konto", - "@account": { - "type": "String", - "placeholders": {} - }, - "activatedEndToEndEncryption": "🔐 {username} aktywował/-a szyfrowanie od końca do końca", - "@activatedEndToEndEncryption": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "addEmail": "Dodaj adres email", - "@addEmail": { - "type": "String", - "placeholders": {} - }, - "admin": "Administrator", - "@admin": { - "type": "String", - "placeholders": {} - }, - "alias": "alias", - "@alias": { - "type": "String", - "placeholders": {} - }, - "answeredTheCall": "{senderName} odebrał/-a połączenie", - "@answeredTheCall": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "anyoneCanJoin": "Każdy może dołączyć", - "@anyoneCanJoin": { - "type": "String", - "placeholders": {} - }, - "archive": "Archiwum", - "@archive": { - "type": "String", - "placeholders": {} - }, - "areGuestsAllowedToJoin": "Czy użytkownicy-goście mogą dołączyć", - "@areGuestsAllowedToJoin": { - "type": "String", - "placeholders": {} - }, - "areYouSure": "Czy na pewno?", - "@areYouSure": { - "type": "String", - "placeholders": {} - }, - "areYouSureYouWantToLogout": "Czy na pewno chcesz się wylogować?", - "@areYouSureYouWantToLogout": { - "type": "String", - "placeholders": {} - }, - "askSSSSSign": "Aby zalogować inną osobę, proszę wpisać hasło przechowywania lub klucz odzyskiwania.", - "@askSSSSSign": { - "type": "String", - "placeholders": {} - }, - "askVerificationRequest": "Zaakceptować tą prośbę weryfikacji od {username}?", - "@askVerificationRequest": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "badServerLoginTypesException": "Serwer obsługuje typy logowania:\n{serverVersions}\nAle ta aplikacja obsługuje tylko:\n{supportedVersions}", - "@badServerLoginTypesException": { - "type": "String", - "placeholders": { - "serverVersions": { - "type": "String" - }, - "supportedVersions": { - "type": "String" - } - } - }, - "badServerVersionsException": "Serwer obsługuje wersje Spec:\n{serverVersions}\nAle aplikacja obsługuje tylko {supportedVersions}", - "@badServerVersionsException": { - "type": "String", - "placeholders": { - "serverVersions": { - "type": "String" - }, - "supportedVersions": { - "type": "String" - } - } - }, - "banFromChat": "Ban w czacie", - "@banFromChat": { - "type": "String", - "placeholders": {} - }, - "banned": "Zbanowany/-a", - "@banned": { - "type": "String", - "placeholders": {} - }, - "bannedUser": "{username} zbanował/-a {targetName}", - "@bannedUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "blockDevice": "Zablokuj urządzenie", - "@blockDevice": { - "type": "String", - "placeholders": {} - }, - "blocked": "Zablokowane", - "@blocked": { - "type": "String", - "placeholders": {} - }, - "botMessages": "Wiadomości botów", - "@botMessages": { - "type": "String", - "placeholders": {} - }, - "cancel": "Anuluj", - "@cancel": { - "type": "String", - "placeholders": {} - }, - "changeDeviceName": "Zmień nazwę urządzenia", - "@changeDeviceName": { - "type": "String", - "placeholders": {} - }, - "changedTheChatAvatar": "{username} zmienił/-a zdjęcie profilowe", - "@changedTheChatAvatar": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheChatDescriptionTo": "{username} zmienił/-a opis czatu na '{description}'", - "@changedTheChatDescriptionTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "description": { - "type": "String" - } - } - }, - "changedTheChatNameTo": "{username} zmienił/-a nazwę czatu na '{chatname}'", - "@changedTheChatNameTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "chatname": { - "type": "String" - } - } - }, - "changedTheChatPermissions": "{username} zmienił/-a uprawnienia w czacie", - "@changedTheChatPermissions": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheDisplaynameTo": "{username} zmienił/-a swoją nazwę wyświetlaną na '{displayname}'", - "@changedTheDisplaynameTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "displayname": { - "type": "String" - } - } - }, - "changedTheGuestAccessRules": "{username} zmienił/-a zasady dostępu dla gości", - "@changedTheGuestAccessRules": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheGuestAccessRulesTo": "{username} zmienił/-a zasady dostępu dla gości na {rules}", - "@changedTheGuestAccessRulesTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "rules": { - "type": "String" - } - } - }, - "changedTheHistoryVisibility": "{username} zmienił/-a widoczność historii", - "@changedTheHistoryVisibility": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheHistoryVisibilityTo": "{username} zmienił/-a widoczność historii na {rules}", - "@changedTheHistoryVisibilityTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "rules": { - "type": "String" - } - } - }, - "changedTheJoinRules": "{username} zmienił/-a zasady wejścia", - "@changedTheJoinRules": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheJoinRulesTo": "{username} zmienił/-a zasady wejścia na {joinRules}", - "@changedTheJoinRulesTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "joinRules": { - "type": "String" - } - } - }, - "changedTheProfileAvatar": "{username} zmienił/-a zdjęcie profilowe", - "@changedTheProfileAvatar": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheRoomAliases": "{username} zmienił/-a alias pokoju", - "@changedTheRoomAliases": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheRoomInvitationLink": "{username} zmienił/-a link z zaproszeniem do pokoju", - "@changedTheRoomInvitationLink": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changePassword": "Zmień hasło", - "@changePassword": { - "type": "String", - "placeholders": {} - }, - "changeTheHomeserver": "Zmień serwer domyślny", - "@changeTheHomeserver": { - "type": "String", - "placeholders": {} - }, - "changeTheme": "Zmień swój styl", - "@changeTheme": { - "type": "String", - "placeholders": {} - }, - "changeTheNameOfTheGroup": "Zmień nazwę grupy", - "@changeTheNameOfTheGroup": { - "type": "String", - "placeholders": {} - }, - "channelCorruptedDecryptError": "Szyfrowanie zostało uszkodzone", - "@channelCorruptedDecryptError": { - "type": "String", - "placeholders": {} - }, - "chat": "Czat", - "@chat": { - "type": "String", - "placeholders": {} - }, - "chatBackup": "Kopia zapasowa czatów", - "@chatBackup": { - "type": "String", - "placeholders": {} - }, - "chatBackupDescription": "Twoje stare wiadomości są zabezpieczone kluczem odzyskiwania. Uważaj żeby go nie zgubić.", - "@chatBackupDescription": { - "type": "String", - "placeholders": {} - }, - "chatDetails": "Szczegóły czatu", - "@chatDetails": { - "type": "String", - "placeholders": {} - }, - "chats": "Czaty", - "@chats": { - "type": "String", - "placeholders": {} - }, - "chooseAStrongPassword": "Wybierz silne hasło", - "@chooseAStrongPassword": { - "type": "String", - "placeholders": {} - }, - "clearArchive": "Wyczyść archiwum", - "@clearArchive": {}, - "close": "Zamknij", - "@close": { - "type": "String", - "placeholders": {} - }, - "commandHint_ban": "Zbanuj użytkownika w tym pokoju", - "@commandHint_ban": { - "type": "String", - "description": "Usage hint for the command /ban" - }, - "commandHint_html": "Wyślij tekst sformatowany w HTML", - "@commandHint_html": { - "type": "String", - "description": "Usage hint for the command /html" - }, - "commandHint_invite": "Zaproś użytkownika do pokoju", - "@commandHint_invite": { - "type": "String", - "description": "Usage hint for the command /invite" - }, - "commandHint_join": "Dołącz do podanego pokoju", - "@commandHint_join": { - "type": "String", - "description": "Usage hint for the command /join" - }, - "commandHint_kick": "Usuń tego użytkownika z tego pokoju", - "@commandHint_kick": { - "type": "String", - "description": "Usage hint for the command /kick" - }, - "commandHint_leave": "Opuść ten pokój", - "@commandHint_leave": { - "type": "String", - "description": "Usage hint for the command /leave" - }, - "commandHint_me": "Opisz siebie", - "@commandHint_me": { - "type": "String", - "description": "Usage hint for the command /me" - }, - "commandHint_myroomavatar": "Ustaw swoje zdjęcie w tym pokoju (przez mxc-uri)", - "@commandHint_myroomavatar": { - "type": "String", - "description": "Usage hint for the command /myroomavatar" - }, - "commandHint_myroomnick": "Ustaw swoją nazwę wyświetlaną w tym pokoju", - "@commandHint_myroomnick": { - "type": "String", - "description": "Usage hint for the command /myroomnick" - }, - "commandHint_op": "Ustaw poziom uprawnień tego użytkownika (domyślnie: 50)", - "@commandHint_op": { - "type": "String", - "description": "Usage hint for the command /op" - }, - "commandHint_plain": "Wyślij niesformatowany tekst", - "@commandHint_plain": { - "type": "String", - "description": "Usage hint for the command /plain" - }, - "commandHint_react": "Wyślij odpowiedź jako reakcję", - "@commandHint_react": { - "type": "String", - "description": "Usage hint for the command /react" - }, - "commandHint_send": "Wyślij wiadomość", - "@commandHint_send": { - "type": "String", - "description": "Usage hint for the command /send" - }, - "commandHint_unban": "Odbanuj użytkownika w tym pokoju", - "@commandHint_unban": { - "type": "String", - "description": "Usage hint for the command /unban" - }, - "commandInvalid": "Nieprawidłowe polecenie", - "@commandInvalid": { - "type": "String" - }, - "commandMissing": "{command} nie jest poleceniem.", - "@commandMissing": { - "type": "String", - "placeholders": { - "command": { - "type": "String" - } - }, - "description": "State that {command} is not a valid /command." - }, - "compareEmojiMatch": "Porównaj emoji", - "@compareEmojiMatch": { - "type": "String", - "placeholders": {} - }, - "compareNumbersMatch": "Porównaj cyfry", - "@compareNumbersMatch": { - "type": "String", - "placeholders": {} - }, - "confirm": "Potwierdź", - "@confirm": { - "type": "String", - "placeholders": {} - }, - "connect": "Połącz", - "@connect": { - "type": "String", - "placeholders": {} - }, - "contactHasBeenInvitedToTheGroup": "Kontakt został zaproszony do grupy", - "@contactHasBeenInvitedToTheGroup": { - "type": "String", - "placeholders": {} - }, - "containsDisplayName": "Zawiera nazwę wyświetlaną", - "@containsDisplayName": { - "type": "String", - "placeholders": {} - }, - "containsUserName": "Zawiera nazwę użytkownika", - "@containsUserName": { - "type": "String", - "placeholders": {} - }, - "copiedToClipboard": "Skopiowano do schowka", - "@copiedToClipboard": { - "type": "String", - "placeholders": {} - }, - "copy": "Kopiuj", - "@copy": { - "type": "String", - "placeholders": {} - }, - "copyToClipboard": "Skopiuj do schowka", - "@copyToClipboard": { - "type": "String", - "placeholders": {} - }, - "couldNotDecryptMessage": "Nie można odszyfrować wiadomości: {error}", - "@couldNotDecryptMessage": { - "type": "String", - "placeholders": { - "error": { - "type": "String" - } - } - }, - "countParticipants": "{count} uczestników", - "@countParticipants": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "create": "Stwórz", - "@create": { - "type": "String", - "placeholders": {} - }, - "createdTheChat": "💬 {username} utworzył/-a czat", - "@createdTheChat": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "currentlyActive": "Obecnie aktywny/-a", - "@currentlyActive": { - "type": "String", - "placeholders": {} - }, - "darkTheme": "Ciemny", - "@darkTheme": { - "type": "String", - "placeholders": {} - }, - "dateAndTimeOfDay": "{date} {timeOfDay}", - "@dateAndTimeOfDay": { - "type": "String", - "placeholders": { - "date": { - "type": "String" - }, - "timeOfDay": { - "type": "String" - } - } - }, - "dateWithoutYear": "{month}-{day}", - "@dateWithoutYear": { - "type": "String", - "placeholders": { - "month": { - "type": "String" - }, - "day": { - "type": "String" - } - } - }, - "dateWithYear": "{day}.{month}.{year}", - "@dateWithYear": { - "type": "String", - "placeholders": { - "year": { - "type": "String" - }, - "month": { - "type": "String" - }, - "day": { - "type": "String" - } - } - }, - "deactivateAccountWarning": "To zdezaktywuje twoje konto. To jest nieodwracalne! Na pewno chcesz to zrobić?", - "@deactivateAccountWarning": { - "type": "String", - "placeholders": {} - }, - "delete": "Usuń", - "@delete": { - "type": "String", - "placeholders": {} - }, - "deleteAccount": "Usuń konto", - "@deleteAccount": { - "type": "String", - "placeholders": {} - }, - "deleteMessage": "Usuń wiadomość", - "@deleteMessage": { - "type": "String", - "placeholders": {} - }, - "device": "Urządzenie", - "@device": { - "type": "String", - "placeholders": {} - }, - "deviceId": "Identyfikator urządzenia", - "@deviceId": { - "type": "String", - "placeholders": {} - }, - "devices": "Urządzenia", - "@devices": { - "type": "String", - "placeholders": {} - }, - "directChats": "Czaty bezpośrednie", - "@directChats": { - "type": "String", - "placeholders": {} - }, - "displaynameHasBeenChanged": "Nazwa wyświetlana została zmieniona", - "@displaynameHasBeenChanged": { - "type": "String", - "placeholders": {} - }, - "downloadFile": "Pobierz plik", - "@downloadFile": { - "type": "String", - "placeholders": {} - }, - "edit": "Edytuj", - "@edit": { - "type": "String", - "placeholders": {} - }, - "editDisplayname": "Edytuj nazwę wyświetlaną", - "@editDisplayname": { - "type": "String", - "placeholders": {} - }, - "editRoomAliases": "Zmień aliasy pokoju", - "@editRoomAliases": { - "type": "String", - "placeholders": {} - }, - "emoteExists": "Emotikon już istnieje!", - "@emoteExists": { - "type": "String", - "placeholders": {} - }, - "emoteInvalid": "Nieprawidłowy kod emotikonu!", - "@emoteInvalid": { - "type": "String", - "placeholders": {} - }, - "emotePacks": "Paczki emotikonów dla pokoju", - "@emotePacks": { - "type": "String", - "placeholders": {} - }, - "emoteSettings": "Ustawienia emotikonów", - "@emoteSettings": { - "type": "String", - "placeholders": {} - }, - "emoteShortcode": "Skrócony kod emotikonu", - "@emoteShortcode": { - "type": "String", - "placeholders": {} - }, - "emoteWarnNeedToPick": "Musisz wybrać kod emotikonu oraz obraz!", - "@emoteWarnNeedToPick": { - "type": "String", - "placeholders": {} - }, - "emptyChat": "Pusty czat", - "@emptyChat": { - "type": "String", - "placeholders": {} - }, - "enableEmotesGlobally": "Włącz paczkę emotikonów globalnie", - "@enableEmotesGlobally": { - "type": "String", - "placeholders": {} - }, - "enableEncryptionWarning": "Nie będziesz już mógł wyłączyć szyfrowania. Jesteś pewny?", - "@enableEncryptionWarning": { - "type": "String", - "placeholders": {} - }, - "encrypted": "Szyfrowane", - "@encrypted": { - "type": "String", - "placeholders": {} - }, - "encryption": "Szyfrowanie", - "@encryption": { - "type": "String", - "placeholders": {} - }, - "encryptionNotEnabled": "Szyfrowanie nie jest włączone", - "@encryptionNotEnabled": { - "type": "String", - "placeholders": {} - }, - "endedTheCall": "{senderName} zakończył/-a połączenie", - "@endedTheCall": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "enterAnEmailAddress": "Wpisz adres e-mail", - "@enterAnEmailAddress": { - "type": "String", - "placeholders": {} - }, - "enterYourHomeserver": "Wpisz swój serwer domowy", - "@enterYourHomeserver": { - "type": "String", - "placeholders": {} - }, - "everythingReady": "Wszystko gotowe!", - "@everythingReady": { - "type": "String", - "placeholders": {} - }, - "fileName": "Nazwa pliku", - "@fileName": { - "type": "String", - "placeholders": {} - }, - "fluffychat": "FluffyChat", - "@fluffychat": { - "type": "String", - "placeholders": {} - }, - "forward": "Przekaż", - "@forward": { - "type": "String", - "placeholders": {} - }, - "fromJoining": "Od dołączenia", - "@fromJoining": { - "type": "String", - "placeholders": {} - }, - "fromTheInvitation": "Od zaproszenia", - "@fromTheInvitation": { - "type": "String", - "placeholders": {} - }, - "goToTheNewRoom": "Przejdź do nowego pokoju", - "@goToTheNewRoom": { - "type": "String", - "placeholders": {} - }, - "group": "Grupa", - "@group": { - "type": "String", - "placeholders": {} - }, - "groupIsPublic": "Grupa jest publiczna", - "@groupIsPublic": { - "type": "String", - "placeholders": {} - }, - "groupWith": "Grupa z {displayname}", - "@groupWith": { - "type": "String", - "placeholders": { - "displayname": { - "type": "String" - } - } - }, - "guestsAreForbidden": "Goście są zakazani", - "@guestsAreForbidden": { - "type": "String", - "placeholders": {} - }, - "guestsCanJoin": "Goście mogą dołączyć", - "@guestsCanJoin": { - "type": "String", - "placeholders": {} - }, - "hasWithdrawnTheInvitationFor": "{username} wycofał/-a zaproszenie dla {targetName}", - "@hasWithdrawnTheInvitationFor": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "help": "Pomoc", - "@help": { - "type": "String", - "placeholders": {} - }, - "hideRedactedEvents": "Ukryj informacje o usuniętych zdarzeniach", - "@hideRedactedEvents": { - "type": "String", - "placeholders": {} - }, - "hideUnknownEvents": "Ukryj nieznane wdarzenia", - "@hideUnknownEvents": { - "type": "String", - "placeholders": {} - }, - "id": "Identyfikator", - "@id": { - "type": "String", - "placeholders": {} - }, - "identity": "Tożsamość", - "@identity": { - "type": "String", - "placeholders": {} - }, - "ignoredUsers": "Ignorowani użytkownicy", - "@ignoredUsers": { - "type": "String", - "placeholders": {} - }, - "iHaveClickedOnLink": "Nacisnąłem na link", - "@iHaveClickedOnLink": { - "type": "String", - "placeholders": {} - }, - "incorrectPassphraseOrKey": "Złe hasło bezpieczeństwa lub klucz odzyskiwania", - "@incorrectPassphraseOrKey": { - "type": "String", - "placeholders": {} - }, - "inviteContact": "Zaproś kontakt", - "@inviteContact": { - "type": "String", - "placeholders": {} - }, - "inviteContactToGroup": "Zaproś kontakty do {groupName}", - "@inviteContactToGroup": { - "type": "String", - "placeholders": { - "groupName": { - "type": "String" - } - } - }, - "invited": "Zaproszono", - "@invited": { - "type": "String", - "placeholders": {} - }, - "invitedUser": "📩 {username} zaprosił/-a {targetName}", - "@invitedUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "invitedUsersOnly": "Tylko zaproszeni użytkownicy", - "@invitedUsersOnly": { - "type": "String", - "placeholders": {} - }, - "inviteForMe": "Zaproszenie dla mnie", - "@inviteForMe": { - "type": "String", - "placeholders": {} - }, - "inviteText": "{username} zaprosił/-a Cię do FluffyChat.\n1. Odwiedź fluffychat.im i zainstaluj aplikację\n2. Zarejestuj się lub zaloguj\n3. Otwórz link zaproszenia:\n{link}", - "@inviteText": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "link": { - "type": "String" - } - } - }, - "isTyping": "pisze…", - "@isTyping": { - "type": "String", - "placeholders": {} - }, - "joinedTheChat": "👋 {username} dołączył/-a do czatu", - "@joinedTheChat": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "joinRoom": "Dołącz do pokoju", - "@joinRoom": { - "type": "String", - "placeholders": {} - }, - "kicked": "👞 {username} wyrzucił/-a {targetName}", - "@kicked": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "kickedAndBanned": "🙅 {username} wyrzucił/-a i zbanował/-a {targetName}", - "@kickedAndBanned": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "kickFromChat": "Wyrzuć z czatu", - "@kickFromChat": { - "type": "String", - "placeholders": {} - }, - "lastActiveAgo": "Ostatnio widziano {localizedTimeShort}", - "@lastActiveAgo": { - "type": "String", - "placeholders": { - "localizedTimeShort": { - "type": "String" - } - } - }, - "leave": "Opuść", - "@leave": { - "type": "String", - "placeholders": {} - }, - "leftTheChat": "Opuścił/-a czat", - "@leftTheChat": { - "type": "String", - "placeholders": {} - }, - "license": "Licencja", - "@license": { - "type": "String", - "placeholders": {} - }, - "lightTheme": "Jasny", - "@lightTheme": { - "type": "String", - "placeholders": {} - }, - "loadCountMoreParticipants": "Załaduj jeszcze {count} uczestników", - "@loadCountMoreParticipants": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "loadingPleaseWait": "Ładowanie… Proszę czekać.", - "@loadingPleaseWait": { - "type": "String", - "placeholders": {} - }, - "loadMore": "Załaduj więcej…", - "@loadMore": { - "type": "String", - "placeholders": {} - }, - "login": "Zaloguj się", - "@login": { - "type": "String", - "placeholders": {} - }, - "logInTo": "Zaloguj się do {homeserver}", - "@logInTo": { - "type": "String", - "placeholders": { - "homeserver": { - "type": "String" - } - } - }, - "logout": "Wyloguj się", - "@logout": { - "type": "String", - "placeholders": {} - }, - "memberChanges": "Zmiany członków", - "@memberChanges": { - "type": "String", - "placeholders": {} - }, - "mention": "Wzmianka", - "@mention": { - "type": "String", - "placeholders": {} - }, - "moderator": "Moderator", - "@moderator": { - "type": "String", - "placeholders": {} - }, - "muteChat": "Wycisz czat", - "@muteChat": { - "type": "String", - "placeholders": {} - }, - "needPantalaimonWarning": "Należy pamiętać, że Pantalaimon wymaga na razie szyfrowania od końca do końca.", - "@needPantalaimonWarning": { - "type": "String", - "placeholders": {} - }, - "newChat": "Nowa rozmowa", - "@newChat": { - "type": "String", - "placeholders": {} - }, - "newMessageInFluffyChat": "💬 Nowa wiadomość we FluffyChat", - "@newMessageInFluffyChat": { - "type": "String", - "placeholders": {} - }, - "newVerificationRequest": "Nowa prośba o weryfikację!", - "@newVerificationRequest": { - "type": "String", - "placeholders": {} - }, - "next": "Dalej", - "@next": { - "type": "String", - "placeholders": {} - }, - "no": "Nie", - "@no": { - "type": "String", - "placeholders": {} - }, - "noEncryptionForPublicRooms": "Możesz aktywować szyfrowanie dopiero kiedy pokój nie będzie publicznie dostępny.", - "@noEncryptionForPublicRooms": { - "type": "String", - "placeholders": {} - }, - "noGoogleServicesWarning": "Wygląda na to, że Twoje urządzenie nie obsługuje Firebase Cloud Messaging. Aby wciąż otrzymywać powiadomienia push, zalecamy istalację ntfy. Używając ntfy lub inengo zunifikowanego dostawcy powiadomień push, możesz bezpiecznie otrzymywać takowe powiadomienia. Ntfy można pobrać ze sklepu Google Play Store lub z F-Droid.", - "@noGoogleServicesWarning": { - "type": "String", - "placeholders": {} - }, - "none": "Brak", - "@none": { - "type": "String", - "placeholders": {} - }, - "noPasswordRecoveryDescription": "Nie dodałeś/-aś jeszcze sposobu odzyskiwania swojego hasła.", - "@noPasswordRecoveryDescription": { - "type": "String", - "placeholders": {} - }, - "noPermission": "Brak uprawnień", - "@noPermission": { - "type": "String", - "placeholders": {} - }, - "noRoomsFound": "Nie znaleziono pokojów…", - "@noRoomsFound": { - "type": "String", - "placeholders": {} - }, - "notifications": "Powiadomienia", - "@notifications": { - "type": "String", - "placeholders": {} - }, - "notificationsEnabledForThisAccount": "Powiadomienia są włączone dla tego konta", - "@notificationsEnabledForThisAccount": { - "type": "String", - "placeholders": {} - }, - "oopsSomethingWentWrong": "Ojej! Coś poszło nie tak…", - "@oopsSomethingWentWrong": { - "type": "String", - "placeholders": {} - }, - "openAppToReadMessages": "Otwórz aplikację by odczytać wiadomości", - "@openAppToReadMessages": { - "type": "String", - "placeholders": {} - }, - "openCamera": "Otwórz aparat", - "@openCamera": { - "type": "String", - "placeholders": {} - }, - "password": "Hasło", - "@password": { - "type": "String", - "placeholders": {} - }, - "passwordHasBeenChanged": "Hasło zostało zmienione", - "@passwordHasBeenChanged": { - "type": "String", - "placeholders": {} - }, - "people": "Osoby", - "@people": { - "type": "String", - "placeholders": {} - }, - "pin": "Przypnij", - "@pin": { - "type": "String", - "placeholders": {} - }, - "play": "Otwórz {fileName}", - "@play": { - "type": "String", - "placeholders": { - "fileName": { - "type": "String" - } - } - }, - "pleaseEnterYourPassword": "Wprowadź swoje hasło", - "@pleaseEnterYourPassword": { - "type": "String", - "placeholders": {} - }, - "pleaseEnterYourUsername": "Wpisz swoją nazwę użytkownika", - "@pleaseEnterYourUsername": { - "type": "String", - "placeholders": {} - }, - "pleaseFollowInstructionsOnWeb": "Wykonaj instrukcje na stronie internetowej i naciśnij „dalej”.", - "@pleaseFollowInstructionsOnWeb": { - "type": "String", - "placeholders": {} - }, - "publicRooms": "Publiczne pokoje", - "@publicRooms": { - "type": "String", - "placeholders": {} - }, - "pushRules": "Reguły push", - "@pushRules": { - "type": "String", - "placeholders": {} - }, - "recording": "Nagranie", - "@recording": { - "type": "String", - "placeholders": {} - }, - "redactedAnEvent": "{username} usunął/-ęła zdarzenie", - "@redactedAnEvent": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "register": "Zarejestruj", - "@register": { - "type": "String", - "placeholders": {} - }, - "rejectedTheInvitation": "{username} odrzucił/-a zaproszenie", - "@rejectedTheInvitation": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "rejoin": "Dołącz ponownie", - "@rejoin": { - "type": "String", - "placeholders": {} - }, - "remove": "Usuń", - "@remove": { - "type": "String", - "placeholders": {} - }, - "removeAllOtherDevices": "Usuń wszystkie inne urządzenia", - "@removeAllOtherDevices": { - "type": "String", - "placeholders": {} - }, - "removedBy": "Usunięta przez {username}", - "@removedBy": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "removeDevice": "Usuń urządzenie", - "@removeDevice": { - "type": "String", - "placeholders": {} - }, - "unbanFromChat": "Odbanuj w czacie", - "@unbanFromChat": { - "type": "String", - "placeholders": {} - }, - "reply": "Odpowiedz", - "@reply": { - "type": "String", - "placeholders": {} - }, - "requestPermission": "Prośba o pozwolenie", - "@requestPermission": { - "type": "String", - "placeholders": {} - }, - "roomVersion": "Wersja pokoju", - "@roomVersion": { - "type": "String", - "placeholders": {} - }, - "seenByUser": "Zobaczone przez {username}", - "@seenByUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "send": "Wyślij", - "@send": { - "type": "String", - "placeholders": {} - }, - "sendAMessage": "Wyślij wiadomość", - "@sendAMessage": { - "type": "String", - "placeholders": {} - }, - "sendFile": "Wyślij plik", - "@sendFile": { - "type": "String", - "placeholders": {} - }, - "sendImage": "Wyślij obraz", - "@sendImage": { - "type": "String", - "placeholders": {} - }, - "sentAFile": "📁 {username} wysłał/-a plik", - "@sentAFile": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentAnAudio": "🎤 {username} wysłał/-a plik dżwiękowy", - "@sentAnAudio": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentAPicture": "🖼️ {username} wysłał/-a zdjęcie", - "@sentAPicture": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentASticker": "😊 {username} wysłał/-a naklejkę", - "@sentASticker": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentAVideo": "🎥 {username} wysłał/-a film", - "@sentAVideo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "setAsCanonicalAlias": "Ustaw jako główny alias", - "@setAsCanonicalAlias": { - "type": "String", - "placeholders": {} - }, - "setInvitationLink": "Ustaw link z zaproszeniem", - "@setInvitationLink": { - "type": "String", - "placeholders": {} - }, - "setStatus": "Ustaw status", - "@setStatus": { - "type": "String", - "placeholders": {} - }, - "settings": "Ustawienia", - "@settings": { - "type": "String", - "placeholders": {} - }, - "share": "Udostępnij", - "@share": { - "type": "String", - "placeholders": {} - }, - "sharedTheLocation": "{username} udostępnił/-a swoją lokalizację", - "@sharedTheLocation": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "showPassword": "Pokaż hasło", - "@showPassword": { - "type": "String", - "placeholders": {} - }, - "sourceCode": "Kod żródłowy", - "@sourceCode": { - "type": "String", - "placeholders": {} - }, - "statusExampleMessage": "Jak się masz dziś?", - "@statusExampleMessage": { - "type": "String", - "placeholders": {} - }, - "synchronizingPleaseWait": "Synchronizowanie… Proszę czekać.", - "@synchronizingPleaseWait": { - "type": "String", - "placeholders": {} - }, - "systemTheme": "System", - "@systemTheme": { - "type": "String", - "placeholders": {} - }, - "title": "FluffyChat", - "@title": { - "description": "Title for the application", - "type": "String", - "placeholders": {} - }, - "transferFromAnotherDevice": "Przenieś z innego urządzenia", - "@transferFromAnotherDevice": { - "type": "String", - "placeholders": {} - }, - "tryToSendAgain": "Spróbuj wysłać ponownie", - "@tryToSendAgain": { - "type": "String", - "placeholders": {} - }, - "unbannedUser": "{username} odbanował/-a {targetName}", - "@unbannedUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "unknownDevice": "Nieznane urządzenie", - "@unknownDevice": { - "type": "String", - "placeholders": {} - }, - "unknownEncryptionAlgorithm": "Nieznany algorytm szyfrowania", - "@unknownEncryptionAlgorithm": { - "type": "String", - "placeholders": {} - }, - "unknownEvent": "Nieznane zdarzenie '{type}'", - "@unknownEvent": { - "type": "String", - "placeholders": { - "type": { - "type": "String" - } - } - }, - "unmuteChat": "Wyłącz wyciszenie", - "@unmuteChat": { - "type": "String", - "placeholders": {} - }, - "unpin": "Odepnij", - "@unpin": { - "type": "String", - "placeholders": {} - }, - "unreadChats": "{unreadCount, plural, =1{1 unread chat} other{{unreadCount} unread chats}}", - "@unreadChats": { - "type": "String", - "placeholders": { - "unreadCount": { - "type": "int" - } - } - }, - "userAndOthersAreTyping": "{username} oraz {count} pozostałych pisze…", - "@userAndOthersAreTyping": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "count": { - "type": "int" - } - } - }, - "userAndUserAreTyping": "{username} i {username2} piszą…", - "@userAndUserAreTyping": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "username2": { - "type": "String" - } - } - }, - "userIsTyping": "{username} pisze…", - "@userIsTyping": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "userLeftTheChat": "🚪 {username} opuścił/-a czat", - "@userLeftTheChat": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "username": "Nazwa użytkownika", - "@username": { - "type": "String", - "placeholders": {} - }, - "userSentUnknownEvent": "{username} wysłał/-a zdarzenie {type}", - "@userSentUnknownEvent": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "type": { - "type": "String" - } - } - }, - "verified": "Zweryfikowane", - "@verified": { - "type": "String", - "placeholders": {} - }, - "verify": "zweryfikuj", - "@verify": { - "type": "String", - "placeholders": {} - }, - "videoCall": "Rozmowa wideo", - "@videoCall": { - "type": "String", - "placeholders": {} - }, - "visibilityOfTheChatHistory": "Widoczność historii czatu", - "@visibilityOfTheChatHistory": { - "type": "String", - "placeholders": {} - }, - "visibleForAllParticipants": "Widoczny dla wszystkich użytkowników", - "@visibleForAllParticipants": { - "type": "String", - "placeholders": {} - }, - "visibleForEveryone": "Widoczne dla każdego", - "@visibleForEveryone": { - "type": "String", - "placeholders": {} - }, - "voiceMessage": "Wiadomość głosowa", - "@voiceMessage": { - "type": "String", - "placeholders": {} - }, - "wallpaper": "Tapeta:", - "@wallpaper": { - "type": "String", - "placeholders": {} - }, - "whoIsAllowedToJoinThisGroup": "Kto może dołączyć do tej grupy", - "@whoIsAllowedToJoinThisGroup": { - "type": "String", - "placeholders": {} - }, - "writeAMessage": "Napisz wiadomość…", - "@writeAMessage": { - "type": "String", - "placeholders": {} - }, - "yes": "Tak", - "@yes": { - "type": "String", - "placeholders": {} - }, - "you": "Ty", - "@you": { - "type": "String", - "placeholders": {} - }, - "youAreNoLongerParticipatingInThisChat": "Nie uczestniczysz już w tym czacie", - "@youAreNoLongerParticipatingInThisChat": { - "type": "String", - "placeholders": {} - }, - "youHaveBeenBannedFromThisChat": "Zostałeś/-aś zbanowany/-a w tym czacie", - "@youHaveBeenBannedFromThisChat": { - "type": "String", - "placeholders": {} - }, - "allChats": "Wszystkie", - "@allChats": { - "type": "String", - "placeholders": {} - }, - "ignore": "Ignoruj", - "@ignore": { - "type": "String", - "placeholders": {} - }, - "noConnectionToTheServer": "Brak połączenia z serwerem", - "@noConnectionToTheServer": { - "type": "String", - "placeholders": {} - }, - "obtainingLocation": "Uzyskiwanie lokalizacji…", - "@obtainingLocation": { - "type": "String", - "placeholders": {} - }, - "addAccount": "Dodaj konto", - "@addAccount": {}, - "serverRequiresEmail": "Ten serwer wymaga potwierdzenia Twojego adresu email w celu rejestracji.", - "@serverRequiresEmail": {}, - "or": "Lub", - "@or": { - "type": "String", - "placeholders": {} - }, - "participant": "Uczestnik", - "@participant": { - "type": "String", - "placeholders": {} - }, - "passwordForgotten": "Nie pamiętam hasła", - "@passwordForgotten": { - "type": "String", - "placeholders": {} - }, - "pleaseChoose": "Proszę wybrać", - "@pleaseChoose": { - "type": "String", - "placeholders": {} - }, - "pleaseClickOnLink": "Proszę kliknij w odnośnik wysłany w wiadomości e-mail, aby kontynuować.", - "@pleaseClickOnLink": { - "type": "String", - "placeholders": {} - }, - "pleaseEnter4Digits": "Proszę podaj 4 cyfry. By wyłączyć blokadę pozostaw puste.", - "@pleaseEnter4Digits": { - "type": "String", - "placeholders": {} - }, - "removeYourAvatar": "Usuń swoje zdjęcie", - "@removeYourAvatar": { - "type": "String", - "placeholders": {} - }, - "replaceRoomWithNewerVersion": "Zamień pokój na nowszą wersję", - "@replaceRoomWithNewerVersion": { - "type": "String", - "placeholders": {} - }, - "reportMessage": "Zgłoś wiadomość", - "@reportMessage": { - "type": "String", - "placeholders": {} - }, - "saveFile": "Zapisz plik", - "@saveFile": { - "type": "String", - "placeholders": {} - }, - "security": "Bezpieczeństwo", - "@security": { - "type": "String", - "placeholders": {} - }, - "search": "Szukaj", - "@search": { - "type": "String", - "placeholders": {} - }, - "sendAsText": "Wyślij jako tekst", - "@sendAsText": { - "type": "String" - }, - "sendAudio": "Wyślij dźwięk", - "@sendAudio": { - "type": "String", - "placeholders": {} - }, - "sendMessages": "Wyślij wiadomości", - "@sendMessages": { - "type": "String", - "placeholders": {} - }, - "sendOriginal": "Wyślij oryginał", - "@sendOriginal": { - "type": "String", - "placeholders": {} - }, - "sendSticker": "Wyślij naklejkę", - "@sendSticker": { - "type": "String", - "placeholders": {} - }, - "sendVideo": "Wyślij film", - "@sendVideo": { - "type": "String", - "placeholders": {} - }, - "startedACall": "{senderName} rozpoczął/-ęła rozmowę", - "@startedACall": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "yourPublicKey": "Twój klucz publiczny", - "@yourPublicKey": { - "type": "String", - "placeholders": {} - }, - "enableMultiAccounts": "(BETA) Włącza obsługę wielu kont na tym urządzeniu", - "@enableMultiAccounts": {}, - "pickImage": "Wybierz obraz", - "@pickImage": { - "type": "String", - "placeholders": {} - }, - "passwordRecovery": "Odzyskiwanie hasła", - "@passwordRecovery": { - "type": "String", - "placeholders": {} - }, - "openInMaps": "Otwórz w mapach", - "@openInMaps": { - "type": "String", - "placeholders": {} - }, - "link": "Link", - "@link": {}, - "roomHasBeenUpgraded": "Pokój zostać zaktualizowany", - "@roomHasBeenUpgraded": { - "type": "String", - "placeholders": {} - }, - "repeatPassword": "Powtórz hasło", - "@repeatPassword": {}, - "all": "Wszystkie", - "@all": { - "type": "String", - "placeholders": {} - }, - "appLock": "Blokada aplikacji", - "@appLock": { - "type": "String", - "placeholders": {} - }, - "theyMatch": "Zgadzają się", - "@theyMatch": { - "type": "String", - "placeholders": {} - }, - "sendOnEnter": "Wyślij enterem", - "@sendOnEnter": {}, - "autoplayImages": "Automatycznie odtwarzaj animowane naklejki i emotikony", - "@autoplayImages": { - "type": "String", - "placeholder": {} - }, - "cantOpenUri": "Nie można otworzyć linku {uri}", - "@cantOpenUri": { - "type": "String", - "placeholders": { - "uri": { - "type": "String" - } - } - }, - "configureChat": "Konfiguruj czat", - "@configureChat": { - "type": "String", - "placeholders": {} - }, - "homeserver": "Adres serwera", - "@homeserver": {}, - "locationDisabledNotice": "Usługi lokalizacji są wyłączone. Proszę włącz je aby móc udostępnić swoją lokalizację.", - "@locationDisabledNotice": { - "type": "String", - "placeholders": {} - }, - "oneClientLoggedOut": "Jedno z twoich urządzeń zostało wylogowane", - "@oneClientLoggedOut": {}, - "privacy": "Prywatność", - "@privacy": { - "type": "String", - "placeholders": {} - }, - "theyDontMatch": "Nie zgadzają się", - "@theyDontMatch": { - "type": "String", - "placeholders": {} - }, - "toggleFavorite": "Przełącz ulubione", - "@toggleFavorite": { - "type": "String", - "placeholders": {} - }, - "yourChatBackupHasBeenSetUp": "Kopia zapasowa Twojego czatu została ustawiona.", - "@yourChatBackupHasBeenSetUp": {}, - "chatHasBeenAddedToThisSpace": "Czat został dodany do tej przestrzeni", - "@chatHasBeenAddedToThisSpace": {}, - "contentHasBeenReported": "Treść została zgłoszona administratorom serwera", - "@contentHasBeenReported": { - "type": "String", - "placeholders": {} - }, - "editRoomAvatar": "Edytuj zdjęcie pokoju", - "@editRoomAvatar": { - "type": "String", - "placeholders": {} - }, - "fontSize": "Rozmiar fontu", - "@fontSize": { - "type": "String", - "placeholders": {} - }, - "groups": "Grupy", - "@groups": { - "type": "String", - "placeholders": {} - }, - "locationPermissionDeniedNotice": "Brak uprawnień. Proszę zezwól aplikacji na dostęp do lokalizacji aby móc ją udostępnić.", - "@locationPermissionDeniedNotice": { - "type": "String", - "placeholders": {} - }, - "openVideoCamera": "Nagraj film", - "@openVideoCamera": { - "type": "String", - "placeholders": {} - }, - "messages": "Wiadomości", - "@messages": { - "type": "String", - "placeholders": {} - }, - "offensive": "Obraźliwe", - "@offensive": { - "type": "String", - "placeholders": {} - }, - "pleaseEnterYourPin": "Podaj swój PIN", - "@pleaseEnterYourPin": { - "type": "String", - "placeholders": {} - }, - "reason": "Powód", - "@reason": { - "type": "String", - "placeholders": {} - }, - "redactMessage": "Usuń wiadomość", - "@redactMessage": { - "type": "String", - "placeholders": {} - }, - "setCustomEmotes": "Ustaw niestandardowe emotikony", - "@setCustomEmotes": { - "type": "String", - "placeholders": {} - }, - "withTheseAddressesRecoveryDescription": "Dzięki tym adresom możesz odzyskać swoje hasło.", - "@withTheseAddressesRecoveryDescription": { - "type": "String", - "placeholders": {} - }, - "spaceIsPublic": "Ustaw jako publiczną", - "@spaceIsPublic": { - "type": "String", - "placeholders": {} - }, - "shareLocation": "Udostępnij lokalizację", - "@shareLocation": { - "type": "String", - "placeholders": {} - }, - "setPermissionsLevel": "Ustaw poziom uprawnień", - "@setPermissionsLevel": { - "type": "String", - "placeholders": {} - }, - "skip": "Pomiń", - "@skip": { - "type": "String", - "placeholders": {} - }, - "spaceName": "Nazwa przestrzeni", - "@spaceName": { - "type": "String", - "placeholders": {} - }, - "toggleMuted": "Przełącz wyciszone", - "@toggleMuted": { - "type": "String", - "placeholders": {} - }, - "toggleUnread": "Oznacz przeczytane/nieprzeczytane", - "@toggleUnread": { - "type": "String", - "placeholders": {} - }, - "unavailable": "Niedostępne", - "@unavailable": { - "type": "String", - "placeholders": {} - }, - "publish": "Opublikuj", - "@publish": {}, - "scanQrCode": "Skanuj kod QR", - "@scanQrCode": {}, - "createNewSpace": "Nowa przestrzeń", - "@createNewSpace": { - "type": "String", - "placeholders": {} - }, - "offline": "Offline", - "@offline": { - "type": "String", - "placeholders": {} - }, - "addToSpace": "Dodaj do przestrzeni", - "@addToSpace": {}, - "changeYourAvatar": "Zmień swoje zdjęcie", - "@changeYourAvatar": { - "type": "String", - "placeholders": {} - }, - "commandHint_clearcache": "Wyczyść pamięć podręczną", - "@commandHint_clearcache": { - "type": "String", - "description": "Usage hint for the command /clearcache" - }, - "commandHint_create": "Stwórz pusty czat\nUżyj --no-encryption by wyłączyć szyfrowanie", - "@commandHint_create": { - "type": "String", - "description": "Usage hint for the command /create" - }, - "commandHint_dm": "Rozpocznij czat bezpośredni\nUżyj --no-encryption by wyłączyć szyfrowanie", - "@commandHint_dm": { - "type": "String", - "description": "Usage hint for the command /dm" - }, - "editBlockedServers": "Edytuj zablokowane serwery", - "@editBlockedServers": { - "type": "String", - "placeholders": {} - }, - "enableEncryption": "Włącz szyfowanie", - "@enableEncryption": { - "type": "String", - "placeholders": {} - }, - "defaultPermissionLevel": "Domyślny poziom uprawnień dla nowych użytkowników", - "@defaultPermissionLevel": { - "type": "String", - "placeholders": {} - }, - "ok": "Ok", - "@ok": { - "type": "String", - "placeholders": {} - }, - "oopsPushError": "Ojej! Wystąpił błąd podczas ustawiania powiadomień push.", - "@oopsPushError": { - "type": "String", - "placeholders": {} - }, - "reject": "Odrzuć", - "@reject": { - "type": "String", - "placeholders": {} - }, - "online": "Online", - "@online": { - "type": "String", - "placeholders": {} - }, - "status": "Status", - "@status": { - "type": "String", - "placeholders": {} - }, - "tooManyRequestsWarning": "Zbyt wiele żądań. Proszę spróbować później.", - "@tooManyRequestsWarning": { - "type": "String", - "placeholders": {} - }, - "commandHint_discardsession": "Odrzuć sesję", - "@commandHint_discardsession": { - "type": "String", - "description": "Usage hint for the command /discardsession" - }, - "warning": "Uwaga!", - "@warning": { - "type": "String", - "placeholders": {} - }, - "messageInfo": "Informacje o wiadomości", - "@messageInfo": {}, - "time": "Czas", - "@time": {}, - "messageType": "Rodzaj wiadomości", - "@messageType": {}, - "separateChatTypes": "Oddzielenie czatów bezpośrednich i grupowych", - "@separateChatTypes": { - "type": "String", - "placeholders": {} - }, - "waitingPartnerAcceptRequest": "Oczekiwanie na zaakceptowanie prośby przez drugą osobę…", - "@waitingPartnerAcceptRequest": { - "type": "String", - "placeholders": {} - }, - "waitingPartnerEmoji": "Oczekiwanie na zaakceptowanie emoji przez drugą osobę…", - "@waitingPartnerEmoji": { - "type": "String", - "placeholders": {} - }, - "pleaseChooseAPasscode": "Wybierz kod dostępu", - "@pleaseChooseAPasscode": { - "type": "String", - "placeholders": {} - }, - "unblockDevice": "Odblokuj urządzenie", - "@unblockDevice": { - "type": "String", - "placeholders": {} - }, - "whyDoYouWantToReportThis": "Dlaczego chcesz to zgłosić?", - "@whyDoYouWantToReportThis": { - "type": "String", - "placeholders": {} - }, - "removeFromSpace": "Usuń z przestrzeni", - "@removeFromSpace": {}, - "extremeOffensive": "Bardzo obraźliwe", - "@extremeOffensive": { - "type": "String", - "placeholders": {} - }, - "errorObtainingLocation": "Błąd w ustalaniu lokalizacji: {error}", - "@errorObtainingLocation": { - "type": "String", - "placeholders": { - "error": { - "type": "String" - } - } - }, - "howOffensiveIsThisContent": "Jak bardzo obraźliwa jest ta treść?", - "@howOffensiveIsThisContent": { - "type": "String", - "placeholders": {} - }, - "inoffensive": "Nieobraźliwe", - "@inoffensive": { - "type": "String", - "placeholders": {} - }, - "recoveryKey": "Klucz odzyskiwania", - "@recoveryKey": {}, - "recoveryKeyLost": "Utracono klucz odzyskiwania?", - "@recoveryKeyLost": {}, - "sentCallInformations": "{senderName} wysłał/-a informacje o połączeniu", - "@sentCallInformations": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "singlesignon": "Pojedyncze logowanie", - "@singlesignon": { - "type": "String", - "placeholders": {} - }, - "startFirstChat": "Rozpocznij swój pierwszy czat", - "@startFirstChat": {}, - "verifyStart": "Rozpocznij weryfikację", - "@verifyStart": { - "type": "String", - "placeholders": {} - }, - "verifySuccess": "Pomyślnie zweryfikowano!", - "@verifySuccess": { - "type": "String", - "placeholders": {} - }, - "verifyTitle": "Weryfikowanie innego konta", - "@verifyTitle": { - "type": "String", - "placeholders": {} - }, - "waitingPartnerNumbers": "Oczekiwanie na zaakceptowanie numerów przez drugą osobę…", - "@waitingPartnerNumbers": { - "type": "String", - "placeholders": {} - }, - "sender": "Nadawca", - "@sender": {}, - "openGallery": "Otwórz galerię", - "@openGallery": {}, - "start": "Start", - "@start": {}, - "pleaseEnterRecoveryKeyDescription": "Aby odblokować wcześniejsze wiadomości, wprowadź swój klucz odzyskiwania, który został wygenerowany w poprzedniej sesji. Twój klucz odzyskiwania NIE jest Twoim hasłem.", - "@pleaseEnterRecoveryKeyDescription": {}, - "videoWithSize": "Film ({size})", - "@videoWithSize": { - "type": "String", - "placeholders": { - "size": { - "type": "String" - } - } - }, - "hydrateTorLong": "Czy ostatnio eksportowałeś/-aś swoją sesję na TOR? Szybko ją zaimportuj i kontynuuj rozmowy.", - "@hydrateTorLong": {}, - "dehydrateTorLong": "W przypadku użytkowników sieci TOR zaleca się eksportowanie sesji przed zamknięciem okna.", - "@dehydrateTorLong": {}, - "hydrate": "Przywracanie z pliku kopii zapasowej", - "@hydrate": {}, - "noMatrixServer": "{server1} nie jest serwerem Matriksa, czy chcesz zamiast niego użyć {server2}?", - "@noMatrixServer": { - "type": "String", - "placeholders": { - "server1": { - "type": "String" - }, - "server2": { - "type": "String" - } - } - }, - "hydrateTor": "Użytkownicy TOR: Importuj eksport sesji", - "@hydrateTor": {}, - "numUsersTyping": "{count} użytkowników pisze…", - "@numUsersTyping": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "onlineKeyBackupEnabled": "Kopia zapasowa kluczy online jest włączona", - "@onlineKeyBackupEnabled": { - "type": "String", - "placeholders": {} - }, - "pleaseEnterRecoveryKey": "Wprowadź swój klucz odzyskiwania:", - "@pleaseEnterRecoveryKey": {}, - "submit": "Odeślij", - "@submit": { - "type": "String", - "placeholders": {} - }, - "weSentYouAnEmail": "Wysłaliśmy Ci wiadomość e-mail", - "@weSentYouAnEmail": { - "type": "String", - "placeholders": {} - }, - "unverified": "Niezweryfikowane", - "@unverified": {}, - "wipeChatBackup": "Wymazać kopię zapasową czatu, aby utworzyć nowy klucz odzyskiwania?", - "@wipeChatBackup": { - "type": "String", - "placeholders": {} - }, - "whoCanPerformWhichAction": "Kto może wykonywać jakie czynności", - "@whoCanPerformWhichAction": { - "type": "String", - "placeholders": {} - }, - "reportUser": "Zgłoś użytkownika", - "@reportUser": {}, - "dismiss": "Odrzuć", - "@dismiss": {}, - "markAsRead": "Oznacz jako przeczytane", - "@markAsRead": {}, - "passphraseOrKey": "fraza dostępu lub klucz odzyskiwania", - "@passphraseOrKey": { - "type": "String", - "placeholders": {} - }, - "openChat": "Otwórz czat", - "@openChat": {}, - "addToSpaceDescription": "Wybierz przestrzeń, do której ten czat ma być dodany.", - "@addToSpaceDescription": {}, - "supposedMxid": "To powinno być {mxid}", - "@supposedMxid": { - "type": "String", - "placeholders": { - "mxid": { - "type": "String" - } - } - }, - "commandHint_markasdm": "Oznacz jako pokój wiadomości bezpośrednich dla podanego Matrix ID", - "@commandHint_markasdm": {}, - "confirmMatrixId": "Potwierdź swój identyfikator Matrix w celu usunięcia konta.", - "@confirmMatrixId": {}, - "commandHint_markasgroup": "Oznacz jako grupę", - "@commandHint_markasgroup": {}, - "noEmotesFound": "Nie znaleziono żadnych emotikonów. 😕", - "@noEmotesFound": { - "type": "String", - "placeholders": {} - }, - "dehydrate": "Eksportuj sesję i wymaż urządzenie", - "@dehydrate": {}, - "dehydrateWarning": "Tego nie można cofnąć. Upewnij się, że plik kopii zapasowej jest bezpiecznie przechowywany.", - "@dehydrateWarning": {}, - "dehydrateTor": "Użytkownicy TOR: Eksportuj sesję", - "@dehydrateTor": {}, - "unsupportedAndroidVersion": "Nieobsługiwana wersja systemu Android", - "@unsupportedAndroidVersion": {}, - "widgetCustom": "Własny", - "@widgetCustom": {}, - "widgetEtherpad": "Notatka", - "@widgetEtherpad": {}, - "widgetJitsi": "Jitsi Meet", - "@widgetJitsi": {}, - "pinMessage": "Przypnij do pokoju", - "@pinMessage": {}, - "confirmEventUnpin": "Czy na pewno chcesz trwale odpiąć wydarzenie?", - "@confirmEventUnpin": {}, - "youJoinedTheChat": "Dołączono do czatu", - "@youJoinedTheChat": {}, - "user": "Użytkownik", - "@user": {}, - "custom": "Własne", - "@custom": {}, - "newGroup": "Nowa grupa", - "@newGroup": {}, - "newSpace": "Nowa przestrzeń", - "@newSpace": {}, - "fileIsTooBigForServer": "Nie udało się wysłać! Ten serwer obsługuje załączniki o maksymalnej wielkości {max}.", - "@fileIsTooBigForServer": {}, - "youBannedUser": "Zbanowałeś/-aś {user}", - "@youBannedUser": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "users": "Użytkownicy", - "@users": {}, - "countFiles": "{count} plików", - "@countFiles": { - "placeholders": { - "count": { - "type": "int" - } - } - }, - "noOtherDevicesFound": "Nie znaleziono innych urządzeń", - "@noOtherDevicesFound": {}, - "widgetUrlError": "Niepoprawny URL.", - "@widgetUrlError": {}, - "widgetNameError": "Podaj nazwę wyświetlaną.", - "@widgetNameError": {}, - "encryptThisChat": "Zaszyfruj ten czat", - "@encryptThisChat": {}, - "disableEncryptionWarning": "Ze względów bezpieczeństwa nie można wyłączyć szyfrowania w czacie, w którym zostało ono wcześniej włączone.", - "@disableEncryptionWarning": {}, - "deviceKeys": "Klucze urządzenia:", - "@deviceKeys": {}, - "emailOrUsername": "Adres e-mail lub nazwa użytkownika", - "@emailOrUsername": {}, - "indexedDbErrorLong": "Przechowywanie wiadomości niestety nie jest domyślnie włączone w trybie prywatnym.\nOdwiedź\n - about:config\n - ustaw dom.indexedDB.privateBrowsing.enabled na true\nW przeciwnym razie nie jest możliwe uruchomienie FluffyChat.", - "@indexedDbErrorLong": {}, - "saveKeyManuallyDescription": "Zapisz ten klucz ręcznie, uruchamiając systemowe okno dialogowe udostępniania lub schowek.", - "@saveKeyManuallyDescription": {}, - "screenSharingTitle": "udostępnianie ekranu", - "@screenSharingTitle": {}, - "appearOnTopDetails": "Umożliwia wyświetlanie aplikacji nad innymi (nie jest to konieczne, jeśli FluffyChat jest już ustawiony jako konto do dzwonienia)", - "@appearOnTopDetails": {}, - "noKeyForThisMessage": "Może się to zdarzyć, jeśli wiadomość została wysłana przed zalogowaniem się na to konto na tym urządzeniu.\n\nMożliwe jest również, że nadawca zablokował Twoje urządzenie lub coś poszło nie tak z połączeniem internetowym.\n\nJesteś w stanie odczytać wiadomość na innej sesji? W takim razie możesz przenieść z niej wiadomość! Wejdź w Ustawienia > Urządzenia i upewnij się, że Twoje urządzenia zweryfikowały się wzajemnie. Gdy następnym razem otworzysz pokój i obie sesje będą włączone, klucze zostaną przekazane automatycznie.\n\nNie chcesz stracić kluczy podczas wylogowania lub przełączania urządzeń? Upewnij się, że w ustawieniach masz włączoną kopię zapasową czatu.", - "@noKeyForThisMessage": {}, - "sorryThatsNotPossible": "Przepraszamy... to nie jest możliwe", - "@sorryThatsNotPossible": {}, - "noBackupWarning": "Uwaga! Bez włączenia kopii zapasowej czatu, stracisz dostęp do swoich zaszyfrowanych wiadomości. Zaleca się włączenie kopii zapasowej czatu przed wylogowaniem.", - "@noBackupWarning": {}, - "commandHint_googly": "Wyślij kręcące się oczka", - "@commandHint_googly": {}, - "callingPermissions": "Uprawnienia połączeń", - "@callingPermissions": {}, - "storeInAndroidKeystore": "Przechowaj w Android KeyStore", - "@storeInAndroidKeystore": {}, - "commandHint_cuddle": "Wyślij przytulenie", - "@commandHint_cuddle": {}, - "googlyEyesContent": "{senderName} wysyła ci kręcące się oczka", - "@googlyEyesContent": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "cuddleContent": "{senderName} przytula cię", - "@cuddleContent": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "hugContent": "{senderName} uściska cię", - "@hugContent": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "commandHint_hug": "Wyślij uścisk", - "@commandHint_hug": {}, - "reactedWith": "{sender} zareagował/-a z {reaction}", - "@reactedWith": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - }, - "reaction": { - "type": "String" - } - } - }, - "emojis": "Emoji", - "@emojis": {}, - "placeCall": "Zadzwoń", - "@placeCall": {}, - "voiceCall": "Połączenie głosowe", - "@voiceCall": {}, - "unsupportedAndroidVersionLong": "Ta funkcja wymaga nowszej wersji systemu Android. Sprawdź aktualizacje lub wsparcie Lineage OS.", - "@unsupportedAndroidVersionLong": {}, - "videoCallsBetaWarning": "Należy pamiętać, że połączenia wideo są obecnie w fazie beta. Mogą nie działać zgodnie z oczekiwaniami lub nie działać w ogóle na wszystkich platformach.", - "@videoCallsBetaWarning": {}, - "experimentalVideoCalls": "Eksperymentalne połączenia wideo", - "@experimentalVideoCalls": {}, - "indexedDbErrorTitle": "Problemy związane z trybem prywatnym", - "@indexedDbErrorTitle": {}, - "switchToAccount": "Przełącz na konto {number}", - "@switchToAccount": { - "type": "number", - "placeholders": { - "number": { - "type": "String" - } - } - }, - "nextAccount": "Następne konto", - "@nextAccount": {}, - "previousAccount": "Poprzednie konto", - "@previousAccount": {}, - "addWidget": "Dodaj widżet", - "@addWidget": {}, - "widgetVideo": "Film", - "@widgetVideo": {}, - "widgetName": "Nazwa", - "@widgetName": {}, - "errorAddingWidget": "Błąd podczas dodawania widżetu.", - "@errorAddingWidget": {}, - "youRejectedTheInvitation": "Odrzucono zaproszenie", - "@youRejectedTheInvitation": {}, - "youAcceptedTheInvitation": "👍 Zaakceptowałeś/-aś zaproszenie", - "@youAcceptedTheInvitation": {}, - "youHaveWithdrawnTheInvitationFor": "Wycofano zaproszenie dla {user}", - "@youHaveWithdrawnTheInvitationFor": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "youInvitedBy": "📩 Zostałeś/-aś zaproszony/-a przez {user}", - "@youInvitedBy": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "youInvitedUser": "📩 Zaprosiłeś/-aś {user}", - "@youInvitedUser": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "youKicked": "👞 Wyrzuciłeś/-aś {user}", - "@youKicked": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "youKickedAndBanned": "🙅 Wyrzuciłeś/-aś i zbanowałeś/-aś {user}", - "@youKickedAndBanned": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "youUnbannedUser": "Odbanowałeś/-aś {user}", - "@youUnbannedUser": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "unlockOldMessages": "Odblokuj stare wiadomości", - "@unlockOldMessages": {}, - "storeInSecureStorageDescription": "Przechowaj klucz odzyskiwania w bezpiecznym magazynie tego urządzenia.", - "@storeInSecureStorageDescription": {}, - "storeInAppleKeyChain": "Przechowaj w pęku kluczy Apple", - "@storeInAppleKeyChain": {}, - "storeSecurlyOnThisDevice": "Przechowaj bezpiecznie na tym urządzeniu", - "@storeSecurlyOnThisDevice": {}, - "foregroundServiceRunning": "To powiadomienie pojawia się, gdy usługa w tle jest uruchomiona.", - "@foregroundServiceRunning": {}, - "screenSharingDetail": "Udostępniasz swój ekran w FluffyChat", - "@screenSharingDetail": {}, - "callingAccount": "Konto połączeń", - "@callingAccount": {}, - "callingAccountDetails": "Pozwala FluffyChat używać natywnej aplikacji do wykonywania połączeń w Androidzie.", - "@callingAccountDetails": {}, - "appearOnTop": "Wyświetlaj nad innymi", - "@appearOnTop": {}, - "otherCallingPermissions": "Mikrofon, kamera i inne uprawnienia FluffyChat", - "@otherCallingPermissions": {}, - "whyIsThisMessageEncrypted": "Dlaczego nie można odczytać tej wiadomości?", - "@whyIsThisMessageEncrypted": {}, - "enterSpace": "Wejdź do przestrzeni", - "@enterSpace": {}, - "enterRoom": "Wejdź do pokoju", - "@enterRoom": {}, - "allSpaces": "Wszystkie przestrzenie", - "@allSpaces": {}, - "numChats": "{number} czatów", - "@numChats": { - "type": "number", - "placeholders": { - "number": { - "type": "String" - } - } - }, - "hideUnimportantStateEvents": "Ukryj nieistotne wydarzenia stanu", - "@hideUnimportantStateEvents": {}, - "doNotShowAgain": "Nie pokazuj ponownie", - "@doNotShowAgain": {}, - "wasDirectChatDisplayName": "Pusty czat (wcześniej {oldDisplayName})", - "@wasDirectChatDisplayName": { - "type": "String", - "placeholders": { - "oldDisplayName": { - "type": "String" - } - } - }, - "newSpaceDescription": "Przestrzenie pozwalają na konsolidację czatów i budowanie prywatnych lub publicznych społeczności.", - "@newSpaceDescription": {}, - "reopenChat": "Otwórz ponownie czat", - "@reopenChat": {}, - "fileHasBeenSavedAt": "Plik został zapisany w ścieżce {path}", - "@fileHasBeenSavedAt": { - "type": "String", - "placeholders": { - "path": { - "type": "String" - } - } - }, - "addToBundle": "Dodaj do pakietu", - "@addToBundle": {}, - "bundleName": "Nazwa pakietu", - "@bundleName": {}, - "editBundlesForAccount": "Edytuj pakiety dla tego konta", - "@editBundlesForAccount": {}, - "jumpToLastReadMessage": "Przejdź do ostatnio przeczytanej wiadomości", - "@jumpToLastReadMessage": {}, - "readUpToHere": "Czytaj do tego miejsca", - "@readUpToHere": {}, - "jump": "Przejdź", - "@jump": {}, - "removeFromBundle": "Usuń z tego pakietu", - "@removeFromBundle": {}, - "openLinkInBrowser": "Otwórz link w przeglądarce", - "@openLinkInBrowser": {}, - "allRooms": "Wszystkie czaty grupowe", - "@allRooms": { - "type": "String", - "placeholders": {} - }, - "reportErrorDescription": "😭 O nie! Coś poszło nie tak. Spróbuj ponownie później. Jeśli chcesz, możesz zgłosić ten błąd autorom programu.", - "@reportErrorDescription": {}, - "setColorTheme": "Ustal styl kolorów:", - "@setColorTheme": {}, - "tryAgain": "Spróbuj ponownie", - "@tryAgain": {}, - "messagesStyle": "Wiadomości:", - "@messagesStyle": {}, - "chatDescription": "Opis czatu", - "@chatDescription": {}, - "invalidServerName": "Nieprawidłowa nazwa serwera", - "@invalidServerName": {}, - "chatPermissions": "Uprawnienia w czacie", - "@chatPermissions": {}, - "signInWithPassword": "Zaloguj się z hasłem", - "@signInWithPassword": {}, - "setChatDescription": "Ustaw opis czatu", - "@setChatDescription": {}, - "importFromZipFile": "Zaimportuj z pliku .zip", - "@importFromZipFile": {}, - "redactedBy": "Usunięte przez {username}", - "@redactedBy": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "signInWith": "Zaloguj się z {provider}", - "@signInWith": { - "type": "String", - "placeholders": { - "provider": { - "type": "String" - } - } - }, - "optionalRedactReason": "(Opcjonalnie) Powód usunięcia tej wiadomości...", - "@optionalRedactReason": {}, - "exportEmotePack": "Eksportuj pakiet emotikonów jako .zip", - "@exportEmotePack": {}, - "inviteContactToGroupQuestion": "Czy chcesz zaprosić {contact} do czatu „{groupName}”?", - "@inviteContactToGroupQuestion": {}, - "redactedByBecause": "Usunięte przez {username} z powodu „{reason}”", - "@redactedByBecause": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "reason": { - "type": "String" - } - } - }, - "redactMessageDescription": "Wiadomość zostanie usunięta u wszystkich uczestników tej rozmowy. Tego nie można cofnąć.", - "@redactMessageDescription": {}, - "invalidInput": "Nieprawidłowe dane!", - "@invalidInput": {}, - "report": "zgłoś", - "@report": {}, - "addChatDescription": "Dodaj opis tego czatu...", - "@addChatDescription": {}, - "directChat": "Czat bezpośredni", - "@directChat": {}, - "wrongPinEntered": "Wprowadzono nieprawidłowy kod PIN! Spróbuj ponownie za {seconds} sekund...", - "@wrongPinEntered": { - "type": "String", - "placeholders": { - "seconds": { - "type": "int" - } - } - }, - "sendTypingNotifications": "Wysyłaj powiadomienie o pisaniu", - "@sendTypingNotifications": {}, - "inviteGroupChat": "📨 Zaproszenie do rozmowy grupowej", - "@inviteGroupChat": {}, - "invitePrivateChat": "📨 Zaproszenie do rozmowy prywatnej", - "@invitePrivateChat": {}, - "importEmojis": "Zaimportuj emotikony", - "@importEmojis": {}, - "noChatDescriptionYet": "Nie utworzono jeszcze opisu czatu.", - "@noChatDescriptionYet": {}, - "notAnImage": "To nie jest plik obrazu.", - "@notAnImage": {}, - "chatDescriptionHasBeenChanged": "Zmieniono opis czatu", - "@chatDescriptionHasBeenChanged": {}, - "profileNotFound": "Nie można odnaleźć użytkownika na serwerze. Być może wystąpił problem z połączeniem lub użytkownik nie istnieje.", - "@profileNotFound": {}, - "shareInviteLink": "Udostępnij link z zaproszeniem", - "@shareInviteLink": {}, - "emoteKeyboardNoRecents": "Tutaj pojawiają się ostatnio używane emotikony...", - "@emoteKeyboardNoRecents": { - "type": "String", - "placeholders": {} - }, - "setTheme": "Ustaw wygląd:", - "@setTheme": {}, - "replace": "Zastąp", - "@replace": {}, - "pleaseTryAgainLaterOrChooseDifferentServer": "Spróbuj ponownie później lub wybierz inny serwer.", - "@pleaseTryAgainLaterOrChooseDifferentServer": {}, - "createGroup": "Utwórz grupę", - "@createGroup": {}, - "importNow": "Zaimportuj", - "@importNow": {}, - "invite": "Zaproszenie", - "@invite": {}, - "block": "Zablokuj", - "@block": {}, - "blockedUsers": "Zablokowani użytkownicy", - "@blockedUsers": {}, - "blockUsername": "Ignoruj użytkownika", - "@blockUsername": {}, - "publicLink": "Link publiczny", - "@publicLink": {}, - "transparent": "Przezroczystość", - "@transparent": {}, - "select": "Zaznacz", - "@select": {}, - "calls": "Połączenia", - "@calls": {}, - "overview": "Podsumowanie", - "@overview": {}, - "learnMore": "Dowiedz się więcej", - "@learnMore": {}, - "groupName": "Nazwa grupy", - "@groupName": {}, - "startConversation": "Rozpocznij rozmowę", - "@startConversation": {}, - "newPassword": "Nowe hasło", - "@newPassword": {}, - "thisDevice": "To urządzenie:", - "@thisDevice": {}, - "gallery": "Galeria", - "@gallery": {}, - "files": "Pliki", - "@files": {}, - "discover": "Odkrywaj", - "@discover": {}, - "restricted": "Ograniczone", - "@restricted": {}, - "decline": "Odmów", - "@decline": {}, - "nothingFound": "Nic nie odnaleziono...", - "@nothingFound": {}, - "stickers": "Naklejki", - "@stickers": {}, - "noChatsFoundHere": "Nie jeszcze ma żadnych czatów. Wciśnij poniższy przycisk, aby rozpocząć nowy czat. ⤵️", - "@noChatsFoundHere": {}, - "hideRedactedMessagesBody": "Usunięte wiadomości nie będą widoczne w czacie.", - "@hideRedactedMessagesBody": {}, - "hideMemberChangesInPublicChats": "Ukryj zmiany członkostwa w publicznych czatach", - "@hideMemberChangesInPublicChats": {}, - "passwordRecoverySettings": "Ustawienia odzyskiwania hasła", - "@passwordRecoverySettings": {}, - "hideMemberChangesInPublicChatsBody": "W celu poprawienia czytelności, nie pokazuj w historii publicznego czatu, czy ktoś do niego dołączył lub go opuścił.", - "@hideMemberChangesInPublicChatsBody": {}, - "presenceStyle": "Obecność:", - "@presenceStyle": { - "type": "String", - "placeholders": {} - }, - "invitedBy": "Zaproszony/-a przez {user}", - "@invitedBy": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "archiveRoomDescription": "Czat zostanie przeniesiony do archiwum. Pozostali użytkownicy będą mogli zobaczyć, że opuściłeś/-aś czat.", - "@archiveRoomDescription": {}, - "yourGlobalUserIdIs": "Twój globalny identyfikator to: ", - "@yourGlobalUserIdIs": {}, - "canceledKeyVerification": "{sender} anulował/-a weryfikację kluczy", - "@canceledKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "isReadyForKeyVerification": "{sender} jest gotowy/-a do weryfikacji kluczy", - "@isReadyForKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "commandHint_ignore": "Ignoruj podany identyfikator Matrix", - "@commandHint_ignore": {}, - "commandHint_unignore": "Przestań ignorować podany identyfikator Matrix", - "@commandHint_unignore": {}, - "changeTheChatPermissions": "Zmień uprawnienia w czacie", - "@changeTheChatPermissions": {}, - "changelog": "Lista zmian", - "@changelog": {}, - "inviteOtherUsers": "Zaproś innych użytkowników do tego czatu", - "@inviteOtherUsers": {}, - "blockListDescription": "Możesz zablokować uciążliwych użytkowników. Nie będziesz widzieć ani otrzymywać wiadomości oraz zaproszeń od nich.", - "@blockListDescription": {}, - "formattedMessages": "Sformatowane wiadomości", - "@formattedMessages": {}, - "banUserDescription": "Użytkownik zostanie zbanowany w czacie i nie będzie w stanie dołączyć do czatu do momentu odbanowania.", - "@banUserDescription": {}, - "subspace": "Podprzestrzeń", - "@subspace": {}, - "sendReadReceipts": "Wysyłaj powiadomienia o przeczytaniu wiadomości", - "@sendReadReceipts": {}, - "verifyOtherDevice": "🔐 Zweryfikuj inne urządzenie", - "@verifyOtherDevice": {}, - "prepareSendingAttachment": "Przygotuj wysyłanie załącznika...", - "@prepareSendingAttachment": {}, - "acceptedKeyVerification": "{sender} zaakceptował/-a weryfikację kluczy", - "@acceptedKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "databaseMigrationTitle": "Baza danych jest zoptymalizowana", - "@databaseMigrationTitle": {}, - "hasKnocked": "{user} zapukał-/a", - "@hasKnocked": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "userLevel": "{level} - Użytkownik", - "@userLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "int" - } - } - }, - "changeTheVisibilityOfChatHistory": "Zmień widoczność historii czatu", - "@changeTheVisibilityOfChatHistory": {}, - "sendImages": "Wyślij {count} obrazów", - "@sendImages": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "noPublicLinkHasBeenCreatedYet": "Nie utworzono jeszcze żadnego publicznego linku", - "@noPublicLinkHasBeenCreatedYet": {}, - "knock": "Zapukaj", - "@knock": {}, - "databaseBuildErrorBody": "Nie udało się utworzyć bazy danych SQLite. Aplikacja na razie spróbuje korzystać ze starej bazy. Prosimy zgłosić ten błąd autorom aplikacji na {url}. Treść błędu to: {error}", - "@databaseBuildErrorBody": { - "type": "String", - "placeholders": { - "url": { - "type": "String" - }, - "error": { - "type": "String" - } - } - }, - "restoreSessionBody": "Aplikacja spróbuje teraz odzyskać Twoją sesję z kopii zapasowej. Prosimy zgłosić ten błąd autorom aplikacji na {url}. Treść błędu to: {error}", - "@restoreSessionBody": { - "type": "String", - "placeholders": { - "url": { - "type": "String" - }, - "error": { - "type": "String" - } - } - }, - "startedKeyVerification": "{sender} rozpoczął/-ęła weryfikację kluczy", - "@startedKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "sendTypingNotificationsDescription": "Pozostali uczestnicy czatu mogą widzieć kiedy piszesz nową wiadomość.", - "@sendTypingNotificationsDescription": {}, - "sendReadReceiptsDescription": "Pozostali uczestnicy czatu mogą widzieć zobaczyć kiedy przeczytasz wiadomość.", - "@sendReadReceiptsDescription": {}, - "noDatabaseEncryption": "Szyfrowanie bazy danych nie jest obsługiwane na tej platformie", - "@noDatabaseEncryption": {}, - "thereAreCountUsersBlocked": "Obecnie jest {count} zablokowanych użytkowników.", - "@thereAreCountUsersBlocked": { - "type": "String", - "count": {} - }, - "goToSpace": "Przejdź do przestrzeni {space}", - "@goToSpace": { - "type": "String", - "space": {} - }, - "markAsUnread": "Oznacz jako nieprzeczytane", - "@markAsUnread": {}, - "moderatorLevel": "{level} - Moderator", - "@moderatorLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "int" - } - } - }, - "adminLevel": "{level} - Administrator", - "@adminLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "int" - } - } - }, - "sendRoomNotifications": "Wysyłaj powiadomienia @room", - "@sendRoomNotifications": {}, - "chatPermissionsDescription": "Ustal jaki poziom uprawnień jest wymagany dla określonych czynności w czacie. Poziomy uprawnień 0, 50 i 100 zwykle dotyczą odpowiednio użytkowników, moderatorów i administratorów, ale możliwa jest dowolna gradacja.", - "@chatPermissionsDescription": {}, - "changeTheCanonicalRoomAlias": "Zmień główny publiczny czatu", - "@changeTheCanonicalRoomAlias": {}, - "changeTheDescriptionOfTheGroup": "Zmień opis czatu", - "@changeTheDescriptionOfTheGroup": {}, - "sendCanceled": "Anulowano wysyłanie", - "@sendCanceled": {}, - "homeserverDescription": "Wszystkie Twoje dane trzymane są na serwerze domowym, jak u dostawców usług e-mail. Możesz wybrać swój serwer domowy i nadal rozmawiać ze wszystkimi. Dowiedz się więcej na https://matrix.org.", - "@homeserverDescription": {}, - "doesNotSeemToBeAValidHomeserver": "Wydaje się nie być kompatybilnym serwerem domowym. Niepoprawny adres URL?", - "@doesNotSeemToBeAValidHomeserver": {}, - "calculatingFileSize": "Obliczanie rozmiaru pliku...", - "@calculatingFileSize": {}, - "sendingAttachment": "Wysyłanie załącznika...", - "@sendingAttachment": {}, - "generatingVideoThumbnail": "Generowanie podglądu filmu...", - "@generatingVideoThumbnail": {}, - "compressVideo": "Kompresowanie filmu...", - "@compressVideo": {}, - "sendingAttachmentCountOfCount": "Wysyłanie {index} z {length} części załącznika...", - "@sendingAttachmentCountOfCount": { - "type": "integer", - "placeholders": { - "index": { - "type": "int" - }, - "length": { - "type": "int" - } - } - }, - "welcomeText": "No cześć! 👋 Tutaj FluffyChat. Możesz zapisać się do dowolnego serwera domowego, kompatybilnego z https://matrix.org i rozmawiać ze wszystkimi. To duża zdecentralizowana sieć czatów!", - "@welcomeText": {}, - "blur": "Rozmazanie:", - "@blur": {}, - "opacity": "Przezroczystość:", - "@opacity": {}, - "setWallpaper": "Ustaw tapetę", - "@setWallpaper": {}, - "manageAccount": "Zarządzaj kontem", - "@manageAccount": {}, - "noContactInformationProvided": "Serwer nie dostarcza żadnych poprawnych danych kontaktowych", - "@noContactInformationProvided": {}, - "contactServerAdmin": "Skontaktuj się z administratorem serwera", - "@contactServerAdmin": {}, - "compress": "Skompresuj", - "@compress": {}, - "pleaseFillOut": "Proszę wypełnić", - "@pleaseFillOut": {}, - "invalidUrl": "Niepoprawny adres URL", - "@invalidUrl": {}, - "unableToJoinChat": "Nie udało się dołączyć do czatu. Może druga strona zakończyła już rozmowę?", - "@unableToJoinChat": {}, - "aboutHomeserver": "O {homeserver}", - "@aboutHomeserver": { - "type": "String", - "placeholders": { - "homeserver": { - "type": "String" - } - } - }, - "updateInstalled": "🎉 Zainstalowano aktualizację do wersji {version}!", - "@updateInstalled": { - "type": "String", - "placeholders": { - "version": { - "type": "String" - } - } - }, - "continueText": "Kontynuuj", - "@continueText": {}, - "noticeChatBackupDeviceVerification": "Uwaga: Urządzenia dodane do kopii zapasowej czatu automatycznie zostają zweryfikowane.", - "@noticeChatBackupDeviceVerification": {}, - "serverLimitReached": "Osiągnięto limit serwera. Czekanie {seconds} sekund...", - "@serverLimitReached": { - "type": "integer", - "placeholders": { - "seconds": { - "type": "int" - } - } - }, - "oneOfYourDevicesIsNotVerified": "Tylko kiedy Twoje urządzenie nie jest zweryfikowane", - "@oneOfYourDevicesIsNotVerified": {}, - "supportPage": "Strona obsługi użytkownika", - "@supportPage": {}, - "serverInformation": "Informacje o serwerze:", - "@serverInformation": {}, - "name": "Nazwa", - "@name": {}, - "website": "Strona internetowa", - "@website": {}, - "contactServerSecurity": "Skontaktuj się z działem bezpieczeństwa serwera", - "@contactServerSecurity": {}, - "version": "Wersja", - "@version": {}, - "accessAndVisibility": "Dostęp i widoczność", - "@accessAndVisibility": {}, - "customEmojisAndStickers": "Własne emotikony i naklejki", - "@customEmojisAndStickers": {}, - "globalChatId": "Globalny identyfikator czatu", - "@globalChatId": {}, - "accessAndVisibilityDescription": "Kto może dołączyć do tego czatu i w jaki sposób można ten czat znaleźć.", - "@accessAndVisibilityDescription": {}, - "customEmojisAndStickersBody": "Dodaj lub podziel się własnymi emotikonami i naklejkami, które będą mogły być użyte w dowolnym czacie.", - "@customEmojisAndStickersBody": {}, - "hideRedactedMessages": "Nie pokazuj usuniętych wiadomości", - "@hideRedactedMessages": {}, - "hideInvalidOrUnknownMessageFormats": "Ukryj niepoprawne lub nieznane typy wiadomości", - "@hideInvalidOrUnknownMessageFormats": {}, - "notifyMeFor": "Powiadom mnie o", - "@notifyMeFor": {}, - "pushNotificationsNotAvailable": "Powiadomienia push nie są dostępne", - "@pushNotificationsNotAvailable": {}, - "noUsersFoundWithQuery": "Niestety nie udało się nikogo znaleźć poprzez \"{query}\". Proszę sprawdzić, czy w zapytaniu nie ma literówek.", - "@noUsersFoundWithQuery": { - "type": "String", - "placeholders": { - "query": { - "type": "String" - } - } - }, - "chatCanBeDiscoveredViaSearchOnServer": "Czat będzie można znaleźć, szukając na {server}", - "@chatCanBeDiscoveredViaSearchOnServer": { - "type": "String", - "placeholders": { - "server": { - "type": "String" - } - } - }, - "publicSpaces": "Przestrzenie publiczne", - "@publicSpaces": {}, - "searchMore": "Szukaj dalej...", - "@searchMore": {}, - "formattedMessagesDescription": "Używaj Markdown do wyświetlania dodatkowego formatowania w wiadomościach, jak np. pogrubienie tekstu.", - "@formattedMessagesDescription": {}, - "verifyOtherUser": "🔐 Zweryfikuj innego użytkownika", - "@verifyOtherUser": {}, - "knockRestricted": "Pukanie jest ograniczone", - "@knockRestricted": {}, - "appLockDescription": "Zablokuj aplikację pinem kiedy nie jest używana", - "@appLockDescription": {}, - "knocking": "Pukanie", - "@knocking": {}, - "pleaseChooseAStrongPassword": "Proszę wybrać silne hasło", - "@pleaseChooseAStrongPassword": {}, - "usersMustKnock": "Użytkownicy muszą zapukać", - "@usersMustKnock": {}, - "noOneCanJoin": "Nikt nie może dołączyć", - "@noOneCanJoin": {}, - "alwaysUse24HourFormat": "false", - "@alwaysUse24HourFormat": { - "description": "Set to true to always display time of day in 24 hour format." - }, - "swipeRightToLeftToReply": "Przeciągnij w lewo, by odpowiedzieć", - "@swipeRightToLeftToReply": {}, - "presencesToggle": "Pokazuj zmiany statusów innych użytkowników", - "@presencesToggle": { - "type": "String", - "placeholders": {} - }, - "hidePresences": "Ukryć listę statusów?", - "@hidePresences": {}, - "pleaseEnterANumber": "Proszę podać liczbę większą od 0", - "@pleaseEnterANumber": {}, - "commandHint_sendraw": "Wyślij zwykły JSON", - "@commandHint_sendraw": {}, - "databaseMigrationBody": "Proszę czekać. Może to potrwać chwilę.", - "@databaseMigrationBody": {}, - "leaveEmptyToClearStatus": "Pozostaw puste, aby wyczyścić swój status.", - "@leaveEmptyToClearStatus": {}, - "sessionLostBody": "Twoja sesja została utracona. Prosimy zgłosić ten błąd autorom aplikacji na {url}. Treść błędu to: {error}", - "@sessionLostBody": { - "type": "String", - "placeholders": { - "url": { - "type": "String" - }, - "error": { - "type": "String" - } - } - }, - "forwardMessageTo": "Przekazać wiadomość do {roomName}?", - "@forwardMessageTo": { - "type": "String", - "placeholders": { - "roomName": { - "type": "String" - } - } - }, - "publicChatAddresses": "Adresy publicznych czatów", - "@publicChatAddresses": {}, - "createNewAddress": "Utwórz nowy adres", - "@createNewAddress": {}, - "userRole": "Rola użytkownika/-czki", - "@userRole": {}, - "completedKeyVerification": "{sender} zakończył/-a weryfikację kluczy", - "@completedKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "italicText": "Kursywa", - "@italicText": {}, - "boldText": "Pogrubienie", - "@boldText": {}, - "strikeThrough": "Przekreślenie", - "@strikeThrough": {}, - "incomingMessages": "Wiadomości przychodzące", - "@incomingMessages": {}, - "discoverHomeservers": "Odkrywaj serwery domowe", - "@discoverHomeservers": {}, - "whatIsAHomeserver": "Czym jest serwer domowy?", - "@whatIsAHomeserver": {}, - "loginWithMatrixId": "Zaloguj się identyfikatorem Matrix", - "@loginWithMatrixId": {}, - "passwordsDoNotMatch": "Hasła się nie zgadzają", - "@passwordsDoNotMatch": {}, - "unbanUserDescription": "Użytkownik będzie w stanie dołączyć do czatu ponownie.", - "@unbanUserDescription": {}, - "roomUpgradeDescription": "Czat zostanie przeniesiony do pokoju w nowej wersji. Wszyscy użytkownicy zostaną powiadomieni o konieczności dołączenia do nowego czatu. Możesz dowiedzieć się więcej o wersjach pokojów na https://spec.matrix.org/latest/rooms/", - "@roomUpgradeDescription": {}, - "userWouldLikeToChangeTheChat": "{user} chce dołączyć do czatu.", - "@userWouldLikeToChangeTheChat": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "requestedKeyVerification": "{sender} poprosił/-a o weryfikację kluczy", - "@requestedKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "changeGeneralChatSettings": "Zmień ogólne ustawienia czatu", - "@changeGeneralChatSettings": {}, - "youInvitedToBy": "Otrzymałeś/-aś link z zaproszeniem do:\n{alias}", - "@youInvitedToBy": { - "placeholders": { - "alias": { - "type": "String" - } - } - }, - "verifyOtherUserDescription": "Jeśli zweryfikujesz innego użytkownika, możesz być pewien/-na z kim naprawdę piszesz. 💪\n\nKiedy rozpoczniesz weryfikację, Ty i ta druga osoba zobaczycie okienko dialogowe. Zobaczycie w nim serię emotikonów lub numery do porównania.\n\nNajlepiej potwierdzić ich zgodność osobiście lub przez wideorozmowę. 👭", - "@verifyOtherUserDescription": {}, - "verifyOtherDeviceDescription": "Jeśli zweryfikujesz inne urządzenie, będzie mogło ono wymienić klucze z dotychczasowym, zwiększając ogólne bezpieczeństwo. 💪 Kiedy rozpoczniesz weryfikację, na obu urządzeniach wyświetli się okno dialogowe. Zobaczysz w nim serię emotikonów lub numery do porównania. Najlepiej mieć oba urządzenia pod ręką przed rozpoczęciem weryfikacji. 🤳", - "@verifyOtherDeviceDescription": {}, - "unreadChatsInApp": "{appname}: {unread} nieprzeczytanych czatów", - "@unreadChatsInApp": { - "type": "String", - "placeholders": { - "appname": { - "type": "String" - }, - "unread": { - "type": "String" - } - } - }, - "addLink": "Dodaj link", - "@addLink": {}, - "unread": "Nieprzeczytane", - "@unread": {}, - "space": "Przestrzeń", - "@space": {}, - "spaces": "Przestrzenie", - "@spaces": {}, - "countChatsAndCountParticipants": "{participants}{chats} czatów i {participants} uczestników", - "@countChatsAndCountParticipants": { - "type": "String", - "placeholders": { - "chats": { - "type": "int" - }, - "participants": { - "type": "int" - } - } - }, - "noMoreChatsFound": "Nie znaleziono więcej czatów...", - "@noMoreChatsFound": {}, - "joinedChats": "Czaty, do których dołączono", - "@joinedChats": {}, - "removeDevicesDescription": "Nastąpi wylogowanie z tego urządzenia. Nie będziesz w stanie odbierać na nim wiadomości.", - "@removeDevicesDescription": {}, - "makeAdminDescription": "Kiedy użytkownik zostanie adminem, nie będziesz móc tego cofnąć, bo nabierze takich samych uprawnień, jak Ty.", - "@makeAdminDescription": {}, - "searchChatsRooms": "Szukaj #czatów, @użytkowników...", - "@searchChatsRooms": {}, - "createGroupAndInviteUsers": "Utwórz grupę i zaproś użytkowników", - "@createGroupAndInviteUsers": {}, - "groupCanBeFoundViaSearch": "Grupa może być znaleziona poprzez wyszukiwanie", - "@groupCanBeFoundViaSearch": {}, - "wrongRecoveryKey": "Niestety to nie wygląda na poprawny klucz odzyskiwania.", - "@wrongRecoveryKey": {}, - "searchForUsers": "Szukaj @użytkowników...", - "@searchForUsers": {}, - "pleaseEnterYourCurrentPassword": "Proszę podać swoje obecne hasło", - "@pleaseEnterYourCurrentPassword": {}, - "passwordIsWrong": "Podano niepoprawne hasło", - "@passwordIsWrong": {}, - "joinSpace": "Dołącz do przestrzeni", - "@joinSpace": {}, - "addChatOrSubSpace": "Dodaj czat lub podprzestrzeń", - "@addChatOrSubSpace": {}, - "initAppError": "Wystąpił błąd podczas inicjalizacji aplikacji", - "@initAppError": {}, - "minimumPowerLevel": "{level} jest minimalnym poziomem uprawnień.", - "@minimumPowerLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "String" - } - } - }, - "searchIn": "Szukaj w czacie \"{chat}\"...", - "@searchIn": { - "type": "String", - "placeholders": { - "chat": { - "type": "String" - } - } - }, - "kickUserDescription": "Użytkownik jest wyrzucony z czatu, ale nie zbanowany. Do czatu publicznego może dołączyć ponownie.", - "@kickUserDescription": {}, - "appWantsToUseForLogin": "Użyj serwera '{server}' do zalogowania się", - "@appWantsToUseForLogin": { - "type": "String", - "placeholders": { - "server": { - "type": "String" - } - } - }, - "appWantsToUseForLoginDescription": "Niniejszym zezwalasz aplikacji i witrynie na udostępnianie informacji o sobie.", - "@appWantsToUseForLoginDescription": {}, - "open": "Otwórz", - "@open": {}, - "contentNotificationSettings": "Ustawienia powiadomień o treści", - "@contentNotificationSettings": {}, - "generalNotificationSettings": "Ogólne ustawienia powiadomień", - "@generalNotificationSettings": {}, - "roomNotificationSettings": "Ustawienia powiadomień w pokoju", - "@roomNotificationSettings": {}, - "userSpecificNotificationSettings": "Ustawienia powiadomień dla użytkownika", - "@userSpecificNotificationSettings": {}, - "otherNotificationSettings": "Inne ustawienia powiadomień", - "@otherNotificationSettings": {}, - "notificationRuleContainsUserName": "Włącz dla wiadomości z nazwą użytkownika", - "@notificationRuleContainsUserName": {}, - "notificationRuleContainsUserNameDescription": "Włącza powiadomienia kiedy wiadomość zawiera Twoją nazwę użytkownika.", - "@notificationRuleContainsUserNameDescription": {}, - "notificationRuleMaster": "Wyłącz wszystkie powiadomienia", - "@notificationRuleMaster": {}, - "notificationRuleMasterDescription": "Zastępuje inne reguły i wyłącza wszystkie powiadomienia.", - "@notificationRuleMasterDescription": {}, - "notificationRuleSuppressNotices": "Wyłącz dla automatycznych wiadomości", - "@notificationRuleSuppressNotices": {}, - "notificationRuleSuppressNoticesDescription": "Wyłącza powiadomienia z automatycznych klientów, takich jak boty.", - "@notificationRuleSuppressNoticesDescription": {}, - "notificationRuleInviteForMe": "Włącz dla zaproszeń", - "@notificationRuleInviteForMe": {}, - "notificationRuleInviteForMeDescription": "Włącza powiadomienia o zaproszeniach do pokoju.", - "@notificationRuleInviteForMeDescription": {}, - "notificationRuleMemberEvent": "Wyłącz dla zmian członkostwa", - "@notificationRuleMemberEvent": {}, - "notificationRuleMemberEventDescription": "Wyłącza powiadomienia o zmianach członkostwa w pokoju.", - "@notificationRuleMemberEventDescription": {}, - "notificationRuleIsUserMention": "Włącz dla wzmianek", - "@notificationRuleIsUserMention": {}, - "notificationRuleIsUserMentionDescription": "Włącza powiadomienia o byciu wzmiankowanym w wiadomości.", - "@notificationRuleIsUserMentionDescription": {}, - "notificationRuleContainsDisplayName": "Włącz dla wiadomości z nazwą wyświetlaną", - "@notificationRuleContainsDisplayName": {}, - "notificationRuleContainsDisplayNameDescription": "Włącza powiadomienia o wiadomościach zawierających Twoją nazwę wyświetlaną.", - "@notificationRuleContainsDisplayNameDescription": {}, - "notificationRuleIsRoomMention": "Włącz dla wzmianek pokoju", - "@notificationRuleIsRoomMention": {}, - "notificationRuleIsRoomMentionDescription": "Włącza powiadomienia o wzmiankowaniu całego pokoju.", - "@notificationRuleIsRoomMentionDescription": {}, - "notificationRuleRoomnotif": "Włącz dla powiadomień w pokoju", - "@notificationRuleRoomnotif": {}, - "notificationRuleRoomnotifDescription": "Włącza powiadomienia o wiadomościach zawierających „@room”.", - "@notificationRuleRoomnotifDescription": {}, - "notificationRuleTombstone": "Włącz dla „nagrobków”", - "@notificationRuleTombstone": {}, - "notificationRuleTombstoneDescription": "Włącza powiadomienia o komunikatach dezaktywacji pokojów.", - "@notificationRuleTombstoneDescription": {}, - "notificationRuleReaction": "Wyłącz dla reakcji", - "@notificationRuleReaction": {}, - "notificationRuleReactionDescription": "Wyłącza powiadomienia o reakcjach.", - "@notificationRuleReactionDescription": {}, - "notificationRuleSuppressEdits": "Wyłącz dla edycji", - "@notificationRuleSuppressEdits": {}, - "notificationRuleSuppressEditsDescription": "Wyłącza powiadomienia o edycjach wiadomości.", - "@notificationRuleSuppressEditsDescription": {}, - "notificationRuleCall": "Włącz dla połączeń", - "@notificationRuleCall": {}, - "notificationRuleRoomServerAclDescription": "Wyłącza powiadomienia dla list kontroli dostępu (ACL) serwera.", - "@notificationRuleRoomServerAclDescription": {}, - "notificationRuleRoomServerAcl": "Wyłącz dla list kontroli dostępu serwera", - "@notificationRuleRoomServerAcl": {}, - "notificationRuleEncryptedRoomOneToOne": "Włącz dla szyfrowanych pokojów „jeden na jeden”", - "@notificationRuleEncryptedRoomOneToOne": {}, - "notificationRuleCallDescription": "Włącza powiadomienia o przychodzących połączeniach.", - "@notificationRuleCallDescription": {}, - "notificationRuleRoomOneToOne": "Włącz dla pokojów „jeden na jeden”", - "@notificationRuleRoomOneToOne": {}, - "notificationRuleRoomOneToOneDescription": "Włącza powiadomienia o wiadomościach w pokojach „jeden na jeden” (one-to-one).", - "@notificationRuleRoomOneToOneDescription": {}, - "notificationRuleMessage": "Włącz dla wiadomości", - "@notificationRuleMessage": {}, - "unknownPushRule": "Nieznana reguła: '{rule}'", - "@unknownPushRule": { - "type": "String", - "placeholders": { - "rule": { - "type": "String" - } - } - }, - "notificationRuleEncryptedRoomOneToOneDescription": "Włącza powiadomienia o wiadomościach w szyfrowanych pokojach „jeden na jeden” (one-to-one).", - "@notificationRuleEncryptedRoomOneToOneDescription": {}, - "notificationRuleEncrypted": "Włącz dla zaszyfrowanych pokojów", - "@notificationRuleEncrypted": {}, - "notificationRuleJitsi": "Włącz dla Jitsi", - "@notificationRuleJitsi": {}, - "notificationRuleServerAcl": "Wyłącz dla komunikatów o listach kontroli dostępu serwera", - "@notificationRuleServerAcl": {}, - "notificationRuleJitsiDescription": "Włącza powiadomienia o komunikatach widżetów Jitsi.", - "@notificationRuleJitsiDescription": {}, - "notificationRuleMessageDescription": "Włącza powiadomienia o ogólnych wiadomościach.", - "@notificationRuleMessageDescription": {}, - "notificationRuleEncryptedDescription": "Włącza powiadomienia o wiadomościach w zaszyfrowanych pokojach.", - "@notificationRuleEncryptedDescription": {}, - "notificationRuleServerAclDescription": "Wyłącza powiadomienia o komunikatach o listach kontroli dostępu (ACL) serwera.", - "@notificationRuleServerAclDescription": {}, - "newChatRequest": "📩 Nowa prośba o czat", - "@newChatRequest": {}, - "synchronizingPleaseWaitCounter": " Synchronizowanie… ({percentage}%)", - "@synchronizingPleaseWaitCounter": { - "type": "String", - "placeholders": { - "percentage": { - "type": "String" - } - } - }, - "waitingForServer": "Oczekiwanie na serwer...", - "@waitingForServer": {}, - "appIntroduction": "FluffyChat umożliwia czatowanie ze znajomymi za pośrednictwem różnych komunikatorów. Dowiedz się więcej na stronie https://matrix.org lub kliknij na *Kontynuuj*.", - "@appIntroduction": {}, - "previous": "Poprzedni", - "@previous": {}, - "otherPartyNotLoggedIn": "Druga strona nie jest obecnie zalogowana i dlatego nie może odbierać wiadomości!", - "@otherPartyNotLoggedIn": {}, - "deletePushRuleCanNotBeUndone": "Jeśli skasujesz to ustawienie powiadomień, nie będzie się dało tego cofnąć.", - "@deletePushRuleCanNotBeUndone": {}, - "more": "Więcej", - "@more": {}, - "shareKeysWith": "Udostępnij klucze...", - "@shareKeysWith": {}, - "crossVerifiedDevicesIfEnabled": "Urządzenia zweryfikowane krzyżowo, jeśli włączone", - "@crossVerifiedDevicesIfEnabled": {}, - "crossVerifiedDevices": "Urządzenia zweryfikowane krzyżowo", - "@crossVerifiedDevices": {}, - "takeAPhoto": "Zrób zdjęcie", - "@takeAPhoto": {}, - "recordAVideo": "Nagraj film", - "@recordAVideo": {}, - "optionalMessage": "(Opcjonalna) wiadomość...", - "@optionalMessage": {}, - "verifiedDevicesOnly": "Tylko zweryfikowane urządzenia", - "@verifiedDevicesOnly": {}, - "shareKeysWithDescription": "Które urządzenia powinny być zaufane, aby mogły odczytywać Twoje wiadomości w zaszyfrowanych czatach?", - "@shareKeysWithDescription": {}, - "allDevices": "Wszystkie urządzenia", - "@allDevices": {}, - "notSupportedOnThisDevice": "Niewspierane na tym urządzeniu", - "@notSupportedOnThisDevice": {}, - "commandHint_roomupgrade": "Zaktualizuj ten pokój do podanej wersji", - "@commandHint_roomupgrade": {}, - "enterNewChat": "Dołącz do nowego czatu", - "@enterNewChat": {}, - "countInvited": "{count} zaproszonych", - "@countInvited": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "sentVoiceMessage": "🎙️ {duration} - {sender}", - "@sentVoiceMessage": { - "type": "String", - "placeholders": { - "sender": { + "@@locale": "pl", + "@@last_modified": "2021-08-14 12:41:09.943634", + "about": "O aplikacji", + "@about": { + "type": "String", + "placeholders": {} + }, + "accept": "Akceptuj", + "@accept": { + "type": "String", + "placeholders": {} + }, + "acceptedTheInvitation": "👍 {username} zaakceptował/-a zaproszenie", + "@acceptedTheInvitation": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "account": "Konto", + "@account": { + "type": "String", + "placeholders": {} + }, + "activatedEndToEndEncryption": "🔐 {username} aktywował/-a szyfrowanie od końca do końca", + "@activatedEndToEndEncryption": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "addEmail": "Dodaj adres email", + "@addEmail": { + "type": "String", + "placeholders": {} + }, + "admin": "Administrator", + "@admin": { + "type": "String", + "placeholders": {} + }, + "alias": "alias", + "@alias": { + "type": "String", + "placeholders": {} + }, + "answeredTheCall": "{senderName} odebrał/-a połączenie", + "@answeredTheCall": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "anyoneCanJoin": "Każdy może dołączyć", + "@anyoneCanJoin": { + "type": "String", + "placeholders": {} + }, + "archive": "Archiwum", + "@archive": { + "type": "String", + "placeholders": {} + }, + "areGuestsAllowedToJoin": "Czy użytkownicy-goście mogą dołączyć", + "@areGuestsAllowedToJoin": { + "type": "String", + "placeholders": {} + }, + "areYouSure": "Czy na pewno?", + "@areYouSure": { + "type": "String", + "placeholders": {} + }, + "areYouSureYouWantToLogout": "Czy na pewno chcesz się wylogować?", + "@areYouSureYouWantToLogout": { + "type": "String", + "placeholders": {} + }, + "askSSSSSign": "Aby zalogować inną osobę, proszę wpisać hasło przechowywania lub klucz odzyskiwania.", + "@askSSSSSign": { + "type": "String", + "placeholders": {} + }, + "askVerificationRequest": "Zaakceptować tą prośbę weryfikacji od {username}?", + "@askVerificationRequest": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "badServerLoginTypesException": "Serwer obsługuje typy logowania:\n{serverVersions}\nAle ta aplikacja obsługuje tylko:\n{supportedVersions}", + "@badServerLoginTypesException": { + "type": "String", + "placeholders": { + "serverVersions": { + "type": "String" + }, + "supportedVersions": { + "type": "String" + } + } + }, + "badServerVersionsException": "Serwer obsługuje wersje Spec:\n{serverVersions}\nAle aplikacja obsługuje tylko {supportedVersions}", + "@badServerVersionsException": { + "type": "String", + "placeholders": { + "serverVersions": { + "type": "String" + }, + "supportedVersions": { + "type": "String" + } + } + }, + "banFromChat": "Ban w czacie", + "@banFromChat": { + "type": "String", + "placeholders": {} + }, + "banned": "Zbanowany/-a", + "@banned": { + "type": "String", + "placeholders": {} + }, + "bannedUser": "{username} zbanował/-a {targetName}", + "@bannedUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "blockDevice": "Zablokuj urządzenie", + "@blockDevice": { + "type": "String", + "placeholders": {} + }, + "blocked": "Zablokowane", + "@blocked": { + "type": "String", + "placeholders": {} + }, + "botMessages": "Wiadomości botów", + "@botMessages": { + "type": "String", + "placeholders": {} + }, + "cancel": "Anuluj", + "@cancel": { + "type": "String", + "placeholders": {} + }, + "changeDeviceName": "Zmień nazwę urządzenia", + "@changeDeviceName": { + "type": "String", + "placeholders": {} + }, + "changedTheChatAvatar": "{username} zmienił/-a zdjęcie profilowe", + "@changedTheChatAvatar": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheChatDescriptionTo": "{username} zmienił/-a opis czatu na '{description}'", + "@changedTheChatDescriptionTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "description": { + "type": "String" + } + } + }, + "changedTheChatNameTo": "{username} zmienił/-a nazwę czatu na '{chatname}'", + "@changedTheChatNameTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "chatname": { + "type": "String" + } + } + }, + "changedTheChatPermissions": "{username} zmienił/-a uprawnienia w czacie", + "@changedTheChatPermissions": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheDisplaynameTo": "{username} zmienił/-a swoją nazwę wyświetlaną na '{displayname}'", + "@changedTheDisplaynameTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "displayname": { + "type": "String" + } + } + }, + "changedTheGuestAccessRules": "{username} zmienił/-a zasady dostępu dla gości", + "@changedTheGuestAccessRules": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheGuestAccessRulesTo": "{username} zmienił/-a zasady dostępu dla gości na {rules}", + "@changedTheGuestAccessRulesTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "rules": { + "type": "String" + } + } + }, + "changedTheHistoryVisibility": "{username} zmienił/-a widoczność historii", + "@changedTheHistoryVisibility": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheHistoryVisibilityTo": "{username} zmienił/-a widoczność historii na {rules}", + "@changedTheHistoryVisibilityTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "rules": { + "type": "String" + } + } + }, + "changedTheJoinRules": "{username} zmienił/-a zasady wejścia", + "@changedTheJoinRules": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheJoinRulesTo": "{username} zmienił/-a zasady wejścia na {joinRules}", + "@changedTheJoinRulesTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "joinRules": { + "type": "String" + } + } + }, + "changedTheProfileAvatar": "{username} zmienił/-a zdjęcie profilowe", + "@changedTheProfileAvatar": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheRoomAliases": "{username} zmienił/-a alias pokoju", + "@changedTheRoomAliases": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheRoomInvitationLink": "{username} zmienił/-a link z zaproszeniem do pokoju", + "@changedTheRoomInvitationLink": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changePassword": "Zmień hasło", + "@changePassword": { + "type": "String", + "placeholders": {} + }, + "changeTheHomeserver": "Zmień serwer domyślny", + "@changeTheHomeserver": { + "type": "String", + "placeholders": {} + }, + "changeTheme": "Zmień swój styl", + "@changeTheme": { + "type": "String", + "placeholders": {} + }, + "changeTheNameOfTheGroup": "Zmień nazwę grupy", + "@changeTheNameOfTheGroup": { + "type": "String", + "placeholders": {} + }, + "channelCorruptedDecryptError": "Szyfrowanie zostało uszkodzone", + "@channelCorruptedDecryptError": { + "type": "String", + "placeholders": {} + }, + "chat": "Czat", + "@chat": { + "type": "String", + "placeholders": {} + }, + "chatBackup": "Kopia zapasowa czatów", + "@chatBackup": { + "type": "String", + "placeholders": {} + }, + "chatBackupDescription": "Twoje stare wiadomości są zabezpieczone kluczem odzyskiwania. Uważaj żeby go nie zgubić.", + "@chatBackupDescription": { + "type": "String", + "placeholders": {} + }, + "chatDetails": "Szczegóły czatu", + "@chatDetails": { + "type": "String", + "placeholders": {} + }, + "chats": "Czaty", + "@chats": { + "type": "String", + "placeholders": {} + }, + "chooseAStrongPassword": "Wybierz silne hasło", + "@chooseAStrongPassword": { + "type": "String", + "placeholders": {} + }, + "clearArchive": "Wyczyść archiwum", + "@clearArchive": {}, + "close": "Zamknij", + "@close": { + "type": "String", + "placeholders": {} + }, + "commandHint_ban": "Zbanuj użytkownika w tym pokoju", + "@commandHint_ban": { + "type": "String", + "description": "Usage hint for the command /ban" + }, + "commandHint_html": "Wyślij tekst sformatowany w HTML", + "@commandHint_html": { + "type": "String", + "description": "Usage hint for the command /html" + }, + "commandHint_invite": "Zaproś użytkownika do pokoju", + "@commandHint_invite": { + "type": "String", + "description": "Usage hint for the command /invite" + }, + "commandHint_join": "Dołącz do podanego pokoju", + "@commandHint_join": { + "type": "String", + "description": "Usage hint for the command /join" + }, + "commandHint_kick": "Usuń tego użytkownika z tego pokoju", + "@commandHint_kick": { + "type": "String", + "description": "Usage hint for the command /kick" + }, + "commandHint_leave": "Opuść ten pokój", + "@commandHint_leave": { + "type": "String", + "description": "Usage hint for the command /leave" + }, + "commandHint_me": "Opisz siebie", + "@commandHint_me": { + "type": "String", + "description": "Usage hint for the command /me" + }, + "commandHint_myroomavatar": "Ustaw swoje zdjęcie w tym pokoju (przez mxc-uri)", + "@commandHint_myroomavatar": { + "type": "String", + "description": "Usage hint for the command /myroomavatar" + }, + "commandHint_myroomnick": "Ustaw swoją nazwę wyświetlaną w tym pokoju", + "@commandHint_myroomnick": { + "type": "String", + "description": "Usage hint for the command /myroomnick" + }, + "commandHint_op": "Ustaw poziom uprawnień tego użytkownika (domyślnie: 50)", + "@commandHint_op": { + "type": "String", + "description": "Usage hint for the command /op" + }, + "commandHint_plain": "Wyślij niesformatowany tekst", + "@commandHint_plain": { + "type": "String", + "description": "Usage hint for the command /plain" + }, + "commandHint_react": "Wyślij odpowiedź jako reakcję", + "@commandHint_react": { + "type": "String", + "description": "Usage hint for the command /react" + }, + "commandHint_send": "Wyślij wiadomość", + "@commandHint_send": { + "type": "String", + "description": "Usage hint for the command /send" + }, + "commandHint_unban": "Odbanuj użytkownika w tym pokoju", + "@commandHint_unban": { + "type": "String", + "description": "Usage hint for the command /unban" + }, + "commandInvalid": "Nieprawidłowe polecenie", + "@commandInvalid": { "type": "String" - }, - "duration": { + }, + "commandMissing": "{command} nie jest poleceniem.", + "@commandMissing": { + "type": "String", + "placeholders": { + "command": { + "type": "String" + } + }, + "description": "State that {command} is not a valid /command." + }, + "compareEmojiMatch": "Porównaj emoji", + "@compareEmojiMatch": { + "type": "String", + "placeholders": {} + }, + "compareNumbersMatch": "Porównaj cyfry", + "@compareNumbersMatch": { + "type": "String", + "placeholders": {} + }, + "confirm": "Potwierdź", + "@confirm": { + "type": "String", + "placeholders": {} + }, + "connect": "Połącz", + "@connect": { + "type": "String", + "placeholders": {} + }, + "contactHasBeenInvitedToTheGroup": "Kontakt został zaproszony do grupy", + "@contactHasBeenInvitedToTheGroup": { + "type": "String", + "placeholders": {} + }, + "containsDisplayName": "Zawiera nazwę wyświetlaną", + "@containsDisplayName": { + "type": "String", + "placeholders": {} + }, + "containsUserName": "Zawiera nazwę użytkownika", + "@containsUserName": { + "type": "String", + "placeholders": {} + }, + "copiedToClipboard": "Skopiowano do schowka", + "@copiedToClipboard": { + "type": "String", + "placeholders": {} + }, + "copy": "Kopiuj", + "@copy": { + "type": "String", + "placeholders": {} + }, + "copyToClipboard": "Skopiuj do schowka", + "@copyToClipboard": { + "type": "String", + "placeholders": {} + }, + "couldNotDecryptMessage": "Nie można odszyfrować wiadomości: {error}", + "@couldNotDecryptMessage": { + "type": "String", + "placeholders": { + "error": { + "type": "String" + } + } + }, + "countParticipants": "{count} uczestników", + "@countParticipants": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "create": "Stwórz", + "@create": { + "type": "String", + "placeholders": {} + }, + "createdTheChat": "💬 {username} utworzył/-a czat", + "@createdTheChat": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "currentlyActive": "Obecnie aktywny/-a", + "@currentlyActive": { + "type": "String", + "placeholders": {} + }, + "darkTheme": "Ciemny", + "@darkTheme": { + "type": "String", + "placeholders": {} + }, + "dateAndTimeOfDay": "{date} {timeOfDay}", + "@dateAndTimeOfDay": { + "type": "String", + "placeholders": { + "date": { + "type": "String" + }, + "timeOfDay": { + "type": "String" + } + } + }, + "dateWithoutYear": "{month}-{day}", + "@dateWithoutYear": { + "type": "String", + "placeholders": { + "month": { + "type": "String" + }, + "day": { + "type": "String" + } + } + }, + "dateWithYear": "{day}.{month}.{year}", + "@dateWithYear": { + "type": "String", + "placeholders": { + "year": { + "type": "String" + }, + "month": { + "type": "String" + }, + "day": { + "type": "String" + } + } + }, + "deactivateAccountWarning": "To zdezaktywuje twoje konto. To jest nieodwracalne! Na pewno chcesz to zrobić?", + "@deactivateAccountWarning": { + "type": "String", + "placeholders": {} + }, + "delete": "Usuń", + "@delete": { + "type": "String", + "placeholders": {} + }, + "deleteAccount": "Usuń konto", + "@deleteAccount": { + "type": "String", + "placeholders": {} + }, + "deleteMessage": "Usuń wiadomość", + "@deleteMessage": { + "type": "String", + "placeholders": {} + }, + "device": "Urządzenie", + "@device": { + "type": "String", + "placeholders": {} + }, + "deviceId": "Identyfikator urządzenia", + "@deviceId": { + "type": "String", + "placeholders": {} + }, + "devices": "Urządzenia", + "@devices": { + "type": "String", + "placeholders": {} + }, + "directChats": "Czaty bezpośrednie", + "@directChats": { + "type": "String", + "placeholders": {} + }, + "displaynameHasBeenChanged": "Nazwa wyświetlana została zmieniona", + "@displaynameHasBeenChanged": { + "type": "String", + "placeholders": {} + }, + "downloadFile": "Pobierz plik", + "@downloadFile": { + "type": "String", + "placeholders": {} + }, + "edit": "Edytuj", + "@edit": { + "type": "String", + "placeholders": {} + }, + "editDisplayname": "Edytuj nazwę wyświetlaną", + "@editDisplayname": { + "type": "String", + "placeholders": {} + }, + "editRoomAliases": "Zmień aliasy pokoju", + "@editRoomAliases": { + "type": "String", + "placeholders": {} + }, + "emoteExists": "Emotikon już istnieje!", + "@emoteExists": { + "type": "String", + "placeholders": {} + }, + "emoteInvalid": "Nieprawidłowy kod emotikonu!", + "@emoteInvalid": { + "type": "String", + "placeholders": {} + }, + "emotePacks": "Paczki emotikonów dla pokoju", + "@emotePacks": { + "type": "String", + "placeholders": {} + }, + "emoteSettings": "Ustawienia emotikonów", + "@emoteSettings": { + "type": "String", + "placeholders": {} + }, + "emoteShortcode": "Skrócony kod emotikonu", + "@emoteShortcode": { + "type": "String", + "placeholders": {} + }, + "emoteWarnNeedToPick": "Musisz wybrać kod emotikonu oraz obraz!", + "@emoteWarnNeedToPick": { + "type": "String", + "placeholders": {} + }, + "emptyChat": "Pusty czat", + "@emptyChat": { + "type": "String", + "placeholders": {} + }, + "enableEmotesGlobally": "Włącz paczkę emotikonów globalnie", + "@enableEmotesGlobally": { + "type": "String", + "placeholders": {} + }, + "enableEncryptionWarning": "Nie będziesz już mógł wyłączyć szyfrowania. Jesteś pewny?", + "@enableEncryptionWarning": { + "type": "String", + "placeholders": {} + }, + "encrypted": "Szyfrowane", + "@encrypted": { + "type": "String", + "placeholders": {} + }, + "encryption": "Szyfrowanie", + "@encryption": { + "type": "String", + "placeholders": {} + }, + "encryptionNotEnabled": "Szyfrowanie nie jest włączone", + "@encryptionNotEnabled": { + "type": "String", + "placeholders": {} + }, + "endedTheCall": "{senderName} zakończył/-a połączenie", + "@endedTheCall": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "enterAnEmailAddress": "Wpisz adres e-mail", + "@enterAnEmailAddress": { + "type": "String", + "placeholders": {} + }, + "enterYourHomeserver": "Wpisz swój serwer domowy", + "@enterYourHomeserver": { + "type": "String", + "placeholders": {} + }, + "everythingReady": "Wszystko gotowe!", + "@everythingReady": { + "type": "String", + "placeholders": {} + }, + "fileName": "Nazwa pliku", + "@fileName": { + "type": "String", + "placeholders": {} + }, + "fluffychat": "FluffyChat", + "@fluffychat": { + "type": "String", + "placeholders": {} + }, + "forward": "Przekaż", + "@forward": { + "type": "String", + "placeholders": {} + }, + "fromJoining": "Od dołączenia", + "@fromJoining": { + "type": "String", + "placeholders": {} + }, + "fromTheInvitation": "Od zaproszenia", + "@fromTheInvitation": { + "type": "String", + "placeholders": {} + }, + "goToTheNewRoom": "Przejdź do nowego pokoju", + "@goToTheNewRoom": { + "type": "String", + "placeholders": {} + }, + "group": "Grupa", + "@group": { + "type": "String", + "placeholders": {} + }, + "groupIsPublic": "Grupa jest publiczna", + "@groupIsPublic": { + "type": "String", + "placeholders": {} + }, + "groupWith": "Grupa z {displayname}", + "@groupWith": { + "type": "String", + "placeholders": { + "displayname": { + "type": "String" + } + } + }, + "guestsAreForbidden": "Goście są zakazani", + "@guestsAreForbidden": { + "type": "String", + "placeholders": {} + }, + "guestsCanJoin": "Goście mogą dołączyć", + "@guestsCanJoin": { + "type": "String", + "placeholders": {} + }, + "hasWithdrawnTheInvitationFor": "{username} wycofał/-a zaproszenie dla {targetName}", + "@hasWithdrawnTheInvitationFor": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "help": "Pomoc", + "@help": { + "type": "String", + "placeholders": {} + }, + "hideRedactedEvents": "Ukryj informacje o usuniętych zdarzeniach", + "@hideRedactedEvents": { + "type": "String", + "placeholders": {} + }, + "hideUnknownEvents": "Ukryj nieznane wdarzenia", + "@hideUnknownEvents": { + "type": "String", + "placeholders": {} + }, + "id": "Identyfikator", + "@id": { + "type": "String", + "placeholders": {} + }, + "identity": "Tożsamość", + "@identity": { + "type": "String", + "placeholders": {} + }, + "ignoredUsers": "Ignorowani użytkownicy", + "@ignoredUsers": { + "type": "String", + "placeholders": {} + }, + "iHaveClickedOnLink": "Nacisnąłem na link", + "@iHaveClickedOnLink": { + "type": "String", + "placeholders": {} + }, + "incorrectPassphraseOrKey": "Złe hasło bezpieczeństwa lub klucz odzyskiwania", + "@incorrectPassphraseOrKey": { + "type": "String", + "placeholders": {} + }, + "inviteContact": "Zaproś kontakt", + "@inviteContact": { + "type": "String", + "placeholders": {} + }, + "inviteContactToGroup": "Zaproś kontakty do {groupName}", + "@inviteContactToGroup": { + "type": "String", + "placeholders": { + "groupName": { + "type": "String" + } + } + }, + "invited": "Zaproszono", + "@invited": { + "type": "String", + "placeholders": {} + }, + "invitedUser": "📩 {username} zaprosił/-a {targetName}", + "@invitedUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "invitedUsersOnly": "Tylko zaproszeni użytkownicy", + "@invitedUsersOnly": { + "type": "String", + "placeholders": {} + }, + "inviteForMe": "Zaproszenie dla mnie", + "@inviteForMe": { + "type": "String", + "placeholders": {} + }, + "inviteText": "{username} zaprosił/-a Cię do FluffyChat.\n1. Odwiedź fluffychat.im i zainstaluj aplikację\n2. Zarejestuj się lub zaloguj\n3. Otwórz link zaproszenia:\n{link}", + "@inviteText": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "link": { + "type": "String" + } + } + }, + "isTyping": "pisze…", + "@isTyping": { + "type": "String", + "placeholders": {} + }, + "joinedTheChat": "👋 {username} dołączył/-a do czatu", + "@joinedTheChat": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "joinRoom": "Dołącz do pokoju", + "@joinRoom": { + "type": "String", + "placeholders": {} + }, + "kicked": "👞 {username} wyrzucił/-a {targetName}", + "@kicked": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "kickedAndBanned": "🙅 {username} wyrzucił/-a i zbanował/-a {targetName}", + "@kickedAndBanned": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "kickFromChat": "Wyrzuć z czatu", + "@kickFromChat": { + "type": "String", + "placeholders": {} + }, + "lastActiveAgo": "Ostatnio widziano {localizedTimeShort}", + "@lastActiveAgo": { + "type": "String", + "placeholders": { + "localizedTimeShort": { + "type": "String" + } + } + }, + "leave": "Opuść", + "@leave": { + "type": "String", + "placeholders": {} + }, + "leftTheChat": "Opuścił/-a czat", + "@leftTheChat": { + "type": "String", + "placeholders": {} + }, + "license": "Licencja", + "@license": { + "type": "String", + "placeholders": {} + }, + "lightTheme": "Jasny", + "@lightTheme": { + "type": "String", + "placeholders": {} + }, + "loadCountMoreParticipants": "Załaduj jeszcze {count} uczestników", + "@loadCountMoreParticipants": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "loadingPleaseWait": "Ładowanie… Proszę czekać.", + "@loadingPleaseWait": { + "type": "String", + "placeholders": {} + }, + "loadMore": "Załaduj więcej…", + "@loadMore": { + "type": "String", + "placeholders": {} + }, + "login": "Zaloguj się", + "@login": { + "type": "String", + "placeholders": {} + }, + "logInTo": "Zaloguj się do {homeserver}", + "@logInTo": { + "type": "String", + "placeholders": { + "homeserver": { + "type": "String" + } + } + }, + "logout": "Wyloguj się", + "@logout": { + "type": "String", + "placeholders": {} + }, + "memberChanges": "Zmiany członków", + "@memberChanges": { + "type": "String", + "placeholders": {} + }, + "mention": "Wzmianka", + "@mention": { + "type": "String", + "placeholders": {} + }, + "moderator": "Moderator", + "@moderator": { + "type": "String", + "placeholders": {} + }, + "muteChat": "Wycisz czat", + "@muteChat": { + "type": "String", + "placeholders": {} + }, + "needPantalaimonWarning": "Należy pamiętać, że Pantalaimon wymaga na razie szyfrowania od końca do końca.", + "@needPantalaimonWarning": { + "type": "String", + "placeholders": {} + }, + "newChat": "Nowa rozmowa", + "@newChat": { + "type": "String", + "placeholders": {} + }, + "newMessageInFluffyChat": "💬 Nowa wiadomość we FluffyChat", + "@newMessageInFluffyChat": { + "type": "String", + "placeholders": {} + }, + "newVerificationRequest": "Nowa prośba o weryfikację!", + "@newVerificationRequest": { + "type": "String", + "placeholders": {} + }, + "next": "Dalej", + "@next": { + "type": "String", + "placeholders": {} + }, + "no": "Nie", + "@no": { + "type": "String", + "placeholders": {} + }, + "noEncryptionForPublicRooms": "Możesz aktywować szyfrowanie dopiero kiedy pokój nie będzie publicznie dostępny.", + "@noEncryptionForPublicRooms": { + "type": "String", + "placeholders": {} + }, + "noGoogleServicesWarning": "Wygląda na to, że Twoje urządzenie nie obsługuje Firebase Cloud Messaging. Aby wciąż otrzymywać powiadomienia push, zalecamy istalację ntfy. Używając ntfy lub inengo zunifikowanego dostawcy powiadomień push, możesz bezpiecznie otrzymywać takowe powiadomienia. Ntfy można pobrać ze sklepu Google Play Store lub z F-Droid.", + "@noGoogleServicesWarning": { + "type": "String", + "placeholders": {} + }, + "none": "Brak", + "@none": { + "type": "String", + "placeholders": {} + }, + "noPasswordRecoveryDescription": "Nie dodałeś/-aś jeszcze sposobu odzyskiwania swojego hasła.", + "@noPasswordRecoveryDescription": { + "type": "String", + "placeholders": {} + }, + "noPermission": "Brak uprawnień", + "@noPermission": { + "type": "String", + "placeholders": {} + }, + "noRoomsFound": "Nie znaleziono pokojów…", + "@noRoomsFound": { + "type": "String", + "placeholders": {} + }, + "notifications": "Powiadomienia", + "@notifications": { + "type": "String", + "placeholders": {} + }, + "notificationsEnabledForThisAccount": "Powiadomienia są włączone dla tego konta", + "@notificationsEnabledForThisAccount": { + "type": "String", + "placeholders": {} + }, + "oopsSomethingWentWrong": "Ojej! Coś poszło nie tak…", + "@oopsSomethingWentWrong": { + "type": "String", + "placeholders": {} + }, + "openAppToReadMessages": "Otwórz aplikację by odczytać wiadomości", + "@openAppToReadMessages": { + "type": "String", + "placeholders": {} + }, + "openCamera": "Otwórz aparat", + "@openCamera": { + "type": "String", + "placeholders": {} + }, + "password": "Hasło", + "@password": { + "type": "String", + "placeholders": {} + }, + "passwordHasBeenChanged": "Hasło zostało zmienione", + "@passwordHasBeenChanged": { + "type": "String", + "placeholders": {} + }, + "people": "Osoby", + "@people": { + "type": "String", + "placeholders": {} + }, + "pin": "Przypnij", + "@pin": { + "type": "String", + "placeholders": {} + }, + "play": "Otwórz {fileName}", + "@play": { + "type": "String", + "placeholders": { + "fileName": { + "type": "String" + } + } + }, + "pleaseEnterYourPassword": "Wprowadź swoje hasło", + "@pleaseEnterYourPassword": { + "type": "String", + "placeholders": {} + }, + "pleaseEnterYourUsername": "Wpisz swoją nazwę użytkownika", + "@pleaseEnterYourUsername": { + "type": "String", + "placeholders": {} + }, + "pleaseFollowInstructionsOnWeb": "Wykonaj instrukcje na stronie internetowej i naciśnij „dalej”.", + "@pleaseFollowInstructionsOnWeb": { + "type": "String", + "placeholders": {} + }, + "publicRooms": "Publiczne pokoje", + "@publicRooms": { + "type": "String", + "placeholders": {} + }, + "pushRules": "Reguły push", + "@pushRules": { + "type": "String", + "placeholders": {} + }, + "recording": "Nagranie", + "@recording": { + "type": "String", + "placeholders": {} + }, + "redactedAnEvent": "{username} usunął/-ęła zdarzenie", + "@redactedAnEvent": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "register": "Zarejestruj", + "@register": { + "type": "String", + "placeholders": {} + }, + "rejectedTheInvitation": "{username} odrzucił/-a zaproszenie", + "@rejectedTheInvitation": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "rejoin": "Dołącz ponownie", + "@rejoin": { + "type": "String", + "placeholders": {} + }, + "remove": "Usuń", + "@remove": { + "type": "String", + "placeholders": {} + }, + "removeAllOtherDevices": "Usuń wszystkie inne urządzenia", + "@removeAllOtherDevices": { + "type": "String", + "placeholders": {} + }, + "removedBy": "Usunięta przez {username}", + "@removedBy": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "removeDevice": "Usuń urządzenie", + "@removeDevice": { + "type": "String", + "placeholders": {} + }, + "unbanFromChat": "Odbanuj w czacie", + "@unbanFromChat": { + "type": "String", + "placeholders": {} + }, + "reply": "Odpowiedz", + "@reply": { + "type": "String", + "placeholders": {} + }, + "requestPermission": "Prośba o pozwolenie", + "@requestPermission": { + "type": "String", + "placeholders": {} + }, + "roomVersion": "Wersja pokoju", + "@roomVersion": { + "type": "String", + "placeholders": {} + }, + "seenByUser": "Zobaczone przez {username}", + "@seenByUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "send": "Wyślij", + "@send": { + "type": "String", + "placeholders": {} + }, + "sendAMessage": "Wyślij wiadomość", + "@sendAMessage": { + "type": "String", + "placeholders": {} + }, + "sendFile": "Wyślij plik", + "@sendFile": { + "type": "String", + "placeholders": {} + }, + "sendImage": "Wyślij obraz", + "@sendImage": { + "type": "String", + "placeholders": {} + }, + "sentAFile": "📁 {username} wysłał/-a plik", + "@sentAFile": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentAnAudio": "🎤 {username} wysłał/-a plik dżwiękowy", + "@sentAnAudio": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentAPicture": "🖼️ {username} wysłał/-a zdjęcie", + "@sentAPicture": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentASticker": "😊 {username} wysłał/-a naklejkę", + "@sentASticker": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentAVideo": "🎥 {username} wysłał/-a film", + "@sentAVideo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "setAsCanonicalAlias": "Ustaw jako główny alias", + "@setAsCanonicalAlias": { + "type": "String", + "placeholders": {} + }, + "setInvitationLink": "Ustaw link z zaproszeniem", + "@setInvitationLink": { + "type": "String", + "placeholders": {} + }, + "setStatus": "Ustaw status", + "@setStatus": { + "type": "String", + "placeholders": {} + }, + "settings": "Ustawienia", + "@settings": { + "type": "String", + "placeholders": {} + }, + "share": "Udostępnij", + "@share": { + "type": "String", + "placeholders": {} + }, + "sharedTheLocation": "{username} udostępnił/-a swoją lokalizację", + "@sharedTheLocation": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "showPassword": "Pokaż hasło", + "@showPassword": { + "type": "String", + "placeholders": {} + }, + "sourceCode": "Kod żródłowy", + "@sourceCode": { + "type": "String", + "placeholders": {} + }, + "statusExampleMessage": "Jak się masz dziś?", + "@statusExampleMessage": { + "type": "String", + "placeholders": {} + }, + "synchronizingPleaseWait": "Synchronizowanie… Proszę czekać.", + "@synchronizingPleaseWait": { + "type": "String", + "placeholders": {} + }, + "systemTheme": "System", + "@systemTheme": { + "type": "String", + "placeholders": {} + }, + "title": "FluffyChat", + "@title": { + "description": "Title for the application", + "type": "String", + "placeholders": {} + }, + "transferFromAnotherDevice": "Przenieś z innego urządzenia", + "@transferFromAnotherDevice": { + "type": "String", + "placeholders": {} + }, + "tryToSendAgain": "Spróbuj wysłać ponownie", + "@tryToSendAgain": { + "type": "String", + "placeholders": {} + }, + "unbannedUser": "{username} odbanował/-a {targetName}", + "@unbannedUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "unknownDevice": "Nieznane urządzenie", + "@unknownDevice": { + "type": "String", + "placeholders": {} + }, + "unknownEncryptionAlgorithm": "Nieznany algorytm szyfrowania", + "@unknownEncryptionAlgorithm": { + "type": "String", + "placeholders": {} + }, + "unknownEvent": "Nieznane zdarzenie '{type}'", + "@unknownEvent": { + "type": "String", + "placeholders": { + "type": { + "type": "String" + } + } + }, + "unmuteChat": "Wyłącz wyciszenie", + "@unmuteChat": { + "type": "String", + "placeholders": {} + }, + "unpin": "Odepnij", + "@unpin": { + "type": "String", + "placeholders": {} + }, + "unreadChats": "{unreadCount, plural, =1{1 unread chat} other{{unreadCount} unread chats}}", + "@unreadChats": { + "type": "String", + "placeholders": { + "unreadCount": { + "type": "int" + } + } + }, + "userAndOthersAreTyping": "{username} oraz {count} pozostałych pisze…", + "@userAndOthersAreTyping": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "count": { + "type": "int" + } + } + }, + "userAndUserAreTyping": "{username} i {username2} piszą…", + "@userAndUserAreTyping": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "username2": { + "type": "String" + } + } + }, + "userIsTyping": "{username} pisze…", + "@userIsTyping": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "userLeftTheChat": "🚪 {username} opuścił/-a czat", + "@userLeftTheChat": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "username": "Nazwa użytkownika", + "@username": { + "type": "String", + "placeholders": {} + }, + "userSentUnknownEvent": "{username} wysłał/-a zdarzenie {type}", + "@userSentUnknownEvent": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "type": { + "type": "String" + } + } + }, + "verified": "Zweryfikowane", + "@verified": { + "type": "String", + "placeholders": {} + }, + "verify": "zweryfikuj", + "@verify": { + "type": "String", + "placeholders": {} + }, + "videoCall": "Rozmowa wideo", + "@videoCall": { + "type": "String", + "placeholders": {} + }, + "visibilityOfTheChatHistory": "Widoczność historii czatu", + "@visibilityOfTheChatHistory": { + "type": "String", + "placeholders": {} + }, + "visibleForAllParticipants": "Widoczny dla wszystkich użytkowników", + "@visibleForAllParticipants": { + "type": "String", + "placeholders": {} + }, + "visibleForEveryone": "Widoczne dla każdego", + "@visibleForEveryone": { + "type": "String", + "placeholders": {} + }, + "voiceMessage": "Wiadomość głosowa", + "@voiceMessage": { + "type": "String", + "placeholders": {} + }, + "wallpaper": "Tapeta:", + "@wallpaper": { + "type": "String", + "placeholders": {} + }, + "whoIsAllowedToJoinThisGroup": "Kto może dołączyć do tej grupy", + "@whoIsAllowedToJoinThisGroup": { + "type": "String", + "placeholders": {} + }, + "writeAMessage": "Napisz wiadomość…", + "@writeAMessage": { + "type": "String", + "placeholders": {} + }, + "yes": "Tak", + "@yes": { + "type": "String", + "placeholders": {} + }, + "you": "Ty", + "@you": { + "type": "String", + "placeholders": {} + }, + "youAreNoLongerParticipatingInThisChat": "Nie uczestniczysz już w tym czacie", + "@youAreNoLongerParticipatingInThisChat": { + "type": "String", + "placeholders": {} + }, + "youHaveBeenBannedFromThisChat": "Zostałeś/-aś zbanowany/-a w tym czacie", + "@youHaveBeenBannedFromThisChat": { + "type": "String", + "placeholders": {} + }, + "allChats": "Wszystkie", + "@allChats": { + "type": "String", + "placeholders": {} + }, + "ignore": "Ignoruj", + "@ignore": { + "type": "String", + "placeholders": {} + }, + "noConnectionToTheServer": "Brak połączenia z serwerem", + "@noConnectionToTheServer": { + "type": "String", + "placeholders": {} + }, + "obtainingLocation": "Uzyskiwanie lokalizacji…", + "@obtainingLocation": { + "type": "String", + "placeholders": {} + }, + "addAccount": "Dodaj konto", + "@addAccount": {}, + "serverRequiresEmail": "Ten serwer wymaga potwierdzenia Twojego adresu email w celu rejestracji.", + "@serverRequiresEmail": {}, + "or": "Lub", + "@or": { + "type": "String", + "placeholders": {} + }, + "participant": "Uczestnik", + "@participant": { + "type": "String", + "placeholders": {} + }, + "passwordForgotten": "Nie pamiętam hasła", + "@passwordForgotten": { + "type": "String", + "placeholders": {} + }, + "pleaseChoose": "Proszę wybrać", + "@pleaseChoose": { + "type": "String", + "placeholders": {} + }, + "pleaseClickOnLink": "Proszę kliknij w odnośnik wysłany w wiadomości e-mail, aby kontynuować.", + "@pleaseClickOnLink": { + "type": "String", + "placeholders": {} + }, + "pleaseEnter4Digits": "Proszę podaj 4 cyfry. By wyłączyć blokadę pozostaw puste.", + "@pleaseEnter4Digits": { + "type": "String", + "placeholders": {} + }, + "removeYourAvatar": "Usuń swoje zdjęcie", + "@removeYourAvatar": { + "type": "String", + "placeholders": {} + }, + "replaceRoomWithNewerVersion": "Zamień pokój na nowszą wersję", + "@replaceRoomWithNewerVersion": { + "type": "String", + "placeholders": {} + }, + "reportMessage": "Zgłoś wiadomość", + "@reportMessage": { + "type": "String", + "placeholders": {} + }, + "saveFile": "Zapisz plik", + "@saveFile": { + "type": "String", + "placeholders": {} + }, + "security": "Bezpieczeństwo", + "@security": { + "type": "String", + "placeholders": {} + }, + "search": "Szukaj", + "@search": { + "type": "String", + "placeholders": {} + }, + "sendAsText": "Wyślij jako tekst", + "@sendAsText": { "type": "String" - } - } - }, - "checkList": "Lista kontrolna", - "@checkList": {}, - "setCustomPermissionLevel": "Ustaw własny poziom uprawnień", - "@setCustomPermissionLevel": {}, - "setPermissionsLevelDescription": "Proszę wybrać predefiniowaną rolę poniżej, lub wprowadzić własny poziom uprawnień pomiędzy 0 a 100.", - "@setPermissionsLevelDescription": {}, - "ignoreUser": "Ignoruj użytkownika", - "@ignoreUser": {}, - "normalUser": "Zwykły użytkownik", - "@normalUser": {}, - "approve": "Zaakceptuj", - "@approve": {}, - "youHaveKnocked": "Zapukałeś/-aś", - "@youHaveKnocked": {}, - "pleaseWaitUntilInvited": "Proszę zaczekać na zaproszenie przez kogoś z pokoju.", - "@pleaseWaitUntilInvited": {}, - "commandHint_logout": "Wyloguj bieżące urządzenie", - "@commandHint_logout": {}, - "commandHint_logoutall": "Wyloguj wszystkie aktywne urządzenia", - "@commandHint_logoutall": {}, - "displayNavigationRail": "Pokazuj pasek nawigacyjny na urządzeniach mobilnych", - "@displayNavigationRail": {}, - "customReaction": "Własna reakcja", - "@customReaction": {}, - "moreEvents": "Więcej zdarzeń", - "@moreEvents": {} + }, + "sendAudio": "Wyślij dźwięk", + "@sendAudio": { + "type": "String", + "placeholders": {} + }, + "sendMessages": "Wyślij wiadomości", + "@sendMessages": { + "type": "String", + "placeholders": {} + }, + "sendOriginal": "Wyślij oryginał", + "@sendOriginal": { + "type": "String", + "placeholders": {} + }, + "sendSticker": "Wyślij naklejkę", + "@sendSticker": { + "type": "String", + "placeholders": {} + }, + "sendVideo": "Wyślij film", + "@sendVideo": { + "type": "String", + "placeholders": {} + }, + "startedACall": "{senderName} rozpoczął/-ęła rozmowę", + "@startedACall": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "yourPublicKey": "Twój klucz publiczny", + "@yourPublicKey": { + "type": "String", + "placeholders": {} + }, + "enableMultiAccounts": "(BETA) Włącza obsługę wielu kont na tym urządzeniu", + "@enableMultiAccounts": {}, + "pickImage": "Wybierz obraz", + "@pickImage": { + "type": "String", + "placeholders": {} + }, + "passwordRecovery": "Odzyskiwanie hasła", + "@passwordRecovery": { + "type": "String", + "placeholders": {} + }, + "openInMaps": "Otwórz w mapach", + "@openInMaps": { + "type": "String", + "placeholders": {} + }, + "link": "Link", + "@link": {}, + "roomHasBeenUpgraded": "Pokój został zaktualizowany", + "@roomHasBeenUpgraded": { + "type": "String", + "placeholders": {} + }, + "repeatPassword": "Powtórz hasło", + "@repeatPassword": {}, + "all": "Wszystkie", + "@all": { + "type": "String", + "placeholders": {} + }, + "appLock": "Blokada aplikacji", + "@appLock": { + "type": "String", + "placeholders": {} + }, + "theyMatch": "Zgadzają się", + "@theyMatch": { + "type": "String", + "placeholders": {} + }, + "sendOnEnter": "Wyślij enterem", + "@sendOnEnter": {}, + "autoplayImages": "Automatycznie odtwarzaj animowane naklejki i emotikony", + "@autoplayImages": { + "type": "String", + "placeholder": {} + }, + "cantOpenUri": "Nie można otworzyć linku {uri}", + "@cantOpenUri": { + "type": "String", + "placeholders": { + "uri": { + "type": "String" + } + } + }, + "configureChat": "Konfiguruj czat", + "@configureChat": { + "type": "String", + "placeholders": {} + }, + "homeserver": "Adres serwera", + "@homeserver": {}, + "locationDisabledNotice": "Usługi lokalizacji są wyłączone. Proszę włącz je aby móc udostępnić swoją lokalizację.", + "@locationDisabledNotice": { + "type": "String", + "placeholders": {} + }, + "oneClientLoggedOut": "Jedno z twoich urządzeń zostało wylogowane", + "@oneClientLoggedOut": {}, + "privacy": "Prywatność", + "@privacy": { + "type": "String", + "placeholders": {} + }, + "theyDontMatch": "Nie zgadzają się", + "@theyDontMatch": { + "type": "String", + "placeholders": {} + }, + "toggleFavorite": "Przełącz ulubione", + "@toggleFavorite": { + "type": "String", + "placeholders": {} + }, + "yourChatBackupHasBeenSetUp": "Kopia zapasowa Twojego czatu została ustawiona.", + "@yourChatBackupHasBeenSetUp": {}, + "chatHasBeenAddedToThisSpace": "Czat został dodany do tej przestrzeni", + "@chatHasBeenAddedToThisSpace": {}, + "contentHasBeenReported": "Treść została zgłoszona administratorom serwera", + "@contentHasBeenReported": { + "type": "String", + "placeholders": {} + }, + "editRoomAvatar": "Edytuj zdjęcie pokoju", + "@editRoomAvatar": { + "type": "String", + "placeholders": {} + }, + "fontSize": "Rozmiar fontu", + "@fontSize": { + "type": "String", + "placeholders": {} + }, + "groups": "Grupy", + "@groups": { + "type": "String", + "placeholders": {} + }, + "locationPermissionDeniedNotice": "Brak uprawnień. Proszę zezwól aplikacji na dostęp do lokalizacji aby móc ją udostępnić.", + "@locationPermissionDeniedNotice": { + "type": "String", + "placeholders": {} + }, + "openVideoCamera": "Nagraj film", + "@openVideoCamera": { + "type": "String", + "placeholders": {} + }, + "messages": "Wiadomości", + "@messages": { + "type": "String", + "placeholders": {} + }, + "offensive": "Obraźliwe", + "@offensive": { + "type": "String", + "placeholders": {} + }, + "pleaseEnterYourPin": "Podaj swój PIN", + "@pleaseEnterYourPin": { + "type": "String", + "placeholders": {} + }, + "reason": "Powód", + "@reason": { + "type": "String", + "placeholders": {} + }, + "redactMessage": "Usuń wiadomość", + "@redactMessage": { + "type": "String", + "placeholders": {} + }, + "setCustomEmotes": "Ustaw niestandardowe emotikony", + "@setCustomEmotes": { + "type": "String", + "placeholders": {} + }, + "withTheseAddressesRecoveryDescription": "Dzięki tym adresom możesz odzyskać swoje hasło.", + "@withTheseAddressesRecoveryDescription": { + "type": "String", + "placeholders": {} + }, + "spaceIsPublic": "Ustaw jako publiczną", + "@spaceIsPublic": { + "type": "String", + "placeholders": {} + }, + "shareLocation": "Udostępnij lokalizację", + "@shareLocation": { + "type": "String", + "placeholders": {} + }, + "setPermissionsLevel": "Ustaw poziom uprawnień", + "@setPermissionsLevel": { + "type": "String", + "placeholders": {} + }, + "skip": "Pomiń", + "@skip": { + "type": "String", + "placeholders": {} + }, + "spaceName": "Nazwa przestrzeni", + "@spaceName": { + "type": "String", + "placeholders": {} + }, + "toggleMuted": "Przełącz wyciszone", + "@toggleMuted": { + "type": "String", + "placeholders": {} + }, + "toggleUnread": "Oznacz przeczytane/nieprzeczytane", + "@toggleUnread": { + "type": "String", + "placeholders": {} + }, + "unavailable": "Niedostępne", + "@unavailable": { + "type": "String", + "placeholders": {} + }, + "publish": "Opublikuj", + "@publish": {}, + "scanQrCode": "Skanuj kod QR", + "@scanQrCode": {}, + "createNewSpace": "Nowa przestrzeń", + "@createNewSpace": { + "type": "String", + "placeholders": {} + }, + "offline": "Offline", + "@offline": { + "type": "String", + "placeholders": {} + }, + "addToSpace": "Dodaj do przestrzeni", + "@addToSpace": {}, + "changeYourAvatar": "Zmień swoje zdjęcie", + "@changeYourAvatar": { + "type": "String", + "placeholders": {} + }, + "commandHint_clearcache": "Wyczyść pamięć podręczną", + "@commandHint_clearcache": { + "type": "String", + "description": "Usage hint for the command /clearcache" + }, + "commandHint_create": "Stwórz pusty czat\nUżyj --no-encryption by wyłączyć szyfrowanie", + "@commandHint_create": { + "type": "String", + "description": "Usage hint for the command /create" + }, + "commandHint_dm": "Rozpocznij czat bezpośredni\nUżyj --no-encryption by wyłączyć szyfrowanie", + "@commandHint_dm": { + "type": "String", + "description": "Usage hint for the command /dm" + }, + "editBlockedServers": "Edytuj zablokowane serwery", + "@editBlockedServers": { + "type": "String", + "placeholders": {} + }, + "enableEncryption": "Włącz szyfowanie", + "@enableEncryption": { + "type": "String", + "placeholders": {} + }, + "defaultPermissionLevel": "Domyślny poziom uprawnień dla nowych użytkowników", + "@defaultPermissionLevel": { + "type": "String", + "placeholders": {} + }, + "ok": "Ok", + "@ok": { + "type": "String", + "placeholders": {} + }, + "oopsPushError": "Ojej! Wystąpił błąd podczas ustawiania powiadomień push.", + "@oopsPushError": { + "type": "String", + "placeholders": {} + }, + "reject": "Odrzuć", + "@reject": { + "type": "String", + "placeholders": {} + }, + "online": "Online", + "@online": { + "type": "String", + "placeholders": {} + }, + "status": "Status", + "@status": { + "type": "String", + "placeholders": {} + }, + "tooManyRequestsWarning": "Zbyt wiele żądań. Proszę spróbować później.", + "@tooManyRequestsWarning": { + "type": "String", + "placeholders": {} + }, + "commandHint_discardsession": "Odrzuć sesję", + "@commandHint_discardsession": { + "type": "String", + "description": "Usage hint for the command /discardsession" + }, + "warning": "Uwaga!", + "@warning": { + "type": "String", + "placeholders": {} + }, + "messageInfo": "Informacje o wiadomości", + "@messageInfo": {}, + "time": "Czas", + "@time": {}, + "messageType": "Rodzaj wiadomości", + "@messageType": {}, + "separateChatTypes": "Oddzielenie czatów bezpośrednich i grupowych", + "@separateChatTypes": { + "type": "String", + "placeholders": {} + }, + "waitingPartnerAcceptRequest": "Oczekiwanie na zaakceptowanie prośby przez drugą osobę…", + "@waitingPartnerAcceptRequest": { + "type": "String", + "placeholders": {} + }, + "waitingPartnerEmoji": "Oczekiwanie na zaakceptowanie emoji przez drugą osobę…", + "@waitingPartnerEmoji": { + "type": "String", + "placeholders": {} + }, + "pleaseChooseAPasscode": "Wybierz kod dostępu", + "@pleaseChooseAPasscode": { + "type": "String", + "placeholders": {} + }, + "unblockDevice": "Odblokuj urządzenie", + "@unblockDevice": { + "type": "String", + "placeholders": {} + }, + "whyDoYouWantToReportThis": "Dlaczego chcesz to zgłosić?", + "@whyDoYouWantToReportThis": { + "type": "String", + "placeholders": {} + }, + "removeFromSpace": "Usuń z przestrzeni", + "@removeFromSpace": {}, + "extremeOffensive": "Bardzo obraźliwe", + "@extremeOffensive": { + "type": "String", + "placeholders": {} + }, + "errorObtainingLocation": "Błąd w ustalaniu lokalizacji: {error}", + "@errorObtainingLocation": { + "type": "String", + "placeholders": { + "error": { + "type": "String" + } + } + }, + "howOffensiveIsThisContent": "Jak bardzo obraźliwa jest ta treść?", + "@howOffensiveIsThisContent": { + "type": "String", + "placeholders": {} + }, + "inoffensive": "Nieobraźliwe", + "@inoffensive": { + "type": "String", + "placeholders": {} + }, + "recoveryKey": "Klucz odzyskiwania", + "@recoveryKey": {}, + "recoveryKeyLost": "Utracono klucz odzyskiwania?", + "@recoveryKeyLost": {}, + "sentCallInformations": "{senderName} wysłał/-a informacje o połączeniu", + "@sentCallInformations": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "singlesignon": "Pojedyncze logowanie", + "@singlesignon": { + "type": "String", + "placeholders": {} + }, + "startFirstChat": "Rozpocznij swój pierwszy czat", + "@startFirstChat": {}, + "verifyStart": "Rozpocznij weryfikację", + "@verifyStart": { + "type": "String", + "placeholders": {} + }, + "verifySuccess": "Pomyślnie zweryfikowano!", + "@verifySuccess": { + "type": "String", + "placeholders": {} + }, + "verifyTitle": "Weryfikowanie innego konta", + "@verifyTitle": { + "type": "String", + "placeholders": {} + }, + "waitingPartnerNumbers": "Oczekiwanie na zaakceptowanie numerów przez drugą osobę…", + "@waitingPartnerNumbers": { + "type": "String", + "placeholders": {} + }, + "sender": "Nadawca", + "@sender": {}, + "openGallery": "Otwórz galerię", + "@openGallery": {}, + "start": "Start", + "@start": {}, + "pleaseEnterRecoveryKeyDescription": "Aby odblokować wcześniejsze wiadomości, wprowadź swój klucz odzyskiwania, który został wygenerowany w poprzedniej sesji. Twój klucz odzyskiwania NIE jest Twoim hasłem.", + "@pleaseEnterRecoveryKeyDescription": {}, + "videoWithSize": "Film ({size})", + "@videoWithSize": { + "type": "String", + "placeholders": { + "size": { + "type": "String" + } + } + }, + "hydrateTorLong": "Czy ostatnio eksportowałeś/-aś swoją sesję na TOR? Szybko ją zaimportuj i kontynuuj rozmowy.", + "@hydrateTorLong": {}, + "dehydrateTorLong": "W przypadku użytkowników sieci TOR zaleca się eksportowanie sesji przed zamknięciem okna.", + "@dehydrateTorLong": {}, + "hydrate": "Przywracanie z pliku kopii zapasowej", + "@hydrate": {}, + "noMatrixServer": "{server1} nie jest serwerem Matriksa, czy chcesz zamiast niego użyć {server2}?", + "@noMatrixServer": { + "type": "String", + "placeholders": { + "server1": { + "type": "String" + }, + "server2": { + "type": "String" + } + } + }, + "hydrateTor": "Użytkownicy TOR: Importuj eksport sesji", + "@hydrateTor": {}, + "numUsersTyping": "{count} użytkowników pisze…", + "@numUsersTyping": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "onlineKeyBackupEnabled": "Kopia zapasowa kluczy online jest włączona", + "@onlineKeyBackupEnabled": { + "type": "String", + "placeholders": {} + }, + "pleaseEnterRecoveryKey": "Wprowadź swój klucz odzyskiwania:", + "@pleaseEnterRecoveryKey": {}, + "submit": "Odeślij", + "@submit": { + "type": "String", + "placeholders": {} + }, + "weSentYouAnEmail": "Wysłaliśmy Ci wiadomość e-mail", + "@weSentYouAnEmail": { + "type": "String", + "placeholders": {} + }, + "unverified": "Niezweryfikowane", + "@unverified": {}, + "wipeChatBackup": "Wymazać kopię zapasową czatu, aby utworzyć nowy klucz odzyskiwania?", + "@wipeChatBackup": { + "type": "String", + "placeholders": {} + }, + "whoCanPerformWhichAction": "Kto może wykonywać jakie czynności", + "@whoCanPerformWhichAction": { + "type": "String", + "placeholders": {} + }, + "reportUser": "Zgłoś użytkownika", + "@reportUser": {}, + "dismiss": "Odrzuć", + "@dismiss": {}, + "markAsRead": "Oznacz jako przeczytane", + "@markAsRead": {}, + "passphraseOrKey": "fraza dostępu lub klucz odzyskiwania", + "@passphraseOrKey": { + "type": "String", + "placeholders": {} + }, + "openChat": "Otwórz czat", + "@openChat": {}, + "addToSpaceDescription": "Wybierz przestrzeń, do której ten czat ma być dodany.", + "@addToSpaceDescription": {}, + "supposedMxid": "To powinno być {mxid}", + "@supposedMxid": { + "type": "String", + "placeholders": { + "mxid": { + "type": "String" + } + } + }, + "commandHint_markasdm": "Oznacz jako pokój wiadomości bezpośrednich dla podanego Matrix ID", + "@commandHint_markasdm": {}, + "confirmMatrixId": "Potwierdź swój identyfikator Matrix w celu usunięcia konta.", + "@confirmMatrixId": {}, + "commandHint_markasgroup": "Oznacz jako grupę", + "@commandHint_markasgroup": {}, + "noEmotesFound": "Nie znaleziono żadnych emotikonów. 😕", + "@noEmotesFound": { + "type": "String", + "placeholders": {} + }, + "dehydrate": "Eksportuj sesję i wymaż urządzenie", + "@dehydrate": {}, + "dehydrateWarning": "Tego nie można cofnąć. Upewnij się, że plik kopii zapasowej jest bezpiecznie przechowywany.", + "@dehydrateWarning": {}, + "dehydrateTor": "Użytkownicy TOR: Eksportuj sesję", + "@dehydrateTor": {}, + "unsupportedAndroidVersion": "Nieobsługiwana wersja systemu Android", + "@unsupportedAndroidVersion": {}, + "widgetCustom": "Własny", + "@widgetCustom": {}, + "widgetEtherpad": "Notatka", + "@widgetEtherpad": {}, + "widgetJitsi": "Jitsi Meet", + "@widgetJitsi": {}, + "pinMessage": "Przypnij do pokoju", + "@pinMessage": {}, + "confirmEventUnpin": "Czy na pewno chcesz trwale odpiąć wydarzenie?", + "@confirmEventUnpin": {}, + "youJoinedTheChat": "Dołączono do czatu", + "@youJoinedTheChat": {}, + "user": "Użytkownik", + "@user": {}, + "custom": "Własne", + "@custom": {}, + "newGroup": "Nowa grupa", + "@newGroup": {}, + "newSpace": "Nowa przestrzeń", + "@newSpace": {}, + "fileIsTooBigForServer": "Nie udało się wysłać! Ten serwer obsługuje załączniki o maksymalnej wielkości {max}.", + "@fileIsTooBigForServer": {}, + "youBannedUser": "Zbanowałeś/-aś {user}", + "@youBannedUser": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "users": "Użytkownicy", + "@users": {}, + "countFiles": "{count} plików", + "@countFiles": { + "placeholders": { + "count": { + "type": "int" + } + } + }, + "noOtherDevicesFound": "Nie znaleziono innych urządzeń", + "@noOtherDevicesFound": {}, + "widgetUrlError": "Niepoprawny URL.", + "@widgetUrlError": {}, + "widgetNameError": "Podaj nazwę wyświetlaną.", + "@widgetNameError": {}, + "encryptThisChat": "Zaszyfruj ten czat", + "@encryptThisChat": {}, + "disableEncryptionWarning": "Ze względów bezpieczeństwa nie można wyłączyć szyfrowania w czacie, w którym zostało ono wcześniej włączone.", + "@disableEncryptionWarning": {}, + "deviceKeys": "Klucze urządzenia:", + "@deviceKeys": {}, + "emailOrUsername": "Adres e-mail lub nazwa użytkownika", + "@emailOrUsername": {}, + "indexedDbErrorLong": "Przechowywanie wiadomości niestety nie jest domyślnie włączone w trybie prywatnym.\nOdwiedź\n - about:config\n - ustaw dom.indexedDB.privateBrowsing.enabled na true\nW przeciwnym razie nie jest możliwe uruchomienie FluffyChat.", + "@indexedDbErrorLong": {}, + "saveKeyManuallyDescription": "Zapisz ten klucz ręcznie, uruchamiając systemowe okno dialogowe udostępniania lub schowek.", + "@saveKeyManuallyDescription": {}, + "screenSharingTitle": "udostępnianie ekranu", + "@screenSharingTitle": {}, + "appearOnTopDetails": "Umożliwia wyświetlanie aplikacji nad innymi (nie jest to konieczne, jeśli FluffyChat jest już ustawiony jako konto do dzwonienia)", + "@appearOnTopDetails": {}, + "noKeyForThisMessage": "Może się to zdarzyć, jeśli wiadomość została wysłana przed zalogowaniem się na to konto na tym urządzeniu.\n\nMożliwe jest również, że nadawca zablokował Twoje urządzenie lub coś poszło nie tak z połączeniem internetowym.\n\nJesteś w stanie odczytać wiadomość na innej sesji? W takim razie możesz przenieść z niej wiadomość! Wejdź w Ustawienia > Urządzenia i upewnij się, że Twoje urządzenia zweryfikowały się wzajemnie. Gdy następnym razem otworzysz pokój i obie sesje będą włączone, klucze zostaną przekazane automatycznie.\n\nNie chcesz stracić kluczy podczas wylogowania lub przełączania urządzeń? Upewnij się, że w ustawieniach masz włączoną kopię zapasową czatu.", + "@noKeyForThisMessage": {}, + "sorryThatsNotPossible": "Przepraszamy... to nie jest możliwe", + "@sorryThatsNotPossible": {}, + "noBackupWarning": "Uwaga! Bez włączenia kopii zapasowej czatu, stracisz dostęp do swoich zaszyfrowanych wiadomości. Zaleca się włączenie kopii zapasowej czatu przed wylogowaniem.", + "@noBackupWarning": {}, + "commandHint_googly": "Wyślij kręcące się oczka", + "@commandHint_googly": {}, + "callingPermissions": "Uprawnienia połączeń", + "@callingPermissions": {}, + "storeInAndroidKeystore": "Przechowaj w Android KeyStore", + "@storeInAndroidKeystore": {}, + "commandHint_cuddle": "Wyślij przytulenie", + "@commandHint_cuddle": {}, + "googlyEyesContent": "{senderName} wysyła ci kręcące się oczka", + "@googlyEyesContent": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "cuddleContent": "{senderName} przytula cię", + "@cuddleContent": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "hugContent": "{senderName} uściska cię", + "@hugContent": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "commandHint_hug": "Wyślij uścisk", + "@commandHint_hug": {}, + "reactedWith": "{sender} zareagował/-a z {reaction}", + "@reactedWith": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + }, + "reaction": { + "type": "String" + } + } + }, + "emojis": "Emoji", + "@emojis": {}, + "placeCall": "Zadzwoń", + "@placeCall": {}, + "voiceCall": "Połączenie głosowe", + "@voiceCall": {}, + "unsupportedAndroidVersionLong": "Ta funkcja wymaga nowszej wersji systemu Android. Sprawdź aktualizacje lub wsparcie Lineage OS.", + "@unsupportedAndroidVersionLong": {}, + "videoCallsBetaWarning": "Należy pamiętać, że połączenia wideo są obecnie w fazie beta. Mogą nie działać zgodnie z oczekiwaniami lub nie działać w ogóle na wszystkich platformach.", + "@videoCallsBetaWarning": {}, + "experimentalVideoCalls": "Eksperymentalne połączenia wideo", + "@experimentalVideoCalls": {}, + "indexedDbErrorTitle": "Problemy związane z trybem prywatnym", + "@indexedDbErrorTitle": {}, + "switchToAccount": "Przełącz na konto {number}", + "@switchToAccount": { + "type": "number", + "placeholders": { + "number": { + "type": "String" + } + } + }, + "nextAccount": "Następne konto", + "@nextAccount": {}, + "previousAccount": "Poprzednie konto", + "@previousAccount": {}, + "addWidget": "Dodaj widżet", + "@addWidget": {}, + "widgetVideo": "Film", + "@widgetVideo": {}, + "widgetName": "Nazwa", + "@widgetName": {}, + "errorAddingWidget": "Błąd podczas dodawania widżetu.", + "@errorAddingWidget": {}, + "youRejectedTheInvitation": "Odrzucono zaproszenie", + "@youRejectedTheInvitation": {}, + "youAcceptedTheInvitation": "👍 Zaakceptowałeś/-aś zaproszenie", + "@youAcceptedTheInvitation": {}, + "youHaveWithdrawnTheInvitationFor": "Wycofano zaproszenie dla {user}", + "@youHaveWithdrawnTheInvitationFor": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youInvitedBy": "📩 Zostałeś/-aś zaproszony/-a przez {user}", + "@youInvitedBy": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youInvitedUser": "📩 Zaprosiłeś/-aś {user}", + "@youInvitedUser": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youKicked": "👞 Wyrzuciłeś/-aś {user}", + "@youKicked": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youKickedAndBanned": "🙅 Wyrzuciłeś/-aś i zbanowałeś/-aś {user}", + "@youKickedAndBanned": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youUnbannedUser": "Odbanowałeś/-aś {user}", + "@youUnbannedUser": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "unlockOldMessages": "Odblokuj stare wiadomości", + "@unlockOldMessages": {}, + "storeInSecureStorageDescription": "Przechowaj klucz odzyskiwania w bezpiecznym magazynie tego urządzenia.", + "@storeInSecureStorageDescription": {}, + "storeInAppleKeyChain": "Przechowaj w pęku kluczy Apple", + "@storeInAppleKeyChain": {}, + "storeSecurlyOnThisDevice": "Przechowaj bezpiecznie na tym urządzeniu", + "@storeSecurlyOnThisDevice": {}, + "foregroundServiceRunning": "To powiadomienie pojawia się, gdy usługa w tle jest uruchomiona.", + "@foregroundServiceRunning": {}, + "screenSharingDetail": "Udostępniasz swój ekran w FluffyChat", + "@screenSharingDetail": {}, + "callingAccount": "Konto połączeń", + "@callingAccount": {}, + "callingAccountDetails": "Pozwala FluffyChat używać natywnej aplikacji do wykonywania połączeń w Androidzie.", + "@callingAccountDetails": {}, + "appearOnTop": "Wyświetlaj nad innymi", + "@appearOnTop": {}, + "otherCallingPermissions": "Mikrofon, kamera i inne uprawnienia FluffyChat", + "@otherCallingPermissions": {}, + "whyIsThisMessageEncrypted": "Dlaczego nie można odczytać tej wiadomości?", + "@whyIsThisMessageEncrypted": {}, + "enterSpace": "Wejdź do przestrzeni", + "@enterSpace": {}, + "enterRoom": "Wejdź do pokoju", + "@enterRoom": {}, + "allSpaces": "Wszystkie przestrzenie", + "@allSpaces": {}, + "numChats": "{number} czatów", + "@numChats": { + "type": "number", + "placeholders": { + "number": { + "type": "String" + } + } + }, + "hideUnimportantStateEvents": "Ukryj nieistotne wydarzenia stanu", + "@hideUnimportantStateEvents": {}, + "doNotShowAgain": "Nie pokazuj ponownie", + "@doNotShowAgain": {}, + "wasDirectChatDisplayName": "Pusty czat (wcześniej {oldDisplayName})", + "@wasDirectChatDisplayName": { + "type": "String", + "placeholders": { + "oldDisplayName": { + "type": "String" + } + } + }, + "newSpaceDescription": "Przestrzenie pozwalają na konsolidację czatów i budowanie prywatnych lub publicznych społeczności.", + "@newSpaceDescription": {}, + "reopenChat": "Otwórz ponownie czat", + "@reopenChat": {}, + "fileHasBeenSavedAt": "Plik został zapisany w ścieżce {path}", + "@fileHasBeenSavedAt": { + "type": "String", + "placeholders": { + "path": { + "type": "String" + } + } + }, + "addToBundle": "Dodaj do pakietu", + "@addToBundle": {}, + "bundleName": "Nazwa pakietu", + "@bundleName": {}, + "editBundlesForAccount": "Edytuj pakiety dla tego konta", + "@editBundlesForAccount": {}, + "jumpToLastReadMessage": "Przejdź do ostatnio przeczytanej wiadomości", + "@jumpToLastReadMessage": {}, + "readUpToHere": "Czytaj do tego miejsca", + "@readUpToHere": {}, + "jump": "Przejdź", + "@jump": {}, + "removeFromBundle": "Usuń z tego pakietu", + "@removeFromBundle": {}, + "openLinkInBrowser": "Otwórz link w przeglądarce", + "@openLinkInBrowser": {}, + "allRooms": "Wszystkie czaty grupowe", + "@allRooms": { + "type": "String", + "placeholders": {} + }, + "reportErrorDescription": "😭 O nie! Coś poszło nie tak. Spróbuj ponownie później. Jeśli chcesz, możesz zgłosić ten błąd autorom programu.", + "@reportErrorDescription": {}, + "setColorTheme": "Ustal styl kolorów:", + "@setColorTheme": {}, + "tryAgain": "Spróbuj ponownie", + "@tryAgain": {}, + "messagesStyle": "Wiadomości:", + "@messagesStyle": {}, + "chatDescription": "Opis czatu", + "@chatDescription": {}, + "invalidServerName": "Nieprawidłowa nazwa serwera", + "@invalidServerName": {}, + "chatPermissions": "Uprawnienia w czacie", + "@chatPermissions": {}, + "signInWithPassword": "Zaloguj się z hasłem", + "@signInWithPassword": {}, + "setChatDescription": "Ustaw opis czatu", + "@setChatDescription": {}, + "importFromZipFile": "Zaimportuj z pliku .zip", + "@importFromZipFile": {}, + "redactedBy": "Usunięte przez {username}", + "@redactedBy": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "signInWith": "Zaloguj się z {provider}", + "@signInWith": { + "type": "String", + "placeholders": { + "provider": { + "type": "String" + } + } + }, + "optionalRedactReason": "(Opcjonalnie) Powód usunięcia tej wiadomości...", + "@optionalRedactReason": {}, + "exportEmotePack": "Eksportuj pakiet emotikonów jako .zip", + "@exportEmotePack": {}, + "inviteContactToGroupQuestion": "Czy chcesz zaprosić {contact} do czatu „{groupName}”?", + "@inviteContactToGroupQuestion": {}, + "redactedByBecause": "Usunięte przez {username} z powodu „{reason}”", + "@redactedByBecause": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "reason": { + "type": "String" + } + } + }, + "redactMessageDescription": "Wiadomość zostanie usunięta u wszystkich uczestników tej rozmowy. Tego nie można cofnąć.", + "@redactMessageDescription": {}, + "invalidInput": "Nieprawidłowe dane!", + "@invalidInput": {}, + "report": "zgłoś", + "@report": {}, + "addChatDescription": "Dodaj opis tego czatu...", + "@addChatDescription": {}, + "directChat": "Czat bezpośredni", + "@directChat": {}, + "wrongPinEntered": "Wprowadzono nieprawidłowy kod PIN! Spróbuj ponownie za {seconds} sekund...", + "@wrongPinEntered": { + "type": "String", + "placeholders": { + "seconds": { + "type": "int" + } + } + }, + "sendTypingNotifications": "Wysyłaj powiadomienie o pisaniu", + "@sendTypingNotifications": {}, + "inviteGroupChat": "📨 Zaproszenie do rozmowy grupowej", + "@inviteGroupChat": {}, + "invitePrivateChat": "📨 Zaproszenie do rozmowy prywatnej", + "@invitePrivateChat": {}, + "importEmojis": "Zaimportuj emotikony", + "@importEmojis": {}, + "noChatDescriptionYet": "Nie utworzono jeszcze opisu czatu.", + "@noChatDescriptionYet": {}, + "notAnImage": "To nie jest plik obrazu.", + "@notAnImage": {}, + "chatDescriptionHasBeenChanged": "Zmieniono opis czatu", + "@chatDescriptionHasBeenChanged": {}, + "profileNotFound": "Nie można odnaleźć użytkownika na serwerze. Być może wystąpił problem z połączeniem lub użytkownik nie istnieje.", + "@profileNotFound": {}, + "shareInviteLink": "Udostępnij link z zaproszeniem", + "@shareInviteLink": {}, + "emoteKeyboardNoRecents": "Tutaj pojawiają się ostatnio używane emotikony...", + "@emoteKeyboardNoRecents": { + "type": "String", + "placeholders": {} + }, + "setTheme": "Ustaw wygląd:", + "@setTheme": {}, + "replace": "Zastąp", + "@replace": {}, + "pleaseTryAgainLaterOrChooseDifferentServer": "Spróbuj ponownie później lub wybierz inny serwer.", + "@pleaseTryAgainLaterOrChooseDifferentServer": {}, + "createGroup": "Utwórz grupę", + "@createGroup": {}, + "importNow": "Zaimportuj", + "@importNow": {}, + "invite": "Zaproszenie", + "@invite": {}, + "block": "Zablokuj", + "@block": {}, + "blockedUsers": "Zablokowani użytkownicy", + "@blockedUsers": {}, + "blockUsername": "Ignoruj użytkownika", + "@blockUsername": {}, + "publicLink": "Link publiczny", + "@publicLink": {}, + "transparent": "Przezroczystość", + "@transparent": {}, + "select": "Zaznacz", + "@select": {}, + "calls": "Połączenia", + "@calls": {}, + "overview": "Podsumowanie", + "@overview": {}, + "learnMore": "Dowiedz się więcej", + "@learnMore": {}, + "groupName": "Nazwa grupy", + "@groupName": {}, + "startConversation": "Rozpocznij rozmowę", + "@startConversation": {}, + "newPassword": "Nowe hasło", + "@newPassword": {}, + "thisDevice": "To urządzenie:", + "@thisDevice": {}, + "gallery": "Galeria", + "@gallery": {}, + "files": "Pliki", + "@files": {}, + "discover": "Odkrywaj", + "@discover": {}, + "restricted": "Ograniczone", + "@restricted": {}, + "decline": "Odmów", + "@decline": {}, + "nothingFound": "Nic nie odnaleziono...", + "@nothingFound": {}, + "stickers": "Naklejki", + "@stickers": {}, + "noChatsFoundHere": "Nie jeszcze ma żadnych czatów. Wciśnij poniższy przycisk, aby rozpocząć nowy czat. ⤵️", + "@noChatsFoundHere": {}, + "hideRedactedMessagesBody": "Usunięte wiadomości nie będą widoczne w czacie.", + "@hideRedactedMessagesBody": {}, + "hideMemberChangesInPublicChats": "Ukryj zmiany członkostwa w publicznych czatach", + "@hideMemberChangesInPublicChats": {}, + "passwordRecoverySettings": "Ustawienia odzyskiwania hasła", + "@passwordRecoverySettings": {}, + "hideMemberChangesInPublicChatsBody": "W celu poprawienia czytelności, nie pokazuj w historii publicznego czatu, czy ktoś do niego dołączył lub go opuścił.", + "@hideMemberChangesInPublicChatsBody": {}, + "presenceStyle": "Obecność:", + "@presenceStyle": { + "type": "String", + "placeholders": {} + }, + "invitedBy": "Zaproszony/-a przez {user}", + "@invitedBy": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "archiveRoomDescription": "Czat zostanie przeniesiony do archiwum. Pozostali użytkownicy będą mogli zobaczyć, że opuściłeś/-aś czat.", + "@archiveRoomDescription": {}, + "yourGlobalUserIdIs": "Twój globalny identyfikator to: ", + "@yourGlobalUserIdIs": {}, + "canceledKeyVerification": "{sender} anulował/-a weryfikację kluczy", + "@canceledKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "isReadyForKeyVerification": "{sender} jest gotowy/-a do weryfikacji kluczy", + "@isReadyForKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "commandHint_ignore": "Ignoruj podany identyfikator Matrix", + "@commandHint_ignore": {}, + "commandHint_unignore": "Przestań ignorować podany identyfikator Matrix", + "@commandHint_unignore": {}, + "changeTheChatPermissions": "Zmień uprawnienia w czacie", + "@changeTheChatPermissions": {}, + "changelog": "Lista zmian", + "@changelog": {}, + "inviteOtherUsers": "Zaproś innych użytkowników do tego czatu", + "@inviteOtherUsers": {}, + "blockListDescription": "Możesz zablokować uciążliwych użytkowników. Nie będziesz widzieć ani otrzymywać wiadomości oraz zaproszeń od nich.", + "@blockListDescription": {}, + "formattedMessages": "Sformatowane wiadomości", + "@formattedMessages": {}, + "banUserDescription": "Użytkownik zostanie zbanowany w czacie i nie będzie w stanie dołączyć do czatu do momentu odbanowania.", + "@banUserDescription": {}, + "subspace": "Podprzestrzeń", + "@subspace": {}, + "sendReadReceipts": "Wysyłaj powiadomienia o przeczytaniu wiadomości", + "@sendReadReceipts": {}, + "verifyOtherDevice": "🔐 Zweryfikuj inne urządzenie", + "@verifyOtherDevice": {}, + "prepareSendingAttachment": "Przygotuj wysyłanie załącznika...", + "@prepareSendingAttachment": {}, + "acceptedKeyVerification": "{sender} zaakceptował/-a weryfikację kluczy", + "@acceptedKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "databaseMigrationTitle": "Baza danych jest zoptymalizowana", + "@databaseMigrationTitle": {}, + "hasKnocked": "{user} zapukał-/a", + "@hasKnocked": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "userLevel": "{level} - Użytkownik", + "@userLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "int" + } + } + }, + "changeTheVisibilityOfChatHistory": "Zmień widoczność historii czatu", + "@changeTheVisibilityOfChatHistory": {}, + "sendImages": "Wyślij {count} obrazów", + "@sendImages": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "noPublicLinkHasBeenCreatedYet": "Nie utworzono jeszcze żadnego publicznego linku", + "@noPublicLinkHasBeenCreatedYet": {}, + "knock": "Zapukaj", + "@knock": {}, + "databaseBuildErrorBody": "Nie udało się utworzyć bazy danych SQLite. Aplikacja na razie spróbuje korzystać ze starej bazy. Prosimy zgłosić ten błąd autorom aplikacji na {url}. Treść błędu to: {error}", + "@databaseBuildErrorBody": { + "type": "String", + "placeholders": { + "url": { + "type": "String" + }, + "error": { + "type": "String" + } + } + }, + "restoreSessionBody": "Aplikacja spróbuje teraz odzyskać Twoją sesję z kopii zapasowej. Prosimy zgłosić ten błąd autorom aplikacji na {url}. Treść błędu to: {error}", + "@restoreSessionBody": { + "type": "String", + "placeholders": { + "url": { + "type": "String" + }, + "error": { + "type": "String" + } + } + }, + "startedKeyVerification": "{sender} rozpoczął/-ęła weryfikację kluczy", + "@startedKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "sendTypingNotificationsDescription": "Pozostali uczestnicy czatu mogą widzieć kiedy piszesz nową wiadomość.", + "@sendTypingNotificationsDescription": {}, + "sendReadReceiptsDescription": "Pozostali uczestnicy czatu mogą widzieć zobaczyć kiedy przeczytasz wiadomość.", + "@sendReadReceiptsDescription": {}, + "noDatabaseEncryption": "Szyfrowanie bazy danych nie jest obsługiwane na tej platformie", + "@noDatabaseEncryption": {}, + "thereAreCountUsersBlocked": "Obecnie jest {count} zablokowanych użytkowników.", + "@thereAreCountUsersBlocked": { + "type": "String", + "count": {} + }, + "goToSpace": "Przejdź do przestrzeni {space}", + "@goToSpace": { + "type": "String", + "space": {} + }, + "markAsUnread": "Oznacz jako nieprzeczytane", + "@markAsUnread": {}, + "moderatorLevel": "{level} - Moderator", + "@moderatorLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "int" + } + } + }, + "adminLevel": "{level} - Administrator", + "@adminLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "int" + } + } + }, + "sendRoomNotifications": "Wysyłaj powiadomienia @room", + "@sendRoomNotifications": {}, + "chatPermissionsDescription": "Ustal jaki poziom uprawnień jest wymagany dla określonych czynności w czacie. Poziomy uprawnień 0, 50 i 100 zwykle dotyczą odpowiednio użytkowników, moderatorów i administratorów, ale możliwa jest dowolna gradacja.", + "@chatPermissionsDescription": {}, + "changeTheCanonicalRoomAlias": "Zmień główny publiczny czatu", + "@changeTheCanonicalRoomAlias": {}, + "changeTheDescriptionOfTheGroup": "Zmień opis czatu", + "@changeTheDescriptionOfTheGroup": {}, + "sendCanceled": "Anulowano wysyłanie", + "@sendCanceled": {}, + "homeserverDescription": "Wszystkie Twoje dane trzymane są na serwerze domowym, jak u dostawców usług e-mail. Możesz wybrać swój serwer domowy i nadal rozmawiać ze wszystkimi. Dowiedz się więcej na https://matrix.org.", + "@homeserverDescription": {}, + "doesNotSeemToBeAValidHomeserver": "Wydaje się nie być kompatybilnym serwerem domowym. Niepoprawny adres URL?", + "@doesNotSeemToBeAValidHomeserver": {}, + "calculatingFileSize": "Obliczanie rozmiaru pliku...", + "@calculatingFileSize": {}, + "sendingAttachment": "Wysyłanie załącznika...", + "@sendingAttachment": {}, + "generatingVideoThumbnail": "Generowanie podglądu filmu...", + "@generatingVideoThumbnail": {}, + "compressVideo": "Kompresowanie filmu...", + "@compressVideo": {}, + "sendingAttachmentCountOfCount": "Wysyłanie {index} z {length} części załącznika...", + "@sendingAttachmentCountOfCount": { + "type": "integer", + "placeholders": { + "index": { + "type": "int" + }, + "length": { + "type": "int" + } + } + }, + "welcomeText": "No cześć! 👋 Tutaj FluffyChat. Możesz zapisać się do dowolnego serwera domowego, kompatybilnego z https://matrix.org i rozmawiać ze wszystkimi. To duża zdecentralizowana sieć czatów!", + "@welcomeText": {}, + "blur": "Rozmazanie:", + "@blur": {}, + "opacity": "Przezroczystość:", + "@opacity": {}, + "setWallpaper": "Ustaw tapetę", + "@setWallpaper": {}, + "manageAccount": "Zarządzaj kontem", + "@manageAccount": {}, + "noContactInformationProvided": "Serwer nie dostarcza żadnych poprawnych danych kontaktowych", + "@noContactInformationProvided": {}, + "contactServerAdmin": "Skontaktuj się z administratorem serwera", + "@contactServerAdmin": {}, + "compress": "Skompresuj", + "@compress": {}, + "pleaseFillOut": "Proszę wypełnić", + "@pleaseFillOut": {}, + "invalidUrl": "Niepoprawny adres URL", + "@invalidUrl": {}, + "unableToJoinChat": "Nie udało się dołączyć do czatu. Może druga strona zakończyła już rozmowę?", + "@unableToJoinChat": {}, + "aboutHomeserver": "O {homeserver}", + "@aboutHomeserver": { + "type": "String", + "placeholders": { + "homeserver": { + "type": "String" + } + } + }, + "updateInstalled": "🎉 Zainstalowano aktualizację do wersji {version}!", + "@updateInstalled": { + "type": "String", + "placeholders": { + "version": { + "type": "String" + } + } + }, + "continueText": "Kontynuuj", + "@continueText": {}, + "noticeChatBackupDeviceVerification": "Uwaga: Urządzenia dodane do kopii zapasowej czatu automatycznie zostają zweryfikowane.", + "@noticeChatBackupDeviceVerification": {}, + "serverLimitReached": "Osiągnięto limit serwera. Czekanie {seconds} sekund...", + "@serverLimitReached": { + "type": "integer", + "placeholders": { + "seconds": { + "type": "int" + } + } + }, + "oneOfYourDevicesIsNotVerified": "Tylko kiedy Twoje urządzenie nie jest zweryfikowane", + "@oneOfYourDevicesIsNotVerified": {}, + "supportPage": "Strona obsługi użytkownika", + "@supportPage": {}, + "serverInformation": "Informacje o serwerze:", + "@serverInformation": {}, + "name": "Nazwa", + "@name": {}, + "website": "Strona internetowa", + "@website": {}, + "contactServerSecurity": "Skontaktuj się z działem bezpieczeństwa serwera", + "@contactServerSecurity": {}, + "version": "Wersja", + "@version": {}, + "accessAndVisibility": "Dostęp i widoczność", + "@accessAndVisibility": {}, + "customEmojisAndStickers": "Własne emotikony i naklejki", + "@customEmojisAndStickers": {}, + "globalChatId": "Globalny identyfikator czatu", + "@globalChatId": {}, + "accessAndVisibilityDescription": "Kto może dołączyć do tego czatu i w jaki sposób można ten czat znaleźć.", + "@accessAndVisibilityDescription": {}, + "customEmojisAndStickersBody": "Dodaj lub podziel się własnymi emotikonami i naklejkami, które będą mogły być użyte w dowolnym czacie.", + "@customEmojisAndStickersBody": {}, + "hideRedactedMessages": "Nie pokazuj usuniętych wiadomości", + "@hideRedactedMessages": {}, + "hideInvalidOrUnknownMessageFormats": "Ukryj niepoprawne lub nieznane typy wiadomości", + "@hideInvalidOrUnknownMessageFormats": {}, + "notifyMeFor": "Powiadom mnie o", + "@notifyMeFor": {}, + "pushNotificationsNotAvailable": "Powiadomienia push nie są dostępne", + "@pushNotificationsNotAvailable": {}, + "noUsersFoundWithQuery": "Niestety nie udało się nikogo znaleźć poprzez \"{query}\". Proszę sprawdzić, czy w zapytaniu nie ma literówek.", + "@noUsersFoundWithQuery": { + "type": "String", + "placeholders": { + "query": { + "type": "String" + } + } + }, + "chatCanBeDiscoveredViaSearchOnServer": "Czat będzie można znaleźć, szukając na {server}", + "@chatCanBeDiscoveredViaSearchOnServer": { + "type": "String", + "placeholders": { + "server": { + "type": "String" + } + } + }, + "publicSpaces": "Przestrzenie publiczne", + "@publicSpaces": {}, + "searchMore": "Szukaj dalej...", + "@searchMore": {}, + "formattedMessagesDescription": "Używaj Markdown do wyświetlania dodatkowego formatowania w wiadomościach, jak np. pogrubienie tekstu.", + "@formattedMessagesDescription": {}, + "verifyOtherUser": "🔐 Zweryfikuj innego użytkownika", + "@verifyOtherUser": {}, + "knockRestricted": "Pukanie jest ograniczone", + "@knockRestricted": {}, + "appLockDescription": "Zablokuj aplikację pinem kiedy nie jest używana", + "@appLockDescription": {}, + "knocking": "Pukanie", + "@knocking": {}, + "pleaseChooseAStrongPassword": "Proszę wybrać silne hasło", + "@pleaseChooseAStrongPassword": {}, + "usersMustKnock": "Użytkownicy muszą zapukać", + "@usersMustKnock": {}, + "noOneCanJoin": "Nikt nie może dołączyć", + "@noOneCanJoin": {}, + "alwaysUse24HourFormat": "false", + "@alwaysUse24HourFormat": { + "description": "Set to true to always display time of day in 24 hour format." + }, + "swipeRightToLeftToReply": "Przeciągnij w lewo, by odpowiedzieć", + "@swipeRightToLeftToReply": {}, + "presencesToggle": "Pokazuj zmiany statusów innych użytkowników", + "@presencesToggle": { + "type": "String", + "placeholders": {} + }, + "hidePresences": "Ukryć listę statusów?", + "@hidePresences": {}, + "pleaseEnterANumber": "Proszę podać liczbę większą od 0", + "@pleaseEnterANumber": {}, + "commandHint_sendraw": "Wyślij zwykły JSON", + "@commandHint_sendraw": {}, + "databaseMigrationBody": "Proszę czekać. Może to potrwać chwilę.", + "@databaseMigrationBody": {}, + "leaveEmptyToClearStatus": "Pozostaw puste, aby wyczyścić swój status.", + "@leaveEmptyToClearStatus": {}, + "sessionLostBody": "Twoja sesja została utracona. Prosimy zgłosić ten błąd autorom aplikacji na {url}. Treść błędu to: {error}", + "@sessionLostBody": { + "type": "String", + "placeholders": { + "url": { + "type": "String" + }, + "error": { + "type": "String" + } + } + }, + "forwardMessageTo": "Przekazać wiadomość do {roomName}?", + "@forwardMessageTo": { + "type": "String", + "placeholders": { + "roomName": { + "type": "String" + } + } + }, + "publicChatAddresses": "Adresy publicznych czatów", + "@publicChatAddresses": {}, + "createNewAddress": "Utwórz nowy adres", + "@createNewAddress": {}, + "userRole": "Rola użytkownika/-czki", + "@userRole": {}, + "completedKeyVerification": "{sender} zakończył/-a weryfikację kluczy", + "@completedKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "italicText": "Kursywa", + "@italicText": {}, + "boldText": "Pogrubienie", + "@boldText": {}, + "strikeThrough": "Przekreślenie", + "@strikeThrough": {}, + "incomingMessages": "Wiadomości przychodzące", + "@incomingMessages": {}, + "discoverHomeservers": "Odkrywaj serwery domowe", + "@discoverHomeservers": {}, + "whatIsAHomeserver": "Czym jest serwer domowy?", + "@whatIsAHomeserver": {}, + "loginWithMatrixId": "Zaloguj się identyfikatorem Matrix", + "@loginWithMatrixId": {}, + "passwordsDoNotMatch": "Hasła się nie zgadzają", + "@passwordsDoNotMatch": {}, + "unbanUserDescription": "Użytkownik będzie w stanie dołączyć do czatu ponownie.", + "@unbanUserDescription": {}, + "roomUpgradeDescription": "Czat zostanie przeniesiony do pokoju w nowej wersji. Wszyscy użytkownicy zostaną powiadomieni o konieczności dołączenia do nowego czatu. Możesz dowiedzieć się więcej o wersjach pokojów na https://spec.matrix.org/latest/rooms/", + "@roomUpgradeDescription": {}, + "userWouldLikeToChangeTheChat": "{user} chce dołączyć do czatu.", + "@userWouldLikeToChangeTheChat": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "requestedKeyVerification": "{sender} poprosił/-a o weryfikację kluczy", + "@requestedKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "changeGeneralChatSettings": "Zmień ogólne ustawienia czatu", + "@changeGeneralChatSettings": {}, + "youInvitedToBy": "Otrzymałeś/-aś link z zaproszeniem do:\n{alias}", + "@youInvitedToBy": { + "placeholders": { + "alias": { + "type": "String" + } + } + }, + "verifyOtherUserDescription": "Jeśli zweryfikujesz innego użytkownika, możesz być pewien/-na z kim naprawdę piszesz. 💪\n\nKiedy rozpoczniesz weryfikację, Ty i ta druga osoba zobaczycie okienko dialogowe. Zobaczycie w nim serię emotikonów lub numery do porównania.\n\nNajlepiej potwierdzić ich zgodność osobiście lub przez wideorozmowę. 👭", + "@verifyOtherUserDescription": {}, + "verifyOtherDeviceDescription": "Jeśli zweryfikujesz inne urządzenie, będzie mogło ono wymienić klucze z dotychczasowym, zwiększając ogólne bezpieczeństwo. 💪 Kiedy rozpoczniesz weryfikację, na obu urządzeniach wyświetli się okno dialogowe. Zobaczysz w nim serię emotikonów lub numery do porównania. Najlepiej mieć oba urządzenia pod ręką przed rozpoczęciem weryfikacji. 🤳", + "@verifyOtherDeviceDescription": {}, + "unreadChatsInApp": "{appname}: {unread} nieprzeczytanych czatów", + "@unreadChatsInApp": { + "type": "String", + "placeholders": { + "appname": { + "type": "String" + }, + "unread": { + "type": "String" + } + } + }, + "addLink": "Dodaj link", + "@addLink": {}, + "unread": "Nieprzeczytane", + "@unread": {}, + "space": "Przestrzeń", + "@space": {}, + "spaces": "Przestrzenie", + "@spaces": {}, + "countChatsAndCountParticipants": "{participants}{chats} czatów i {participants} uczestników", + "@countChatsAndCountParticipants": { + "type": "String", + "placeholders": { + "chats": { + "type": "int" + }, + "participants": { + "type": "int" + } + } + }, + "noMoreChatsFound": "Nie znaleziono więcej czatów...", + "@noMoreChatsFound": {}, + "joinedChats": "Czaty, do których dołączono", + "@joinedChats": {}, + "removeDevicesDescription": "Nastąpi wylogowanie z tego urządzenia. Nie będziesz w stanie odbierać na nim wiadomości.", + "@removeDevicesDescription": {}, + "makeAdminDescription": "Kiedy użytkownik zostanie adminem, nie będziesz móc tego cofnąć, bo nabierze takich samych uprawnień, jak Ty.", + "@makeAdminDescription": {}, + "searchChatsRooms": "Szukaj #czatów, @użytkowników...", + "@searchChatsRooms": {}, + "createGroupAndInviteUsers": "Utwórz grupę i zaproś użytkowników", + "@createGroupAndInviteUsers": {}, + "groupCanBeFoundViaSearch": "Grupa może być znaleziona poprzez wyszukiwanie", + "@groupCanBeFoundViaSearch": {}, + "wrongRecoveryKey": "Niestety to nie wygląda na poprawny klucz odzyskiwania.", + "@wrongRecoveryKey": {}, + "searchForUsers": "Szukaj @użytkowników...", + "@searchForUsers": {}, + "pleaseEnterYourCurrentPassword": "Proszę podać swoje obecne hasło", + "@pleaseEnterYourCurrentPassword": {}, + "passwordIsWrong": "Podano niepoprawne hasło", + "@passwordIsWrong": {}, + "joinSpace": "Dołącz do przestrzeni", + "@joinSpace": {}, + "addChatOrSubSpace": "Dodaj czat lub podprzestrzeń", + "@addChatOrSubSpace": {}, + "initAppError": "Wystąpił błąd podczas inicjalizacji aplikacji", + "@initAppError": {}, + "minimumPowerLevel": "{level} jest minimalnym poziomem uprawnień.", + "@minimumPowerLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "String" + } + } + }, + "searchIn": "Szukaj w czacie \"{chat}\"...", + "@searchIn": { + "type": "String", + "placeholders": { + "chat": { + "type": "String" + } + } + }, + "kickUserDescription": "Użytkownik jest wyrzucony z czatu, ale nie zbanowany. Do czatu publicznego może dołączyć ponownie.", + "@kickUserDescription": {}, + "appWantsToUseForLogin": "Użyj serwera '{server}' do zalogowania się", + "@appWantsToUseForLogin": { + "type": "String", + "placeholders": { + "server": { + "type": "String" + } + } + }, + "appWantsToUseForLoginDescription": "Niniejszym zezwalasz aplikacji i witrynie na udostępnianie informacji o sobie.", + "@appWantsToUseForLoginDescription": {}, + "open": "Otwórz", + "@open": {}, + "contentNotificationSettings": "Ustawienia powiadomień o treści", + "@contentNotificationSettings": {}, + "generalNotificationSettings": "Ogólne ustawienia powiadomień", + "@generalNotificationSettings": {}, + "roomNotificationSettings": "Ustawienia powiadomień w pokoju", + "@roomNotificationSettings": {}, + "userSpecificNotificationSettings": "Ustawienia powiadomień dla użytkownika", + "@userSpecificNotificationSettings": {}, + "otherNotificationSettings": "Inne ustawienia powiadomień", + "@otherNotificationSettings": {}, + "notificationRuleContainsUserName": "Włącz dla wiadomości z nazwą użytkownika", + "@notificationRuleContainsUserName": {}, + "notificationRuleContainsUserNameDescription": "Włącza powiadomienia kiedy wiadomość zawiera Twoją nazwę użytkownika.", + "@notificationRuleContainsUserNameDescription": {}, + "notificationRuleMaster": "Wyłącz wszystkie powiadomienia", + "@notificationRuleMaster": {}, + "notificationRuleMasterDescription": "Zastępuje inne reguły i wyłącza wszystkie powiadomienia.", + "@notificationRuleMasterDescription": {}, + "notificationRuleSuppressNotices": "Wyłącz dla automatycznych wiadomości", + "@notificationRuleSuppressNotices": {}, + "notificationRuleSuppressNoticesDescription": "Wyłącza powiadomienia z automatycznych klientów, takich jak boty.", + "@notificationRuleSuppressNoticesDescription": {}, + "notificationRuleInviteForMe": "Włącz dla zaproszeń", + "@notificationRuleInviteForMe": {}, + "notificationRuleInviteForMeDescription": "Włącza powiadomienia o zaproszeniach do pokoju.", + "@notificationRuleInviteForMeDescription": {}, + "notificationRuleMemberEvent": "Wyłącz dla zmian członkostwa", + "@notificationRuleMemberEvent": {}, + "notificationRuleMemberEventDescription": "Wyłącza powiadomienia o zmianach członkostwa w pokoju.", + "@notificationRuleMemberEventDescription": {}, + "notificationRuleIsUserMention": "Włącz dla wzmianek", + "@notificationRuleIsUserMention": {}, + "notificationRuleIsUserMentionDescription": "Włącza powiadomienia o byciu wzmiankowanym w wiadomości.", + "@notificationRuleIsUserMentionDescription": {}, + "notificationRuleContainsDisplayName": "Włącz dla wiadomości z nazwą wyświetlaną", + "@notificationRuleContainsDisplayName": {}, + "notificationRuleContainsDisplayNameDescription": "Włącza powiadomienia o wiadomościach zawierających Twoją nazwę wyświetlaną.", + "@notificationRuleContainsDisplayNameDescription": {}, + "notificationRuleIsRoomMention": "Włącz dla wzmianek pokoju", + "@notificationRuleIsRoomMention": {}, + "notificationRuleIsRoomMentionDescription": "Włącza powiadomienia o wzmiankowaniu całego pokoju.", + "@notificationRuleIsRoomMentionDescription": {}, + "notificationRuleRoomnotif": "Włącz dla powiadomień w pokoju", + "@notificationRuleRoomnotif": {}, + "notificationRuleRoomnotifDescription": "Włącza powiadomienia o wiadomościach zawierających „@room”.", + "@notificationRuleRoomnotifDescription": {}, + "notificationRuleTombstone": "Włącz dla „nagrobków”", + "@notificationRuleTombstone": {}, + "notificationRuleTombstoneDescription": "Włącza powiadomienia o komunikatach dezaktywacji pokojów.", + "@notificationRuleTombstoneDescription": {}, + "notificationRuleReaction": "Wyłącz dla reakcji", + "@notificationRuleReaction": {}, + "notificationRuleReactionDescription": "Wyłącza powiadomienia o reakcjach.", + "@notificationRuleReactionDescription": {}, + "notificationRuleSuppressEdits": "Wyłącz dla edycji", + "@notificationRuleSuppressEdits": {}, + "notificationRuleSuppressEditsDescription": "Wyłącza powiadomienia o edycjach wiadomości.", + "@notificationRuleSuppressEditsDescription": {}, + "notificationRuleCall": "Włącz dla połączeń", + "@notificationRuleCall": {}, + "notificationRuleRoomServerAclDescription": "Wyłącza powiadomienia dla list kontroli dostępu (ACL) serwera.", + "@notificationRuleRoomServerAclDescription": {}, + "notificationRuleRoomServerAcl": "Wyłącz dla list kontroli dostępu serwera", + "@notificationRuleRoomServerAcl": {}, + "notificationRuleEncryptedRoomOneToOne": "Włącz dla szyfrowanych pokojów „jeden na jeden”", + "@notificationRuleEncryptedRoomOneToOne": {}, + "notificationRuleCallDescription": "Włącza powiadomienia o przychodzących połączeniach.", + "@notificationRuleCallDescription": {}, + "notificationRuleRoomOneToOne": "Włącz dla pokojów „jeden na jeden”", + "@notificationRuleRoomOneToOne": {}, + "notificationRuleRoomOneToOneDescription": "Włącza powiadomienia o wiadomościach w pokojach „jeden na jeden” (one-to-one).", + "@notificationRuleRoomOneToOneDescription": {}, + "notificationRuleMessage": "Włącz dla wiadomości", + "@notificationRuleMessage": {}, + "unknownPushRule": "Nieznana reguła: '{rule}'", + "@unknownPushRule": { + "type": "String", + "placeholders": { + "rule": { + "type": "String" + } + } + }, + "notificationRuleEncryptedRoomOneToOneDescription": "Włącza powiadomienia o wiadomościach w szyfrowanych pokojach „jeden na jeden” (one-to-one).", + "@notificationRuleEncryptedRoomOneToOneDescription": {}, + "notificationRuleEncrypted": "Włącz dla zaszyfrowanych pokojów", + "@notificationRuleEncrypted": {}, + "notificationRuleJitsi": "Włącz dla Jitsi", + "@notificationRuleJitsi": {}, + "notificationRuleServerAcl": "Wyłącz dla komunikatów o listach kontroli dostępu serwera", + "@notificationRuleServerAcl": {}, + "notificationRuleJitsiDescription": "Włącza powiadomienia o komunikatach widżetów Jitsi.", + "@notificationRuleJitsiDescription": {}, + "notificationRuleMessageDescription": "Włącza powiadomienia o ogólnych wiadomościach.", + "@notificationRuleMessageDescription": {}, + "notificationRuleEncryptedDescription": "Włącza powiadomienia o wiadomościach w zaszyfrowanych pokojach.", + "@notificationRuleEncryptedDescription": {}, + "notificationRuleServerAclDescription": "Wyłącza powiadomienia o komunikatach o listach kontroli dostępu (ACL) serwera.", + "@notificationRuleServerAclDescription": {}, + "newChatRequest": "📩 Nowa prośba o czat", + "@newChatRequest": {}, + "synchronizingPleaseWaitCounter": " Synchronizowanie… ({percentage}%)", + "@synchronizingPleaseWaitCounter": { + "type": "String", + "placeholders": { + "percentage": { + "type": "String" + } + } + }, + "waitingForServer": "Oczekiwanie na serwer...", + "@waitingForServer": {}, + "appIntroduction": "FluffyChat umożliwia czatowanie ze znajomymi za pośrednictwem różnych komunikatorów. Dowiedz się więcej na stronie https://matrix.org lub kliknij na *Kontynuuj*.", + "@appIntroduction": {}, + "previous": "Poprzedni", + "@previous": {}, + "otherPartyNotLoggedIn": "Druga strona nie jest obecnie zalogowana i dlatego nie może odbierać wiadomości!", + "@otherPartyNotLoggedIn": {}, + "deletePushRuleCanNotBeUndone": "Jeśli skasujesz to ustawienie powiadomień, nie będzie się dało tego cofnąć.", + "@deletePushRuleCanNotBeUndone": {}, + "more": "Więcej", + "@more": {}, + "shareKeysWith": "Udostępnij klucze...", + "@shareKeysWith": {}, + "crossVerifiedDevicesIfEnabled": "Urządzenia zweryfikowane krzyżowo, jeśli włączone", + "@crossVerifiedDevicesIfEnabled": {}, + "crossVerifiedDevices": "Urządzenia zweryfikowane krzyżowo", + "@crossVerifiedDevices": {}, + "takeAPhoto": "Zrób zdjęcie", + "@takeAPhoto": {}, + "recordAVideo": "Nagraj film", + "@recordAVideo": {}, + "optionalMessage": "(Opcjonalna) wiadomość...", + "@optionalMessage": {}, + "verifiedDevicesOnly": "Tylko zweryfikowane urządzenia", + "@verifiedDevicesOnly": {}, + "shareKeysWithDescription": "Które urządzenia powinny być zaufane, aby mogły odczytywać Twoje wiadomości w zaszyfrowanych czatach?", + "@shareKeysWithDescription": {}, + "allDevices": "Wszystkie urządzenia", + "@allDevices": {}, + "notSupportedOnThisDevice": "Niewspierane na tym urządzeniu", + "@notSupportedOnThisDevice": {}, + "commandHint_roomupgrade": "Zaktualizuj ten pokój do podanej wersji", + "@commandHint_roomupgrade": {}, + "enterNewChat": "Dołącz do nowego czatu", + "@enterNewChat": {}, + "countInvited": "{count} zaproszonych", + "@countInvited": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "sentVoiceMessage": "🎙️ {duration} - Wiadomość głosowa od: {sender}", + "@sentVoiceMessage": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + }, + "duration": { + "type": "String" + } + } + }, + "checkList": "Lista kontrolna", + "@checkList": {}, + "setCustomPermissionLevel": "Ustaw własny poziom uprawnień", + "@setCustomPermissionLevel": {}, + "setPermissionsLevelDescription": "Proszę wybrać predefiniowaną rolę poniżej, lub wprowadzić własny poziom uprawnień pomiędzy 0 a 100.", + "@setPermissionsLevelDescription": {}, + "ignoreUser": "Ignoruj użytkownika", + "@ignoreUser": {}, + "normalUser": "Zwykły użytkownik", + "@normalUser": {}, + "approve": "Zaakceptuj", + "@approve": {}, + "youHaveKnocked": "Zapukałeś/-aś", + "@youHaveKnocked": {}, + "pleaseWaitUntilInvited": "Proszę zaczekać na zaproszenie przez kogoś z pokoju.", + "@pleaseWaitUntilInvited": {}, + "commandHint_logout": "Wyloguj bieżące urządzenie", + "@commandHint_logout": {}, + "commandHint_logoutall": "Wyloguj wszystkie aktywne urządzenia", + "@commandHint_logoutall": {}, + "displayNavigationRail": "Pokazuj pasek nawigacyjny na urządzeniach mobilnych", + "@displayNavigationRail": {}, + "customReaction": "Własna reakcja", + "@customReaction": {}, + "moreEvents": "Więcej zdarzeń", + "@moreEvents": {}, + "declineInvitation": "Odrzuć zaproszenie", + "@declineInvitation": {} } diff --git a/lib/l10n/intl_zh_Hant.arb b/lib/l10n/intl_zh_Hant.arb index 7583a1d25..ea0cd6bf9 100644 --- a/lib/l10n/intl_zh_Hant.arb +++ b/lib/l10n/intl_zh_Hant.arb @@ -1,3353 +1,3362 @@ { - "@@last_modified": "2021-08-14 12:41:09.708353", - "about": "關於", - "@about": { - "type": "String", - "placeholders": {} - }, - "accept": "同意", - "@accept": { - "type": "String", - "placeholders": {} - }, - "acceptedTheInvitation": "👍 {username} 已接受邀請", - "@acceptedTheInvitation": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "account": "帳號", - "@account": { - "type": "String", - "placeholders": {} - }, - "activatedEndToEndEncryption": "🔐 {username} 已啟用點對點加密", - "@activatedEndToEndEncryption": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "addEmail": "新增電子郵件", - "@addEmail": { - "type": "String", - "placeholders": {} - }, - "admin": "管理員", - "@admin": { - "type": "String", - "placeholders": {} - }, - "alias": "別稱", - "@alias": { - "type": "String", - "placeholders": {} - }, - "all": "全部", - "@all": { - "type": "String", - "placeholders": {} - }, - "answeredTheCall": "已開始與 {senderName} 通話", - "@answeredTheCall": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "anyoneCanJoin": "任何人可以加入", - "@anyoneCanJoin": { - "type": "String", - "placeholders": {} - }, - "appLock": "密碼鎖定", - "@appLock": { - "type": "String", - "placeholders": {} - }, - "archive": "封存", - "@archive": { - "type": "String", - "placeholders": {} - }, - "areGuestsAllowedToJoin": "是否允許訪客加入", - "@areGuestsAllowedToJoin": { - "type": "String", - "placeholders": {} - }, - "areYouSure": "您確定嗎?", - "@areYouSure": { - "type": "String", - "placeholders": {} - }, - "areYouSureYouWantToLogout": "您確定要登出嗎?", - "@areYouSureYouWantToLogout": { - "type": "String", - "placeholders": {} - }, - "askSSSSSign": "請輸入您安全儲存的密碼短語或恢復金鑰,以向對方簽名。", - "@askSSSSSign": { - "type": "String", - "placeholders": {} - }, - "askVerificationRequest": "是否接受來自 {username} 的驗證申請?", - "@askVerificationRequest": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "badServerLoginTypesException": "目前伺服器支援的登入類型:\n{serverVersions}\n但本應用程式僅支援:\n{supportedVersions}", - "@badServerLoginTypesException": { - "type": "String", - "placeholders": { - "serverVersions": { - "type": "String" - }, - "supportedVersions": { - "type": "String" - } - } - }, - "badServerVersionsException": "目前伺服器支援的協議版本:\n{serverVersions}\n但本應用程式僅支援 {supportedVersions}", - "@badServerVersionsException": { - "type": "String", - "placeholders": { - "serverVersions": { - "type": "String" - }, - "supportedVersions": { - "type": "String" - } - } - }, - "banFromChat": "已從聊天室中封鎖", - "@banFromChat": { - "type": "String", - "placeholders": {} - }, - "banned": "已被封鎖", - "@banned": { - "type": "String", - "placeholders": {} - }, - "bannedUser": "{username} 封鎖了 {targetName}", - "@bannedUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "blockDevice": "封鎖裝置", - "@blockDevice": { - "type": "String", - "placeholders": {} - }, - "blocked": "已封鎖", - "@blocked": { - "type": "String", - "placeholders": {} - }, - "botMessages": "機器人訊息", - "@botMessages": { - "type": "String", - "placeholders": {} - }, - "cancel": "取消", - "@cancel": { - "type": "String", - "placeholders": {} - }, - "changeDeviceName": "變更裝置名稱", - "@changeDeviceName": { - "type": "String", - "placeholders": {} - }, - "changedTheChatAvatar": "{username} 變更了對話頭貼", - "@changedTheChatAvatar": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheChatDescriptionTo": "{username} 變更了聊天室介紹為:「{description}」", - "@changedTheChatDescriptionTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "description": { - "type": "String" - } - } - }, - "changedTheChatNameTo": "{username} 把聊天室名稱變更為:「{chatname}」", - "@changedTheChatNameTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "chatname": { - "type": "String" - } - } - }, - "changedTheChatPermissions": "{username} 變更了對話權限", - "@changedTheChatPermissions": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheDisplaynameTo": "{username} 變更了顯示名稱為:「{displayname}」", - "@changedTheDisplaynameTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "displayname": { - "type": "String" - } - } - }, - "changedTheGuestAccessRules": "{username} 變更了訪客訪問規則", - "@changedTheGuestAccessRules": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheGuestAccessRulesTo": "{username} 變更了訪客訪問規則為:{rules}", - "@changedTheGuestAccessRulesTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "rules": { - "type": "String" - } - } - }, - "changedTheHistoryVisibility": "{username} 變更了歷史記錄觀察狀態", - "@changedTheHistoryVisibility": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheHistoryVisibilityTo": "{username} 變更了歷史紀錄觀察狀態到:{rules}", - "@changedTheHistoryVisibilityTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "rules": { - "type": "String" - } - } - }, - "changedTheJoinRules": "{username} 變更了加入的規則", - "@changedTheJoinRules": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheJoinRulesTo": "{username} 變更了加入的規則為:{joinRules}", - "@changedTheJoinRulesTo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "joinRules": { - "type": "String" - } - } - }, - "changedTheProfileAvatar": "{username} 變更了頭貼", - "@changedTheProfileAvatar": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheRoomAliases": "{username} 變更了聊天室名", - "@changedTheRoomAliases": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changedTheRoomInvitationLink": "{username} 變更了邀請連結", - "@changedTheRoomInvitationLink": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "changePassword": "變更密碼", - "@changePassword": { - "type": "String", - "placeholders": {} - }, - "changeTheHomeserver": "變更主機位址", - "@changeTheHomeserver": { - "type": "String", - "placeholders": {} - }, - "changeTheme": "變更主題", - "@changeTheme": { - "type": "String", - "placeholders": {} - }, - "changeTheNameOfTheGroup": "變更了群組名稱", - "@changeTheNameOfTheGroup": { - "type": "String", - "placeholders": {} - }, - "channelCorruptedDecryptError": "加密已被破壞", - "@channelCorruptedDecryptError": { - "type": "String", - "placeholders": {} - }, - "chat": "聊天室", - "@chat": { - "type": "String", - "placeholders": {} - }, - "chatBackup": "備份聊天室", - "@chatBackup": { - "type": "String", - "placeholders": {} - }, - "chatBackupDescription": "您的過往聊天室記錄已被恢復金鑰加密。請您確保不會弄丟它。", - "@chatBackupDescription": { - "type": "String", - "placeholders": {} - }, - "chatDetails": "對話詳細", - "@chatDetails": { - "type": "String", - "placeholders": {} - }, - "chooseAStrongPassword": "輸入一個較強的密碼", - "@chooseAStrongPassword": { - "type": "String", - "placeholders": {} - }, - "close": "關閉", - "@close": { - "type": "String", - "placeholders": {} - }, - "compareEmojiMatch": "請對比這些表情", - "@compareEmojiMatch": { - "type": "String", - "placeholders": {} - }, - "compareNumbersMatch": "請對比這些數字", - "@compareNumbersMatch": { - "type": "String", - "placeholders": {} - }, - "configureChat": "設定聊天室", - "@configureChat": { - "type": "String", - "placeholders": {} - }, - "confirm": "確認", - "@confirm": { - "type": "String", - "placeholders": {} - }, - "connect": "連接", - "@connect": { - "type": "String", - "placeholders": {} - }, - "contactHasBeenInvitedToTheGroup": "聯絡人已被邀請至群組", - "@contactHasBeenInvitedToTheGroup": { - "type": "String", - "placeholders": {} - }, - "containsDisplayName": "包含顯示名稱", - "@containsDisplayName": { - "type": "String", - "placeholders": {} - }, - "containsUserName": "包含使用者名稱", - "@containsUserName": { - "type": "String", - "placeholders": {} - }, - "contentHasBeenReported": "此內容已被回報給伺服器管理員們", - "@contentHasBeenReported": { - "type": "String", - "placeholders": {} - }, - "copiedToClipboard": "已複製到剪貼簿", - "@copiedToClipboard": { - "type": "String", - "placeholders": {} - }, - "copy": "複製", - "@copy": { - "type": "String", - "placeholders": {} - }, - "copyToClipboard": "複製到剪貼簿", - "@copyToClipboard": { - "type": "String", - "placeholders": {} - }, - "couldNotDecryptMessage": "不能解密訊息:{error}", - "@couldNotDecryptMessage": { - "type": "String", - "placeholders": { - "error": { - "type": "String" - } - } - }, - "countParticipants": "{count} 個參與者", - "@countParticipants": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "create": "建立", - "@create": { - "type": "String", - "placeholders": {} - }, - "createdTheChat": "💬 {username} 建立了聊天室", - "@createdTheChat": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "currentlyActive": "目前活躍", - "@currentlyActive": { - "type": "String", - "placeholders": {} - }, - "darkTheme": "夜間模式", - "@darkTheme": { - "type": "String", - "placeholders": {} - }, - "dateAndTimeOfDay": "{date} , {timeOfDay}", - "@dateAndTimeOfDay": { - "type": "String", - "placeholders": { - "date": { - "type": "String" - }, - "timeOfDay": { - "type": "String" - } - } - }, - "dateWithoutYear": "{month} - {day}", - "@dateWithoutYear": { - "type": "String", - "placeholders": { - "month": { - "type": "String" - }, - "day": { - "type": "String" - } - } - }, - "dateWithYear": "{year} - {month} - {day}", - "@dateWithYear": { - "type": "String", - "placeholders": { - "year": { - "type": "String" - }, - "month": { - "type": "String" - }, - "day": { - "type": "String" - } - } - }, - "deactivateAccountWarning": "這將停用您的帳號。這個決定是不能挽回的!您確定嗎?", - "@deactivateAccountWarning": { - "type": "String", - "placeholders": {} - }, - "defaultPermissionLevel": "預設權限等級", - "@defaultPermissionLevel": { - "type": "String", - "placeholders": {} - }, - "delete": "刪除", - "@delete": { - "type": "String", - "placeholders": {} - }, - "deleteAccount": "刪除帳號", - "@deleteAccount": { - "type": "String", - "placeholders": {} - }, - "deleteMessage": "刪除訊息", - "@deleteMessage": { - "type": "String", - "placeholders": {} - }, - "device": "裝置", - "@device": { - "type": "String", - "placeholders": {} - }, - "deviceId": "裝置ID", - "@deviceId": { - "type": "String", - "placeholders": {} - }, - "devices": "裝置", - "@devices": { - "type": "String", - "placeholders": {} - }, - "directChats": "直接傳訊", - "@directChats": { - "type": "String", - "placeholders": {} - }, - "displaynameHasBeenChanged": "顯示名稱已被變更", - "@displaynameHasBeenChanged": { - "type": "String", - "placeholders": {} - }, - "downloadFile": "下載文件", - "@downloadFile": { - "type": "String", - "placeholders": {} - }, - "edit": "編輯", - "@edit": { - "type": "String", - "placeholders": {} - }, - "editBlockedServers": "編輯被封鎖的伺服器", - "@editBlockedServers": { - "type": "String", - "placeholders": {} - }, - "editDisplayname": "編輯顯示名稱", - "@editDisplayname": { - "type": "String", - "placeholders": {} - }, - "editRoomAvatar": "編輯聊天室頭貼", - "@editRoomAvatar": { - "type": "String", - "placeholders": {} - }, - "emoteExists": "表情已存在!", - "@emoteExists": { - "type": "String", - "placeholders": {} - }, - "emoteInvalid": "無效的表情快捷鍵!", - "@emoteInvalid": { - "type": "String", - "placeholders": {} - }, - "emotePacks": "聊天室的表情符號", - "@emotePacks": { - "type": "String", - "placeholders": {} - }, - "emoteSettings": "表情設定", - "@emoteSettings": { - "type": "String", - "placeholders": {} - }, - "emoteShortcode": "表情快捷鍵", - "@emoteShortcode": { - "type": "String", - "placeholders": {} - }, - "emoteWarnNeedToPick": "您需要選取一個表情快捷鍵和一張圖片!", - "@emoteWarnNeedToPick": { - "type": "String", - "placeholders": {} - }, - "emptyChat": "空的聊天室", - "@emptyChat": { - "type": "String", - "placeholders": {} - }, - "enableEmotesGlobally": "在全域啟用表情符號", - "@enableEmotesGlobally": { - "type": "String", - "placeholders": {} - }, - "enableEncryption": "啟用加密", - "@enableEncryption": { - "type": "String", - "placeholders": {} - }, - "enableEncryptionWarning": "您將不能再停用加密,確定嗎?", - "@enableEncryptionWarning": { - "type": "String", - "placeholders": {} - }, - "encrypted": "已加密的", - "@encrypted": { - "type": "String", - "placeholders": {} - }, - "encryption": "加密", - "@encryption": { - "type": "String", - "placeholders": {} - }, - "encryptionNotEnabled": "加密未啟用", - "@encryptionNotEnabled": { - "type": "String", - "placeholders": {} - }, - "endedTheCall": "{senderName} 結束了通話", - "@endedTheCall": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "enterAnEmailAddress": "輸入一個電子郵件位址", - "@enterAnEmailAddress": { - "type": "String", - "placeholders": {} - }, - "enterYourHomeserver": "輸入伺服器位址", - "@enterYourHomeserver": { - "type": "String", - "placeholders": {} - }, - "everythingReady": "一切就緒!", - "@everythingReady": { - "type": "String", - "placeholders": {} - }, - "extremeOffensive": "極端令人反感", - "@extremeOffensive": { - "type": "String", - "placeholders": {} - }, - "fileName": "檔案名稱", - "@fileName": { - "type": "String", - "placeholders": {} - }, - "fluffychat": "FluffyChat", - "@fluffychat": { - "type": "String", - "placeholders": {} - }, - "fontSize": "字體大小", - "@fontSize": { - "type": "String", - "placeholders": {} - }, - "forward": "轉發", - "@forward": { - "type": "String", - "placeholders": {} - }, - "fromJoining": "自加入起", - "@fromJoining": { - "type": "String", - "placeholders": {} - }, - "fromTheInvitation": "自邀請起", - "@fromTheInvitation": { - "type": "String", - "placeholders": {} - }, - "group": "群組", - "@group": { - "type": "String", - "placeholders": {} - }, - "groupIsPublic": "群組是公開的", - "@groupIsPublic": { - "type": "String", - "placeholders": {} - }, - "groups": "群組", - "@groups": { - "type": "String", - "placeholders": {} - }, - "groupWith": "名稱為 {displayname} 的群組", - "@groupWith": { - "type": "String", - "placeholders": { - "displayname": { - "type": "String" - } - } - }, - "guestsAreForbidden": "訪客已被禁止", - "@guestsAreForbidden": { - "type": "String", - "placeholders": {} - }, - "guestsCanJoin": "訪客可以加入", - "@guestsCanJoin": { - "type": "String", - "placeholders": {} - }, - "hasWithdrawnTheInvitationFor": "{username} 收回了對 {targetName} 的邀請", - "@hasWithdrawnTheInvitationFor": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "help": "幫助", - "@help": { - "type": "String", - "placeholders": {} - }, - "hideRedactedEvents": "隱藏編輯過的事件", - "@hideRedactedEvents": { - "type": "String", - "placeholders": {} - }, - "hideUnknownEvents": "隱藏未知事件", - "@hideUnknownEvents": { - "type": "String", - "placeholders": {} - }, - "howOffensiveIsThisContent": "這個內容有多令人反感?", - "@howOffensiveIsThisContent": { - "type": "String", - "placeholders": {} - }, - "id": "ID", - "@id": { - "type": "String", - "placeholders": {} - }, - "identity": "身份", - "@identity": { - "type": "String", - "placeholders": {} - }, - "ignore": "無視", - "@ignore": { - "type": "String", - "placeholders": {} - }, - "ignoredUsers": "已無視的使用者", - "@ignoredUsers": { - "type": "String", - "placeholders": {} - }, - "iHaveClickedOnLink": "我已經點擊了網址", - "@iHaveClickedOnLink": { - "type": "String", - "placeholders": {} - }, - "incorrectPassphraseOrKey": "錯誤的密碼短語或恢復金鑰", - "@incorrectPassphraseOrKey": { - "type": "String", - "placeholders": {} - }, - "inoffensive": "不令人反感", - "@inoffensive": { - "type": "String", - "placeholders": {} - }, - "inviteContact": "邀請聯絡人", - "@inviteContact": { - "type": "String", - "placeholders": {} - }, - "inviteContactToGroup": "邀請聯絡人到 {groupName}", - "@inviteContactToGroup": { - "type": "String", - "placeholders": { - "groupName": { - "type": "String" - } - } - }, - "invited": "已邀請", - "@invited": { - "type": "String", - "placeholders": {} - }, - "invitedUser": "📩 {username} 邀請了 {targetName}", - "@invitedUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "invitedUsersOnly": "只有被邀請的使用者", - "@invitedUsersOnly": { - "type": "String", - "placeholders": {} - }, - "inviteForMe": "來自我的邀請", - "@inviteForMe": { - "type": "String", - "placeholders": {} - }, - "inviteText": "{username} 邀請您使用 FluffyChat\n1. 安裝 FluffyChat:https://fluffychat.im\n2. 登入或註冊\n3. 打開該邀請網址:\n{link}", - "@inviteText": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "link": { - "type": "String" - } - } - }, - "isTyping": "正在輸入...…", - "@isTyping": { - "type": "String", - "placeholders": {} - }, - "joinedTheChat": "👋 {username} 加入了聊天室", - "@joinedTheChat": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "joinRoom": "加入聊天室", - "@joinRoom": { - "type": "String", - "placeholders": {} - }, - "kicked": "👞 {username} 踢了 {targetName}", - "@kicked": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "kickedAndBanned": "🙅 {username} 踢了 {targetName} 並將其封鎖", - "@kickedAndBanned": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "kickFromChat": "從聊天室踢出", - "@kickFromChat": { - "type": "String", - "placeholders": {} - }, - "lastActiveAgo": "最後活動時間:{localizedTimeShort}", - "@lastActiveAgo": { - "type": "String", - "placeholders": { - "localizedTimeShort": { - "type": "String" - } - } - }, - "leave": "離開", - "@leave": { - "type": "String", - "placeholders": {} - }, - "leftTheChat": "離開了聊天室", - "@leftTheChat": { - "type": "String", - "placeholders": {} - }, - "license": "授權", - "@license": { - "type": "String", - "placeholders": {} - }, - "lightTheme": "日間模式", - "@lightTheme": { - "type": "String", - "placeholders": {} - }, - "loadCountMoreParticipants": "載入 {count} 個更多的參與者", - "@loadCountMoreParticipants": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "loadingPleaseWait": "載入中...... 請稍候。", - "@loadingPleaseWait": { - "type": "String", - "placeholders": {} - }, - "loadMore": "載入更多...…", - "@loadMore": { - "type": "String", - "placeholders": {} - }, - "login": "登入", - "@login": { - "type": "String", - "placeholders": {} - }, - "logInTo": "登入 {homeserver}", - "@logInTo": { - "type": "String", - "placeholders": { - "homeserver": { - "type": "String" - } - } - }, - "logout": "登出", - "@logout": { - "type": "String", - "placeholders": {} - }, - "memberChanges": "變更成員", - "@memberChanges": { - "type": "String", - "placeholders": {} - }, - "mention": "提及", - "@mention": { - "type": "String", - "placeholders": {} - }, - "messages": "訊息", - "@messages": { - "type": "String", - "placeholders": {} - }, - "moderator": "版主", - "@moderator": { - "type": "String", - "placeholders": {} - }, - "muteChat": "將該聊天室靜音", - "@muteChat": { - "type": "String", - "placeholders": {} - }, - "needPantalaimonWarning": "請注意您需要 Pantalaimon 才能使用點對點加密功能。", - "@needPantalaimonWarning": { - "type": "String", - "placeholders": {} - }, - "newChat": "新聊天", - "@newChat": { - "type": "String", - "placeholders": {} - }, - "newMessageInFluffyChat": "💬 來自 FluffyChat 的新訊息", - "@newMessageInFluffyChat": { - "type": "String", - "placeholders": {} - }, - "newVerificationRequest": "新的驗證請求!", - "@newVerificationRequest": { - "type": "String", - "placeholders": {} - }, - "next": "下一個", - "@next": { - "type": "String", - "placeholders": {} - }, - "no": "否", - "@no": { - "type": "String", - "placeholders": {} - }, - "noConnectionToTheServer": "無法連接到伺服器", - "@noConnectionToTheServer": { - "type": "String", - "placeholders": {} - }, - "noEmotesFound": "表情符號不存在。😕", - "@noEmotesFound": { - "type": "String", - "placeholders": {} - }, - "noEncryptionForPublicRooms": "您只能在這個聊天室不再被允許公開訪問後,才能啟用加密。", - "@noEncryptionForPublicRooms": { - "type": "String", - "placeholders": {} - }, - "noGoogleServicesWarning": "未能在你的裝置找到 Firebase Cloud Messaging(FCM). 如果想要收到通知消息的推送,我們建議安裝 ntfy。在有 ntfy 或其他 Unified Push 應用,便能在資料安全的情況下收到通知的推送。你可以在 Play store 或 F-Droid 下載並安裝 ntfy。", - "@noGoogleServicesWarning": { - "type": "String", - "placeholders": {} - }, - "none": "無", - "@none": { - "type": "String", - "placeholders": {} - }, - "noPasswordRecoveryDescription": "您尚未新增恢復密碼的方法。", - "@noPasswordRecoveryDescription": { - "type": "String", - "placeholders": {} - }, - "noPermission": "沒有權限", - "@noPermission": { - "type": "String", - "placeholders": {} - }, - "noRoomsFound": "找不到聊天室...…", - "@noRoomsFound": { - "type": "String", - "placeholders": {} - }, - "notifications": "通知", - "@notifications": { - "type": "String", - "placeholders": {} - }, - "notificationsEnabledForThisAccount": "已為此帳號啟用通知", - "@notificationsEnabledForThisAccount": { - "type": "String", - "placeholders": {} - }, - "numUsersTyping": "{count} 個人正在輸入...…", - "@numUsersTyping": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "offensive": "令人反感", - "@offensive": { - "type": "String", - "placeholders": {} - }, - "offline": "離線", - "@offline": { - "type": "String", - "placeholders": {} - }, - "ok": "OK", - "@ok": { - "type": "String", - "placeholders": {} - }, - "online": "線上", - "@online": { - "type": "String", - "placeholders": {} - }, - "onlineKeyBackupEnabled": "線上金鑰備份已啟用", - "@onlineKeyBackupEnabled": { - "type": "String", - "placeholders": {} - }, - "oopsSomethingWentWrong": "哎呀!出了一點差錯...…", - "@oopsSomethingWentWrong": { - "type": "String", - "placeholders": {} - }, - "openAppToReadMessages": "打開應用程式以讀取訊息", - "@openAppToReadMessages": { - "type": "String", - "placeholders": {} - }, - "openCamera": "開啟相機", - "@openCamera": { - "type": "String", - "placeholders": {} - }, - "participant": "參與者", - "@participant": { - "type": "String", - "placeholders": {} - }, - "passphraseOrKey": "密碼短語或恢復金鑰", - "@passphraseOrKey": { - "type": "String", - "placeholders": {} - }, - "password": "密碼", - "@password": { - "type": "String", - "placeholders": {} - }, - "passwordForgotten": "忘記密碼", - "@passwordForgotten": { - "type": "String", - "placeholders": {} - }, - "passwordHasBeenChanged": "密碼已被變更", - "@passwordHasBeenChanged": { - "type": "String", - "placeholders": {} - }, - "passwordRecovery": "恢復密碼", - "@passwordRecovery": { - "type": "String", - "placeholders": {} - }, - "pickImage": "選擇圖片", - "@pickImage": { - "type": "String", - "placeholders": {} - }, - "pin": "釘選", - "@pin": { - "type": "String", - "placeholders": {} - }, - "play": "播放 {fileName}", - "@play": { - "type": "String", - "placeholders": { - "fileName": { - "type": "String" - } - } - }, - "pleaseChooseAPasscode": "請選擇一個密碼", - "@pleaseChooseAPasscode": { - "type": "String", - "placeholders": {} - }, - "pleaseClickOnLink": "請點擊電子郵件中的網址,然後繼續。", - "@pleaseClickOnLink": { - "type": "String", - "placeholders": {} - }, - "pleaseEnter4Digits": "請輸入4位數字,或留空以停用密碼鎖定。", - "@pleaseEnter4Digits": { - "type": "String", - "placeholders": {} - }, - "pleaseEnterYourPassword": "請輸入您的密碼", - "@pleaseEnterYourPassword": { - "type": "String", - "placeholders": {} - }, - "pleaseEnterYourUsername": "請輸入您的使用者名稱", - "@pleaseEnterYourUsername": { - "type": "String", - "placeholders": {} - }, - "pleaseFollowInstructionsOnWeb": "請按照網站上的說明進行操作,然後點擊下一步。", - "@pleaseFollowInstructionsOnWeb": { - "type": "String", - "placeholders": {} - }, - "privacy": "隱私", - "@privacy": { - "type": "String", - "placeholders": {} - }, - "publicRooms": "公開的聊天室", - "@publicRooms": { - "type": "String", - "placeholders": {} - }, - "pushRules": "推播規則", - "@pushRules": { - "type": "String", - "placeholders": {} - }, - "reason": "原因", - "@reason": { - "type": "String", - "placeholders": {} - }, - "recording": "錄音中", - "@recording": { - "type": "String", - "placeholders": {} - }, - "redactedAnEvent": "{username} 編輯了一個事件", - "@redactedAnEvent": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "redactMessage": "重新編輯訊息", - "@redactMessage": { - "type": "String", - "placeholders": {} - }, - "reject": "拒絕", - "@reject": { - "type": "String", - "placeholders": {} - }, - "rejectedTheInvitation": "{username} 拒絕了邀請", - "@rejectedTheInvitation": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "rejoin": "重新加入", - "@rejoin": { - "type": "String", - "placeholders": {} - }, - "remove": "移除", - "@remove": { - "type": "String", - "placeholders": {} - }, - "removeAllOtherDevices": "移除所有其他裝置", - "@removeAllOtherDevices": { - "type": "String", - "placeholders": {} - }, - "removedBy": "被 {username} 移除", - "@removedBy": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "removeDevice": "移除裝置", - "@removeDevice": { - "type": "String", - "placeholders": {} - }, - "unbanFromChat": "解封聊天室", - "@unbanFromChat": { - "type": "String", - "placeholders": {} - }, - "replaceRoomWithNewerVersion": "用較新的版本取代聊天室", - "@replaceRoomWithNewerVersion": { - "type": "String", - "placeholders": {} - }, - "reply": "回覆", - "@reply": { - "type": "String", - "placeholders": {} - }, - "reportMessage": "檢舉訊息", - "@reportMessage": { - "type": "String", - "placeholders": {} - }, - "requestPermission": "請求權限", - "@requestPermission": { - "type": "String", - "placeholders": {} - }, - "roomHasBeenUpgraded": "聊天室已更新", - "@roomHasBeenUpgraded": { - "type": "String", - "placeholders": {} - }, - "search": "搜尋", - "@search": { - "type": "String", - "placeholders": {} - }, - "security": "安全", - "@security": { - "type": "String", - "placeholders": {} - }, - "seenByUser": "{username} 已讀", - "@seenByUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "send": "傳送", - "@send": { - "type": "String", - "placeholders": {} - }, - "sendAMessage": "傳送訊息", - "@sendAMessage": { - "type": "String", - "placeholders": {} - }, - "sendAudio": "傳送音訊", - "@sendAudio": { - "type": "String", - "placeholders": {} - }, - "sendFile": "傳送文件", - "@sendFile": { - "type": "String", - "placeholders": {} - }, - "sendImage": "傳送圖片", - "@sendImage": { - "type": "String", - "placeholders": {} - }, - "sendMessages": "傳送訊息", - "@sendMessages": { - "type": "String", - "placeholders": {} - }, - "sendOriginal": "傳送原始內容", - "@sendOriginal": { - "type": "String", - "placeholders": {} - }, - "sendVideo": "傳送影片", - "@sendVideo": { - "type": "String", - "placeholders": {} - }, - "sentAFile": "{username} 傳送了一個文件", - "@sentAFile": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentAnAudio": "🎤{username} 傳送了一個音訊", - "@sentAnAudio": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentAPicture": "🖼️{username} 傳送了一張圖片", - "@sentAPicture": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentASticker": "😊{username} 傳送了貼圖", - "@sentASticker": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentAVideo": "🎥{username} 傳送了影片", - "@sentAVideo": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "sentCallInformations": "{senderName} 傳送了通話資訊", - "@sentCallInformations": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "setCustomEmotes": "自訂表情符號", - "@setCustomEmotes": { - "type": "String", - "placeholders": {} - }, - "setInvitationLink": "設定邀請連結", - "@setInvitationLink": { - "type": "String", - "placeholders": {} - }, - "setPermissionsLevel": "設定權限等級", - "@setPermissionsLevel": { - "type": "String", - "placeholders": {} - }, - "setStatus": "設定狀態", - "@setStatus": { - "type": "String", - "placeholders": {} - }, - "settings": "設定", - "@settings": { - "type": "String", - "placeholders": {} - }, - "share": "分享", - "@share": { - "type": "String", - "placeholders": {} - }, - "sharedTheLocation": "{username} 分享了位置", - "@sharedTheLocation": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "showPassword": "顯示密碼", - "@showPassword": { - "type": "String", - "placeholders": {} - }, - "skip": "跳過", - "@skip": { - "type": "String", - "placeholders": {} - }, - "sourceCode": "原始碼", - "@sourceCode": { - "type": "String", - "placeholders": {} - }, - "startedACall": "{senderName} 開始了通話", - "@startedACall": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "status": "狀態", - "@status": { - "type": "String", - "placeholders": {} - }, - "statusExampleMessage": "今天過得如何?", - "@statusExampleMessage": { - "type": "String", - "placeholders": {} - }, - "submit": "送出", - "@submit": { - "type": "String", - "placeholders": {} - }, - "systemTheme": "自動", - "@systemTheme": { - "type": "String", - "placeholders": {} - }, - "theyDontMatch": "它們不相符", - "@theyDontMatch": { - "type": "String", - "placeholders": {} - }, - "theyMatch": "它們相符", - "@theyMatch": { - "type": "String", - "placeholders": {} - }, - "title": "FluffyChat", - "@title": { - "description": "Title for the application", - "type": "String", - "placeholders": {} - }, - "toggleFavorite": "切換收藏夾", - "@toggleFavorite": { - "type": "String", - "placeholders": {} - }, - "toggleMuted": "切換靜音", - "@toggleMuted": { - "type": "String", - "placeholders": {} - }, - "toggleUnread": "標示為已讀/未讀", - "@toggleUnread": { - "type": "String", - "placeholders": {} - }, - "tooManyRequestsWarning": "太多請求了。請稍候再試!", - "@tooManyRequestsWarning": { - "type": "String", - "placeholders": {} - }, - "transferFromAnotherDevice": "從其他裝置傳輸", - "@transferFromAnotherDevice": { - "type": "String", - "placeholders": {} - }, - "tryToSendAgain": "再次嘗試傳送", - "@tryToSendAgain": { - "type": "String", - "placeholders": {} - }, - "unavailable": "無法取得", - "@unavailable": { - "type": "String", - "placeholders": {} - }, - "unbannedUser": "{username} 解除封鎖了 {targetName}", - "@unbannedUser": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "targetName": { - "type": "String" - } - } - }, - "unblockDevice": "解除鎖定裝置", - "@unblockDevice": { - "type": "String", - "placeholders": {} - }, - "unknownDevice": "未知裝置", - "@unknownDevice": { - "type": "String", - "placeholders": {} - }, - "unknownEncryptionAlgorithm": "未知的加密演算法", - "@unknownEncryptionAlgorithm": { - "type": "String", - "placeholders": {} - }, - "unknownEvent": "未知事件「{type}」", - "@unknownEvent": { - "type": "String", - "placeholders": { - "type": { - "type": "String" - } - } - }, - "unmuteChat": "取消靜音聊天室", - "@unmuteChat": { - "type": "String", - "placeholders": {} - }, - "unpin": "取消釘選", - "@unpin": { - "type": "String", - "placeholders": {} - }, - "unreadChats": "{unreadCount, plural, =1 {1 unread chat} other { {unreadCount} 個未讀聊天室} }", - "@unreadChats": { - "type": "String", - "placeholders": { - "unreadCount": { - "type": "int" - } - } - }, - "userAndOthersAreTyping": "{username} 和其他 {count} 個人正在輸入...…", - "@userAndOthersAreTyping": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "count": { - "type": "int" - } - } - }, - "userAndUserAreTyping": "{username} 和 {username2} 正在輸入...…", - "@userAndUserAreTyping": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "username2": { - "type": "String" - } - } - }, - "userIsTyping": "{username} 正在輸入...…", - "@userIsTyping": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "userLeftTheChat": "{username} 離開了聊天室", - "@userLeftTheChat": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "username": "使用者名稱", - "@username": { - "type": "String", - "placeholders": {} - }, - "userSentUnknownEvent": "{username} 傳送了一個 {type} 事件", - "@userSentUnknownEvent": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "type": { - "type": "String" - } - } - }, - "verified": "已驗證", - "@verified": { - "type": "String", - "placeholders": {} - }, - "verify": "驗證", - "@verify": { - "type": "String", - "placeholders": {} - }, - "verifyStart": "開始驗證", - "@verifyStart": { - "type": "String", - "placeholders": {} - }, - "verifySuccess": "您成功驗證了!", - "@verifySuccess": { - "type": "String", - "placeholders": {} - }, - "verifyTitle": "正在驗證其他帳號", - "@verifyTitle": { - "type": "String", - "placeholders": {} - }, - "videoCall": "視訊通話", - "@videoCall": { - "type": "String", - "placeholders": {} - }, - "visibilityOfTheChatHistory": "聊天室記錄的可見性", - "@visibilityOfTheChatHistory": { - "type": "String", - "placeholders": {} - }, - "visibleForAllParticipants": "對所有參與者可見", - "@visibleForAllParticipants": { - "type": "String", - "placeholders": {} - }, - "visibleForEveryone": "對所有人可見", - "@visibleForEveryone": { - "type": "String", - "placeholders": {} - }, - "voiceMessage": "語音訊息", - "@voiceMessage": { - "type": "String", - "placeholders": {} - }, - "waitingPartnerAcceptRequest": "正在等待夥伴接受請求...…", - "@waitingPartnerAcceptRequest": { - "type": "String", - "placeholders": {} - }, - "waitingPartnerEmoji": "正在等待夥伴接受表情符號...…", - "@waitingPartnerEmoji": { - "type": "String", - "placeholders": {} - }, - "waitingPartnerNumbers": "正在等待夥伴接受數字...…", - "@waitingPartnerNumbers": { - "type": "String", - "placeholders": {} - }, - "wallpaper": "桌布:", - "@wallpaper": { - "type": "String", - "placeholders": {} - }, - "warning": "警告!", - "@warning": { - "type": "String", - "placeholders": {} - }, - "weSentYouAnEmail": "我們向您傳送了一封電子郵件", - "@weSentYouAnEmail": { - "type": "String", - "placeholders": {} - }, - "whoCanPerformWhichAction": "誰可以執行這個動作", - "@whoCanPerformWhichAction": { - "type": "String", - "placeholders": {} - }, - "whoIsAllowedToJoinThisGroup": "誰可以加入這個群組", - "@whoIsAllowedToJoinThisGroup": { - "type": "String", - "placeholders": {} - }, - "whyDoYouWantToReportThis": "您檢舉的原因是什麼?", - "@whyDoYouWantToReportThis": { - "type": "String", - "placeholders": {} - }, - "wipeChatBackup": "是否清除您的聊天室記錄備份以建立新的安全金鑰嗎?", - "@wipeChatBackup": { - "type": "String", - "placeholders": {} - }, - "withTheseAddressesRecoveryDescription": "有了這些位址,您就可以恢復密碼。", - "@withTheseAddressesRecoveryDescription": { - "type": "String", - "placeholders": {} - }, - "writeAMessage": "輸入訊息...…", - "@writeAMessage": { - "type": "String", - "placeholders": {} - }, - "yes": "是", - "@yes": { - "type": "String", - "placeholders": {} - }, - "you": "您", - "@you": { - "type": "String", - "placeholders": {} - }, - "youAreNoLongerParticipatingInThisChat": "您不再參與這個聊天室了", - "@youAreNoLongerParticipatingInThisChat": { - "type": "String", - "placeholders": {} - }, - "youHaveBeenBannedFromThisChat": "您已經被這個聊天室封鎖", - "@youHaveBeenBannedFromThisChat": { - "type": "String", - "placeholders": {} - }, - "yourPublicKey": "您的公鑰", - "@yourPublicKey": { - "type": "String", - "placeholders": {} - }, - "people": "人", - "@people": { - "type": "String", - "placeholders": {} - }, - "chats": "聊天室", - "@chats": { - "type": "String", - "placeholders": {} - }, - "allChats": "所有會話", - "@allChats": { - "type": "String", - "placeholders": {} - }, - "commandHint_ban": "在此聊天室封鎖該使用者", - "@commandHint_ban": { - "type": "String", - "description": "Usage hint for the command /ban" - }, - "commandHint_clearcache": "清除快取", - "@commandHint_clearcache": { - "type": "String", - "description": "Usage hint for the command /clearcache" - }, - "commandHint_create": "建立一個空的群聊\n使用 --no-encryption 選項來停用加密", - "@commandHint_create": { - "type": "String", - "description": "Usage hint for the command /create" - }, - "commandHint_discardsession": "丟棄工作階段", - "@commandHint_discardsession": { - "type": "String", - "description": "Usage hint for the command /discardsession" - }, - "commandHint_dm": "啟動一對一聊天室\n使用 --no-encryption 選項來停用加密", - "@commandHint_dm": { - "type": "String", - "description": "Usage hint for the command /dm" - }, - "commandHint_invite": "邀請該使用者加入此聊天室", - "@commandHint_invite": { - "type": "String", - "description": "Usage hint for the command /invite" - }, - "commandHint_join": "加入此聊天室", - "@commandHint_join": { - "type": "String", - "description": "Usage hint for the command /join" - }, - "commandHint_kick": "將這個使用者移出此聊天室", - "@commandHint_kick": { - "type": "String", - "description": "Usage hint for the command /kick" - }, - "commandHint_leave": "退出此聊天室", - "@commandHint_leave": { - "type": "String", - "description": "Usage hint for the command /leave" - }, - "commandHint_myroomnick": "設定您的聊天室暱稱", - "@commandHint_myroomnick": { - "type": "String", - "description": "Usage hint for the command /myroomnick" - }, - "editRoomAliases": "編輯聊天室名", - "@editRoomAliases": { - "type": "String", - "placeholders": {} - }, - "roomVersion": "聊天室的版本", - "@roomVersion": { - "type": "String", - "placeholders": {} - }, - "addToSpace": "加入空間", - "@addToSpace": {}, - "cantOpenUri": "無法打開 URI {uri}", - "@cantOpenUri": { - "type": "String", - "placeholders": { - "uri": { - "type": "String" - } - } - }, - "repeatPassword": "再次輸入密碼", - "@repeatPassword": {}, - "yourChatBackupHasBeenSetUp": "您的聊天室記錄備份已設定。", - "@yourChatBackupHasBeenSetUp": {}, - "goToTheNewRoom": "前往新聊天室", - "@goToTheNewRoom": { - "type": "String", - "placeholders": {} - }, - "commandHint_myroomavatar": "設定您的聊天室頭貼(通過 mxc-uri)", - "@commandHint_myroomavatar": { - "type": "String", - "description": "Usage hint for the command /myroomavatar" - }, - "commandHint_unban": "在此聊天室解除封鎖該使用者", - "@commandHint_unban": { - "type": "String", - "description": "Usage hint for the command /unban" - }, - "autoplayImages": "自動播放動態貼圖和表情", - "@autoplayImages": { - "type": "String", - "placeholder": {} - }, - "sendOnEnter": "按 Enter 鍵傳送", - "@sendOnEnter": {}, - "changeYourAvatar": "更改您的大頭貼", - "@changeYourAvatar": { - "type": "String", - "placeholders": {} - }, - "chatHasBeenAddedToThisSpace": "聊天室已新增到此空間", - "@chatHasBeenAddedToThisSpace": {}, - "clearArchive": "清除存檔", - "@clearArchive": {}, - "hugContent": "{senderName} 擁抱您", - "@hugContent": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "commandHint_cuddle": "傳送一個摟抱表情", - "@commandHint_cuddle": {}, - "supposedMxid": "此處應爲 {mxid}", - "@supposedMxid": { - "type": "String", - "placeholders": { - "mxid": { - "type": "String" - } - } - }, - "invalidServerName": "伺服器名稱錯誤", - "@invalidServerName": {}, - "importFromZipFile": "從 .zip 檔案匯入", - "@importFromZipFile": {}, - "homeserver": "伺服器", - "@homeserver": {}, - "exportEmotePack": "將表情包匯出成 .zip 檔案", - "@exportEmotePack": {}, - "commandInvalid": "命令無效", - "@commandInvalid": { - "type": "String" - }, - "commandMissing": "{command} 不是正確的命令。", - "@commandMissing": { - "type": "String", - "placeholders": { - "command": { - "type": "String" - } - }, - "description": "State that {command} is not a valid /command." - }, - "googlyEyesContent": "{senderName} 向您傳送了瞪眼表情", - "@googlyEyesContent": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "addChatDescription": "新增聊天室描述......", - "@addChatDescription": {}, - "sendTypingNotifications": "傳送「輸入中」通知", - "@sendTypingNotifications": {}, - "importEmojis": "匯入表情包", - "@importEmojis": {}, - "confirmMatrixId": "如需刪除你的帳戶,請確認你的 Matrix ID。", - "@confirmMatrixId": {}, - "notAnImage": "不是圖片檔案。", - "@notAnImage": {}, - "cuddleContent": "{senderName} 摟抱您", - "@cuddleContent": { - "type": "String", - "placeholders": { - "senderName": { - "type": "String" - } - } - }, - "commandHint_hug": "傳送一個擁抱表情", - "@commandHint_hug": {}, - "replace": "取代", - "@replace": {}, - "commandHint_googly": "傳送一些瞪眼表情", - "@commandHint_googly": {}, - "importNow": "立即匯入", - "@importNow": {}, - "blockListDescription": "你可以封鎖打擾你的使用者。你不會再收到任何從已封鎖使用者發來的訊息或聊天室邀請。", - "@blockListDescription": {}, - "blockedUsers": "已封鎖的使用者", - "@blockedUsers": {}, - "block": "封鎖", - "@block": {}, - "discover": "發現", - "@discover": {}, - "alwaysUse24HourFormat": "false", - "@alwaysUse24HourFormat": { - "description": "Set to true to always display time of day in 24 hour format." - }, - "sender": "傳送者", - "@sender": {}, - "voiceCall": "語音通話", - "@voiceCall": {}, - "blockUsername": "無視使用者名稱", - "@blockUsername": {}, - "noBackupWarning": "警告!如果不啟用聊天室備份,您將失去對加密訊息的訪問。強烈建議在登出前先啟用聊天室備份。", - "@noBackupWarning": {}, - "addChatOrSubSpace": "新增聊天室或子空間", - "@addChatOrSubSpace": {}, - "thisDevice": "這個裝置:", - "@thisDevice": {}, - "separateChatTypes": "分開私訊和群組", - "@separateChatTypes": { - "type": "String", - "placeholders": {} - }, - "commandHint_markasdm": "將給定的 Matrix ID 標示為直接訊息房間", - "@commandHint_markasdm": {}, - "commandHint_html": "傳送 HTML 格式的文字", - "@commandHint_html": { - "type": "String", - "description": "Usage hint for the command /html" - }, - "commandHint_send": "傳送文字", - "@commandHint_send": { - "type": "String", - "description": "Usage hint for the command /send" - }, - "emoteKeyboardNoRecents": "最近使用的表情將顯示在這裡...", - "@emoteKeyboardNoRecents": { - "type": "String", - "placeholders": {} - }, - "noChatDescriptionYet": "尚未建立聊天室描述。", - "@noChatDescriptionYet": {}, - "optionalRedactReason": "(非必填)收回此訊息的原因...", - "@optionalRedactReason": {}, - "dehydrateWarning": "此操作不能反悔。請確保安全地存儲備份文件。", - "@dehydrateWarning": {}, - "hydrateTorLong": "上次在 TOR 上匯出會話了嗎?快速匯入它已繼續使用聊天室。", - "@hydrateTorLong": {}, - "hydrate": "從備份文件恢復", - "@hydrate": {}, - "locationDisabledNotice": "位置服務被停用。請啟用它們以能夠分享您的位置。", - "@locationDisabledNotice": { - "type": "String", - "placeholders": {} - }, - "noMatrixServer": "{server1} 不是 Matrix 服務器,改用 {server2} 嗎?", - "@noMatrixServer": { - "type": "String", - "placeholders": { - "server1": { - "type": "String" - }, - "server2": { - "type": "String" - } - } - }, - "addToBundle": "新增到套組", - "@addToBundle": {}, - "bundleName": "套組名稱", - "@bundleName": {}, - "pleaseEnterYourPin": "請輸入您的密碼", - "@pleaseEnterYourPin": { - "type": "String", - "placeholders": {} - }, - "redactedByBecause": "由 {username} 編輯,原因:「{reason}」", - "@redactedByBecause": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - }, - "reason": { - "type": "String" - } - } - }, - "saveFile": "儲存檔案", - "@saveFile": { - "type": "String", - "placeholders": {} - }, - "publish": "發布", - "@publish": {}, - "hasKnocked": "🚪 {user} 敲門了", - "@hasKnocked": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "unlockOldMessages": "解鎖舊消息", - "@unlockOldMessages": {}, - "callingAccountDetails": "允許 FluffyChat 使用原生 Android 撥號應用程式。", - "@callingAccountDetails": {}, - "noOtherDevicesFound": "未找到其他裝置", - "@noOtherDevicesFound": {}, - "noUsersFoundWithQuery": "很遺憾,找不到與「{query}」相符的使用者。請檢查是否有打錯字。", - "@noUsersFoundWithQuery": { - "type": "String", - "placeholders": { - "query": { - "type": "String" - } - } - }, - "publicLink": "公開網址", - "@publicLink": {}, - "dehydrate": "匯出會話並清除裝置", - "@dehydrate": {}, - "dehydrateTor": "TOR 使用者:匯出會話", - "@dehydrateTor": {}, - "reopenChat": "重新開啟聊天室", - "@reopenChat": {}, - "widgetNameError": "請提供一個顯示名稱。", - "@widgetNameError": {}, - "yourGlobalUserIdIs": "您的全域使用者ID是: ", - "@yourGlobalUserIdIs": {}, - "startFirstChat": "開始您的第一次聊天室", - "@startFirstChat": {}, - "experimentalVideoCalls": "實驗性視訊通話", - "@experimentalVideoCalls": {}, - "youAcceptedTheInvitation": "👍 您接受了邀請", - "@youAcceptedTheInvitation": {}, - "storeSecurlyOnThisDevice": "在此裝置上安全存儲", - "@storeSecurlyOnThisDevice": {}, - "countFiles": "{count} 個文件", - "@countFiles": { - "placeholders": { - "count": { - "type": "int" - } - } - }, - "screenSharingDetail": "您正在 FuffyChat 中分享您的螢幕", - "@screenSharingDetail": {}, - "wrongPinEntered": "輸入的密碼錯誤! {seconds} 秒後再試一次......", - "@wrongPinEntered": { - "type": "String", - "placeholders": { - "seconds": { - "type": "int" - } - } - }, - "archiveRoomDescription": "聊天室將被移動到存檔中。其他使用者將能看到您已離開聊天室。", - "@archiveRoomDescription": {}, - "banUserDescription": "該使用者將被禁止進入聊天室,直到他們被解封之前都無法再次進入聊天室。", - "@banUserDescription": {}, - "searchChatsRooms": "搜尋 #chats, @users...", - "@searchChatsRooms": {}, - "decline": "拒絕", - "@decline": {}, - "sendReadReceipts": "傳送已讀回條", - "@sendReadReceipts": {}, - "formattedMessagesDescription": "使用 markdown 顯示豐富的訊息內容,如粗體文字。", - "@formattedMessagesDescription": {}, - "verifyOtherDevice": "🔐 驗證其他裝置", - "@verifyOtherDevice": {}, - "youInvitedUser": "📩 您邀請了 {user}", - "@youInvitedUser": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "pinMessage": "釘選到房間", - "@pinMessage": {}, - "youKicked": "👞 您踢出了 {user}", - "@youKicked": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "users": "使用者", - "@users": {}, - "pleaseChoose": "請選擇", - "@pleaseChoose": { - "type": "String", - "placeholders": {} - }, - "youRejectedTheInvitation": "您拒絕了邀請", - "@youRejectedTheInvitation": {}, - "enterRoom": "進入房間", - "@enterRoom": {}, - "allSpaces": "所有空間", - "@allSpaces": {}, - "indexedDbErrorLong": "預設情況下,私密模式不啟用消息存儲。\n請訪問\n - about:config\n - 將 dom.indexedDB.privateBrowsing.enabled 設定為 true\n否則,無法運行 FluffyChat。", - "@indexedDbErrorLong": {}, - "youKickedAndBanned": "🙅 您踢出並封鎖了 {user}", - "@youKickedAndBanned": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "user": "使用者", - "@user": {}, - "custom": "自訂", - "@custom": {}, - "hidePresences": "隱藏狀態列表?", - "@hidePresences": {}, - "signInWithPassword": "使用密碼登入", - "@signInWithPassword": {}, - "setColorTheme": "設定主題顏色:", - "@setColorTheme": {}, - "makeAdminDescription": "一旦您讓這個使用者成為管理員,您可能無法撤銷此操作,因為他們將擁有與您相同的權限。", - "@makeAdminDescription": {}, - "createGroupAndInviteUsers": "建立群組並邀請使用者", - "@createGroupAndInviteUsers": {}, - "groupCanBeFoundViaSearch": "可以透過搜尋找到群組", - "@groupCanBeFoundViaSearch": {}, - "pleaseEnterYourCurrentPassword": "請輸入您當前的密碼", - "@pleaseEnterYourCurrentPassword": {}, - "widgetCustom": "自訂", - "@widgetCustom": {}, - "createGroup": "建立群組", - "@createGroup": {}, - "enterSpace": "進入空間", - "@enterSpace": {}, - "shareLocation": "分享位置", - "@shareLocation": { - "type": "String", - "placeholders": {} - }, - "widgetVideo": "影片", - "@widgetVideo": {}, - "redactMessageDescription": "該訊息將對此對話中的所有參與者收回。這不能被反悔。", - "@redactMessageDescription": {}, - "removeFromBundle": "從此套組中移除", - "@removeFromBundle": {}, - "widgetName": "名稱", - "@widgetName": {}, - "jump": "跳轉", - "@jump": {}, - "commandHint_unignore": "取消無視已提供的 Matrix ID", - "@commandHint_unignore": {}, - "commandHint_markasgroup": "標示為群組", - "@commandHint_markasgroup": {}, - "commandHint_me": "描述自己", - "@commandHint_me": { - "type": "String", - "description": "Usage hint for the command /me" - }, - "commandHint_plain": "傳送未格式化的文字", - "@commandHint_plain": { - "type": "String", - "description": "Usage hint for the command /plain" - }, - "commandHint_react": "以反應的形式傳送回覆", - "@commandHint_react": { - "type": "String", - "description": "Usage hint for the command /react" - }, - "createNewSpace": "新建空間", - "@createNewSpace": { - "type": "String", - "placeholders": {} - }, - "allRooms": "所有群組聊天室", - "@allRooms": { - "type": "String", - "placeholders": {} - }, - "chatPermissions": "聊天室權限", - "@chatPermissions": {}, - "customEmojisAndStickersBody": "新增或分享可在任何聊天室中使用的自訂表情符號或貼圖。", - "@customEmojisAndStickersBody": {}, - "errorObtainingLocation": "取得位置錯誤:{error}", - "@errorObtainingLocation": { - "type": "String", - "placeholders": { - "error": { - "type": "String" - } - } - }, - "hideRedactedMessages": "隱藏被刪除的訊息", - "@hideRedactedMessages": {}, - "hideInvalidOrUnknownMessageFormats": "隱藏無效或未知的訊息格式", - "@hideInvalidOrUnknownMessageFormats": {}, - "dehydrateTorLong": "對 TOR 使用者,建議在關閉窗口前匯出會話。", - "@dehydrateTorLong": {}, - "hydrateTor": "TOR 使用者:匯入會話", - "@hydrateTor": {}, - "messagesStyle": "訊息樣式:", - "@messagesStyle": {}, - "shareInviteLink": "分享邀請網址", - "@shareInviteLink": {}, - "scanQrCode": "掃描 QR 碼", - "@scanQrCode": {}, - "openVideoCamera": "打開錄影", - "@openVideoCamera": { - "type": "String", - "placeholders": {} - }, - "oneClientLoggedOut": "您的一個客戶端已登出", - "@oneClientLoggedOut": {}, - "addAccount": "新增帳號", - "@addAccount": {}, - "editBundlesForAccount": "為此帳號編輯套組", - "@editBundlesForAccount": {}, - "openInMaps": "在地圖中打開", - "@openInMaps": { - "type": "String", - "placeholders": {} - }, - "serverRequiresEmail": "該伺服器需要驗證您的註冊電子郵件地址。", - "@serverRequiresEmail": {}, - "or": "或", - "@or": { - "type": "String", - "placeholders": {} - }, - "hideMemberChangesInPublicChatsBody": "若有人加入或離開公開聊天室,將不在聊天室時間軸顯示,以提升資訊可讀性。", - "@hideMemberChangesInPublicChatsBody": {}, - "overview": "概觀", - "@overview": {}, - "notifyMeFor": "通知我", - "@notifyMeFor": {}, - "passwordRecoverySettings": "恢復密碼設定", - "@passwordRecoverySettings": {}, - "redactedBy": "由 {username} 編輯", - "@redactedBy": { - "type": "String", - "placeholders": { - "username": { - "type": "String" - } - } - }, - "recoveryKey": "恢復金鑰", - "@recoveryKey": {}, - "spaceName": "空間名稱", - "@spaceName": { - "type": "String", - "placeholders": {} - }, - "synchronizingPleaseWait": "正在同步... 請稍候。", - "@synchronizingPleaseWait": { - "type": "String", - "placeholders": {} - }, - "messageInfo": "訊息資訊", - "@messageInfo": {}, - "removeFromSpace": "從空間中移除", - "@removeFromSpace": {}, - "addToSpaceDescription": "選擇一個空間將此聊天室加入。", - "@addToSpaceDescription": {}, - "pleaseEnterRecoveryKeyDescription": "要解鎖您的舊訊息,請輸入在之前的會話中生成的恢復密鑰。您的恢復密鑰不是您的密碼。", - "@pleaseEnterRecoveryKeyDescription": {}, - "videoWithSize": "影片({size})", - "@videoWithSize": { - "type": "String", - "placeholders": { - "size": { - "type": "String" - } - } - }, - "emojis": "表情符號", - "@emojis": {}, - "placeCall": "發起通話", - "@placeCall": {}, - "unsupportedAndroidVersion": "不支持的Android版本", - "@unsupportedAndroidVersion": {}, - "videoCallsBetaWarning": "請注意,視訊通話目前處於測試階段。它們可能不會按預期工作,或者在所有平台上都不工作。", - "@videoCallsBetaWarning": {}, - "widgetUrlError": "這不是一個有效的URL。", - "@widgetUrlError": {}, - "nextAccount": "下一個帳戶", - "@nextAccount": {}, - "previousAccount": "上一個帳戶", - "@previousAccount": {}, - "addWidget": "新增小工具", - "@addWidget": {}, - "errorAddingWidget": "新增小工具時發生錯誤。", - "@errorAddingWidget": {}, - "youJoinedTheChat": "您加入了聊天室", - "@youJoinedTheChat": {}, - "youBannedUser": "您封鎖了 {user}", - "@youBannedUser": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "youHaveWithdrawnTheInvitationFor": "您已收回對 {user} 的邀請", - "@youHaveWithdrawnTheInvitationFor": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "youInvitedBy": "📩 您被 {user} 邀請", - "@youInvitedBy": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "youUnbannedUser": "您解除封鎖了 {user}", - "@youUnbannedUser": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "youInvitedToBy": "📩 您通過網址被邀請至:\n{alias}", - "@youInvitedToBy": { - "placeholders": { - "alias": { - "type": "String" - } - } - }, - "callingPermissions": "通話權限", - "@callingPermissions": {}, - "callingAccount": "通話帳戶", - "@callingAccount": {}, - "appearOnTop": "顯示在最上層", - "@appearOnTop": {}, - "newGroup": "新群組", - "@newGroup": {}, - "newSpace": "新空間", - "@newSpace": {}, - "numChats": "{number} 個聊天室", - "@numChats": { - "type": "number", - "placeholders": { - "number": { - "type": "String" - } - } - }, - "hideUnimportantStateEvents": "隱藏不重要的狀態事件", - "@hideUnimportantStateEvents": {}, - "doNotShowAgain": "不再顯示", - "@doNotShowAgain": {}, - "encryptThisChat": "加密此聊天室", - "@encryptThisChat": {}, - "sorryThatsNotPossible": "抱歉......這是不可能的", - "@sorryThatsNotPossible": {}, - "profileNotFound": "在伺服器上找不到該使用者。可能是連接問題或該使用者不存在。", - "@profileNotFound": {}, - "invite": "邀請", - "@invite": {}, - "invitePrivateChat": "📨 邀請私人聊天室", - "@invitePrivateChat": {}, - "removeDevicesDescription": "您將從這個裝置登出,並將不再能夠接收消息。", - "@removeDevicesDescription": {}, - "unbanUserDescription": "如果該使用者嘗試,他們將能夠再次進入聊天室。", - "@unbanUserDescription": {}, - "kickUserDescription": "該使用者被踢出聊天室,但未被禁止。在公開聊天室中,該使用者可以隨時重新加入。", - "@kickUserDescription": {}, - "pushNotificationsNotAvailable": "推送通知不可用", - "@pushNotificationsNotAvailable": {}, - "learnMore": "了解更多", - "@learnMore": {}, - "nothingFound": "什麼都沒找到......", - "@nothingFound": {}, - "startConversation": "開始對話", - "@startConversation": {}, - "databaseMigrationBody": "請稍候。這可能需要一點時間。", - "@databaseMigrationBody": {}, - "pleaseChooseAStrongPassword": "請選擇一個強密碼", - "@pleaseChooseAStrongPassword": {}, - "passwordIsWrong": "您輸入的密碼錯誤", - "@passwordIsWrong": {}, - "publicChatAddresses": "公開聊天室地址", - "@publicChatAddresses": {}, - "userRole": "使用者角色", - "@userRole": {}, - "minimumPowerLevel": "{level} 是最低權限等級。", - "@minimumPowerLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "String" - } - } - }, - "leaveEmptyToClearStatus": "留空以清除您的狀態。", - "@leaveEmptyToClearStatus": {}, - "select": "選擇", - "@select": {}, - "files": "文件", - "@files": {}, - "forwardMessageTo": "將訊息轉發至 {roomName}?", - "@forwardMessageTo": { - "type": "String", - "placeholders": { - "roomName": { - "type": "String" - } - } - }, - "sendTypingNotificationsDescription": "聊天室中的其他參與者可以看到您正在輸入新訊息。", - "@sendTypingNotificationsDescription": {}, - "verifyOtherDeviceDescription": "當您驗證另一個裝置時,這些裝置可以交換密鑰,提升您的整體安全性。💪 當您開始驗證時,一個彈出視窗將在兩個裝置上的應用程式中出現。在那裡,您將看到一系列的表情符號或數字,您需要相互比較。在開始驗證之前最好有兩個裝置在手邊。🤳", - "@verifyOtherDeviceDescription": {}, - "acceptedKeyVerification": "{sender} 接受了密鑰驗證", - "@acceptedKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "completedKeyVerification": "{sender} 完成了密鑰驗證", - "@completedKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "isReadyForKeyVerification": "{sender} 已準備好進行密鑰驗證", - "@isReadyForKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "thereAreCountUsersBlocked": "目前有 {count} 名使用者被封鎖。", - "@thereAreCountUsersBlocked": { - "type": "String", - "count": {} - }, - "knockRestricted": "敲門受限", - "@knockRestricted": {}, - "appLockDescription": "未使用時以密碼鎖定應用程式", - "@appLockDescription": {}, - "globalChatId": "全球聊天室 ID", - "@globalChatId": {}, - "accessAndVisibility": "訪問權限和可見性", - "@accessAndVisibility": {}, - "accessAndVisibilityDescription": "誰被允許加入此聊天室以及如何發現聊天室。", - "@accessAndVisibilityDescription": {}, - "calls": "通話", - "@calls": {}, - "chatDescription": "聊天室描述", - "@chatDescription": {}, - "chatDescriptionHasBeenChanged": "聊天室描述已變更", - "@chatDescriptionHasBeenChanged": {}, - "tryAgain": "再試一次", - "@tryAgain": {}, - "pleaseEnterRecoveryKey": "請輸入您的恢復金鑰:", - "@pleaseEnterRecoveryKey": {}, - "directChat": "私訊", - "@directChat": {}, - "register": "註冊", - "@register": { - "type": "String", - "placeholders": {} - }, - "setAsCanonicalAlias": "設為主要別名", - "@setAsCanonicalAlias": { - "type": "String", - "placeholders": {} - }, - "setChatDescription": "設定聊天室描述", - "@setChatDescription": {}, - "groupName": "群組名稱", - "@groupName": {}, - "searchForUsers": "搜尋 @users...", - "@searchForUsers": {}, - "inviteGroupChat": "📨 邀請群組聊天室", - "@inviteGroupChat": {}, - "setTheme": "設定主題:", - "@setTheme": {}, - "knocking": "敲門", - "@knocking": {}, - "sessionLostBody": "您的會話已丟失。請將此錯誤報告給開發人員,網址為 {url}。錯誤訊息為:{error}", - "@sessionLostBody": { - "type": "String", - "placeholders": { - "url": { - "type": "String" - }, - "error": { - "type": "String" - } - } - }, - "swipeRightToLeftToReply": "向右滑至左以回覆", - "@swipeRightToLeftToReply": {}, - "hideRedactedMessagesBody": "如果有人收回一條訊息,該訊息將不再在聊天室中顯示。", - "@hideRedactedMessagesBody": {}, - "link": "網址", - "@link": {}, - "obtainingLocation": "正在取得位置…", - "@obtainingLocation": { - "type": "String", - "placeholders": {} - }, - "oopsPushError": "哎呀!設定推送通知時不幸發生錯誤。", - "@oopsPushError": { - "type": "String", - "placeholders": {} - }, - "removeYourAvatar": "移除您的頭像", - "@removeYourAvatar": { - "type": "String", - "placeholders": {} - }, - "singlesignon": "單一登入", - "@singlesignon": { - "type": "String", - "placeholders": {} - }, - "presenceStyle": "目前狀態:", - "@presenceStyle": { - "type": "String", - "placeholders": {} - }, - "presencesToggle": "顯示其他使用者的狀態訊息", - "@presencesToggle": { - "type": "String", - "placeholders": {} - }, - "spaceIsPublic": "空間是公開的", - "@spaceIsPublic": { - "type": "String", - "placeholders": {} - }, - "dismiss": "解散", - "@dismiss": {}, - "reactedWith": "{sender} 以 {reaction} 回應", - "@reactedWith": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - }, - "reaction": { - "type": "String" - } - } - }, - "confirmEventUnpin": "您確定要永久取消釘選該事件嗎?", - "@confirmEventUnpin": {}, - "switchToAccount": "切換到帳戶 {number}", - "@switchToAccount": { - "type": "number", - "placeholders": { - "number": { - "type": "String" - } - } - }, - "widgetEtherpad": "文字筆記", - "@widgetEtherpad": {}, - "noOneCanJoin": "沒有人可以加入", - "@noOneCanJoin": {}, - "userWouldLikeToChangeTheChat": "{user} 想要加入聊天室。", - "@userWouldLikeToChangeTheChat": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "noPublicLinkHasBeenCreatedYet": "尚未建立公開網址", - "@noPublicLinkHasBeenCreatedYet": {}, - "saveKeyManuallyDescription": "通過觸發系統分享對話框或剪貼板手動保存此密鑰。", - "@saveKeyManuallyDescription": {}, - "storeInAndroidKeystore": "存儲在 Android KeyStore", - "@storeInAndroidKeystore": {}, - "storeInAppleKeyChain": "存儲在 Apple KeyChain", - "@storeInAppleKeyChain": {}, - "foregroundServiceRunning": "當前景服務正在運行時會顯示此通知。", - "@foregroundServiceRunning": {}, - "screenSharingTitle": "螢幕分享", - "@screenSharingTitle": {}, - "wasDirectChatDisplayName": "空的聊天室(原名稱為 {oldDisplayName} )", - "@wasDirectChatDisplayName": { - "type": "String", - "placeholders": { - "oldDisplayName": { - "type": "String" - } - } - }, - "otherCallingPermissions": "麥克風、相機和其他 FluffyChat 權限", - "@otherCallingPermissions": {}, - "disableEncryptionWarning": "出於安全原因,您不能在之前已加密的聊天室中停用加密。", - "@disableEncryptionWarning": {}, - "deviceKeys": "裝置密鑰:", - "@deviceKeys": {}, - "fileIsTooBigForServer": "無法發送!該伺服器僅支援最大到 {max} 的附件。", - "@fileIsTooBigForServer": {}, - "fileHasBeenSavedAt": "文件已保存在 {path}", - "@fileHasBeenSavedAt": { - "type": "String", - "placeholders": { - "path": { - "type": "String" - } - } - }, - "jumpToLastReadMessage": "跳至最後讀取的訊息", - "@jumpToLastReadMessage": {}, - "openLinkInBrowser": "在瀏覽器中開啟連結", - "@openLinkInBrowser": {}, - "reportErrorDescription": "😭 哦不。出了些問題。如果您願意,可以將此錯誤報告給開發者。", - "@reportErrorDescription": {}, - "readUpToHere": "讀到這裡", - "@readUpToHere": {}, - "report": "報告", - "@report": {}, - "pleaseEnterANumber": "請輸入大於 0 的數字", - "@pleaseEnterANumber": {}, - "roomUpgradeDescription": "將使用新版本聊天室來重新建立聊天室。所有本聊天室的參與者都會收到通知,他們都需要換到新的聊天室裡。若您想知道有關新版本的更多資訊,請前往 https://spec.matrix.org/latest/rooms/", - "@roomUpgradeDescription": {}, - "wrongRecoveryKey": "抱歉......這似乎不是正確的恢復密鑰。", - "@wrongRecoveryKey": {}, - "passwordsDoNotMatch": "密碼不匹配", - "@passwordsDoNotMatch": {}, - "publicSpaces": "公共空間", - "@publicSpaces": {}, - "subspace": "子空間", - "@subspace": {}, - "initAppError": "初始化應用時發生錯誤", - "@initAppError": {}, - "canceledKeyVerification": "{sender} 取消了密鑰驗證", - "@canceledKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "startedKeyVerification": "{sender} 開始了密鑰驗證", - "@startedKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "transparent": "透明", - "@transparent": {}, - "incomingMessages": "收到的訊息", - "@incomingMessages": {}, - "databaseMigrationTitle": "資料庫已最佳化", - "@databaseMigrationTitle": {}, - "restoreSessionBody": "應用程式現在嘗試從備份中恢復您的會話。請將此錯誤報告給開發人員,網址為 {url}。錯誤訊息為:{error}", - "@restoreSessionBody": { - "type": "String", - "placeholders": { - "url": { - "type": "String" - }, - "error": { - "type": "String" - } - } - }, - "stickers": "貼圖", - "@stickers": {}, - "joinSpace": "加入空間", - "@joinSpace": {}, - "noMoreChatsFound": "沒有更多聊天室了...", - "@noMoreChatsFound": {}, - "commandHint_op": "設定給定使用者的權限等級(預設:50)", - "@commandHint_op": { - "type": "String", - "description": "Usage hint for the command /op" - }, - "customEmojisAndStickers": "自訂表情符號和貼圖", - "@customEmojisAndStickers": {}, - "locationPermissionDeniedNotice": "位置權限被拒絕。請授予它們以能夠分享您的位置。", - "@locationPermissionDeniedNotice": { - "type": "String", - "placeholders": {} - }, - "inviteContactToGroupQuestion": "您想邀請 {contact} 加入 「{groupName}」 聊天室嗎?", - "@inviteContactToGroupQuestion": {}, - "enableMultiAccounts": "(實驗性功能)在此裝置上啟用多個帳號", - "@enableMultiAccounts": {}, - "hideMemberChangesInPublicChats": "在公開聊天室中隱藏成員變動", - "@hideMemberChangesInPublicChats": {}, - "recoveryKeyLost": "遺失恢復金鑰?", - "@recoveryKeyLost": {}, - "sendAsText": "以文字傳送", - "@sendAsText": { - "type": "String" - }, - "sendSticker": "傳送貼圖", - "@sendSticker": { - "type": "String", - "placeholders": {} - }, - "unverified": "尚未驗證", - "@unverified": {}, - "time": "時間", - "@time": {}, - "chatCanBeDiscoveredViaSearchOnServer": "可以透過在 {server} 上的搜尋發現聊天室", - "@chatCanBeDiscoveredViaSearchOnServer": { - "type": "String", - "placeholders": { - "server": { - "type": "String" - } - } - }, - "commandHint_sendraw": "傳送原始 json", - "@commandHint_sendraw": {}, - "newPassword": "新密碼", - "@newPassword": {}, - "createNewAddress": "建立新地址", - "@createNewAddress": {}, - "searchIn": "在聊天室「{chat}」中搜尋......", - "@searchIn": { - "type": "String", - "placeholders": { - "chat": { - "type": "String" - } - } - }, - "searchMore": "搜尋更多......", - "@searchMore": {}, - "gallery": "畫廊", - "@gallery": {}, - "databaseBuildErrorBody": "無法建立 SQLite 資料庫。應用程式目前嘗試使用遺留資料庫。請將此錯誤報告給開發人員,網址為 {url}。錯誤訊息為:{error}", - "@databaseBuildErrorBody": { - "type": "String", - "placeholders": { - "url": { - "type": "String" - }, - "error": { - "type": "String" - } - } - }, - "sendReadReceiptsDescription": "聊天室中的其他參與者可以看到您已讀取一條訊息。", - "@sendReadReceiptsDescription": {}, - "formattedMessages": "格式化訊息", - "@formattedMessages": {}, - "restricted": "受限", - "@restricted": {}, - "goToSpace": "前往空間:{space}", - "@goToSpace": { - "type": "String", - "space": {} - }, - "markAsUnread": "標示為未讀", - "@markAsUnread": {}, - "noDatabaseEncryption": "此平台不支援資料庫加密", - "@noDatabaseEncryption": {}, - "messageType": "訊息類型", - "@messageType": {}, - "openGallery": "開啟畫廊", - "@openGallery": {}, - "markAsRead": "標示為已讀", - "@markAsRead": {}, - "reportUser": "舉報使用者", - "@reportUser": {}, - "unsupportedAndroidVersionLong": "此功能需要較新的 Android 版本。請檢查更新或 Lineage OS 支持。", - "@unsupportedAndroidVersionLong": {}, - "emailOrUsername": "電子郵件或使用者名", - "@emailOrUsername": {}, - "indexedDbErrorTitle": "私密模式問題", - "@indexedDbErrorTitle": {}, - "widgetJitsi": "Jitsi Meet", - "@widgetJitsi": {}, - "usersMustKnock": "使用者必須敲門", - "@usersMustKnock": {}, - "knock": "敲門", - "@knock": {}, - "storeInSecureStorageDescription": "將恢復密鑰存儲在此裝置的安全存儲中。", - "@storeInSecureStorageDescription": {}, - "appearOnTopDetails": "允許應用程式顯示在最上層(如果您已將 Fluffychat 設定為通話帳戶則不需要)", - "@appearOnTopDetails": {}, - "whyIsThisMessageEncrypted": "為什麼這條訊息無法讀取?", - "@whyIsThisMessageEncrypted": {}, - "noKeyForThisMessage": "如果訊息是在您登入此裝置之前傳送的,就可能會發生這種情況。\n\n也有可能是傳送者已經封鎖了您的裝置,或者網絡連接出了問題。\n\n如果您能在另一個會話中讀取該訊息,那麼您可以從中轉移訊息!前往設定 > 裝置,並確保您的裝置已相互驗證。當您下次打開房間且兩個會話都在前景時,密鑰將自動傳輸。\n\n不想在登出或切換裝置時丟失密鑰?請確保您已在設定中啟用了聊天室備份。", - "@noKeyForThisMessage": {}, - "newSpaceDescription": "空間允許您整合您的聊天室並建立私人或公開社群。", - "@newSpaceDescription": {}, - "pleaseTryAgainLaterOrChooseDifferentServer": "請稍後再試,或選擇不同的伺服器。", - "@pleaseTryAgainLaterOrChooseDifferentServer": {}, - "signInWith": "使用 {provider} 登入", - "@signInWith": { - "type": "String", - "placeholders": { - "provider": { - "type": "String" - } - } - }, - "invalidInput": "無效的輸入!", - "@invalidInput": {}, - "verifyOtherUser": "🔐 驗證其他使用者", - "@verifyOtherUser": {}, - "verifyOtherUserDescription": "如果您驗證了另一個使用者,您可以確定您真正與誰通信。💪\n\n當您開始驗證時,您和另一個使用者將在應用程式中看到一個彈出視窗。在那裡,您將看到一系列的表情符號或數字,您需要相互比較。\n\n最好的方式是見面或開始視訊通話。👭", - "@verifyOtherUserDescription": {}, - "requestedKeyVerification": "{sender} 請求了密鑰驗證", - "@requestedKeyVerification": { - "type": "String", - "placeholders": { - "sender": { - "type": "String" - } - } - }, - "commandHint_ignore": "無視已提供的 Matrix ID", - "@commandHint_ignore": {}, - "countChatsAndCountParticipants": "{chats} 個聊天室和 {participants} 位參與者", - "@countChatsAndCountParticipants": { - "type": "String", - "placeholders": { - "chats": { - "type": "int" - }, - "participants": { - "type": "int" - } - } - }, - "joinedChats": "已加入的聊天室", - "@joinedChats": {}, - "unread": "未讀", - "@unread": {}, - "space": "空間", - "@space": {}, - "spaces": "空間", - "@spaces": {}, - "start": "開始", - "@start": {}, - "openChat": "開啟聊天室", - "@openChat": {}, - "unreadChatsInApp": "{appname}:{unread} 未讀聊天室", - "@unreadChatsInApp": { - "type": "String", - "placeholders": { - "appname": { - "type": "String" - }, - "unread": { - "type": "String" - } - } - }, - "adminLevel": "{level} - 管理員", - "@adminLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "int" - } - } - }, - "userLevel": "{level} - 用戶", - "@userLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "int" - } - } - }, - "moderatorLevel": "{level} - 管理員", - "@moderatorLevel": { - "type": "String", - "placeholders": { - "level": { - "type": "int" - } - } - }, - "invitedBy": "📩 由 {user} 邀請", - "@invitedBy": { - "placeholders": { - "user": { - "type": "String" - } - } - }, - "doesNotSeemToBeAValidHomeserver": "似乎不是能匹配的歸屬伺服器。伺服器域名打錯了嗎?", - "@doesNotSeemToBeAValidHomeserver": {}, - "noticeChatBackupDeviceVerification": "注意:當您將所有裝置連線到聊天備份時,它們會自動驗證。", - "@noticeChatBackupDeviceVerification": {}, - "sendCanceled": "傳送取消", - "@sendCanceled": {}, - "changelog": "變更日誌", - "@changelog": {}, - "changeTheCanonicalRoomAlias": "變更公開聊天室的主要地址", - "@changeTheCanonicalRoomAlias": {}, - "sendImages": "傳送{count}張圖片", - "@sendImages": { - "type": "String", - "placeholders": { - "count": { - "type": "int" - } - } - }, - "loginWithMatrixId": "以Matrix-ID登入", - "@loginWithMatrixId": {}, - "inviteOtherUsers": "邀請其他用戶進入本聊天", - "@inviteOtherUsers": {}, - "sendRoomNotifications": "傳送一條 @room 群提醒", - "@sendRoomNotifications": {}, - "updateInstalled": "🎉已成功安裝{version}版本!", - "@updateInstalled": { - "type": "String", - "placeholders": { - "version": { - "type": "String" - } - } - }, - "oneOfYourDevicesIsNotVerified": "你的其中一個裝置尚未驗證", - "@oneOfYourDevicesIsNotVerified": {}, - "chatPermissionsDescription": "定義此聊天中某些操作需要哪個權限等級。 權限等級0、50和100通常代表使用者、版主和管理員,但任何分級都是可能的。", - "@chatPermissionsDescription": {}, - "changeGeneralChatSettings": "變更一般聊天設定", - "@changeGeneralChatSettings": {}, - "manageAccount": "帳號管理", - "@manageAccount": {}, - "changeTheChatPermissions": "變更聊天室權限", - "@changeTheChatPermissions": {}, - "changeTheVisibilityOfChatHistory": "變更過往聊天記錄可見度", - "@changeTheVisibilityOfChatHistory": {}, - "homeserverDescription": "您的所有資料都儲存在歸屬伺服器上,就像電子郵件提供商一樣。 您可以選擇要使用的歸屬伺服器,同時您仍然可以與每個人溝通。 請訪問https://matrix.org瞭解更多資訊。", - "@homeserverDescription": {}, - "sendingAttachment": "附件傳送中…", - "@sendingAttachment": {}, - "compressVideo": "影片壓縮中…", - "@compressVideo": {}, - "opacity": "不透明度:", - "@opacity": {}, - "aboutHomeserver": "關於{homeserver}", - "@aboutHomeserver": { - "type": "String", - "placeholders": { - "homeserver": { - "type": "String" - } - } - }, - "noChatsFoundHere": "還沒開始聊天嗎?點擊下方按鈕找個人聊聊吧⤵", - "@noChatsFoundHere": {}, - "changeTheDescriptionOfTheGroup": "變更聊天室說明", - "@changeTheDescriptionOfTheGroup": {}, - "discoverHomeservers": "探索歸屬伺服器", - "@discoverHomeservers": {}, - "whatIsAHomeserver": "什麼是歸屬伺服器?", - "@whatIsAHomeserver": {}, - "calculatingFileSize": "正在計算檔案大小…", - "@calculatingFileSize": {}, - "prepareSendingAttachment": "準備傳送附件…", - "@prepareSendingAttachment": {}, - "generatingVideoThumbnail": "生成影片縮圖中…", - "@generatingVideoThumbnail": {}, - "sendingAttachmentCountOfCount": "附件傳送中 {index}/{length}…", - "@sendingAttachmentCountOfCount": { - "type": "integer", - "placeholders": { - "index": { - "type": "int" - }, - "length": { - "type": "int" - } - } - }, - "serverLimitReached": "已達伺服器上限! 請稍等{seconds}秒…", - "@serverLimitReached": { - "type": "integer", - "placeholders": { - "seconds": { - "type": "int" - } - } - }, - "welcomeText": "嘿,嘿👋這是FluffyChat。 您可以登入任何與https://matrix.org相容的歸屬伺服器後和任何人聊天。 這是一個巨大的去中心化訊息網路!", - "@welcomeText": {}, - "setWallpaper": "設定背景樣式", - "@setWallpaper": {}, - "noContactInformationProvided": "伺服器沒有提供任何有效的聯絡資訊", - "@noContactInformationProvided": {}, - "contactServerAdmin": "聯繫伺服器管理員", - "@contactServerAdmin": {}, - "contactServerSecurity": "聯繫伺服器安管", - "@contactServerSecurity": {}, - "continueText": "繼續", - "@continueText": {}, - "blur": "模糊:", - "@blur": {}, - "synchronizingPleaseWaitCounter": " 同步中… ({percentage}%)", - "@synchronizingPleaseWaitCounter": { - "type": "String", - "placeholders": { - "percentage": { - "type": "String" - } - } - }, - "contentNotificationSettings": "內容通知設定", - "@contentNotificationSettings": {}, - "generalNotificationSettings": "常規通知設定", - "@generalNotificationSettings": {}, - "roomNotificationSettings": "聊天室通知設定", - "@roomNotificationSettings": {}, - "userSpecificNotificationSettings": "用戶特定通知設定", - "@userSpecificNotificationSettings": {}, - "otherNotificationSettings": "其他通知設定", - "@otherNotificationSettings": {}, - "notificationRuleContainsUserName": "包含用户名稱", - "@notificationRuleContainsUserName": {}, - "notificationRuleContainsUserNameDescription": "當訊息帶有用户名稱時通知用戶。", - "@notificationRuleContainsUserNameDescription": {}, - "notificationRuleMaster": "靜音所有通知", - "@notificationRuleMaster": {}, - "notificationRuleMasterDescription": "覆蓋所有其他規則並禁止所有通知。", - "@notificationRuleMasterDescription": {}, - "notificationRuleInviteForMe": "邀請我", - "@notificationRuleInviteForMe": {}, - "notificationRuleSuppressNoticesDescription": "隱藏來自bot等的自動化消息。", - "@notificationRuleSuppressNoticesDescription": {}, - "notificationRuleSuppressNotices": "隱藏自動化消息", - "@notificationRuleSuppressNotices": {}, - "notificationRuleMemberEvent": "成員事件", - "@notificationRuleMemberEvent": {}, - "notificationRuleMemberEventDescription": "隱藏成員事件的通知。", - "@notificationRuleMemberEventDescription": {}, - "notificationRuleIsUserMention": "用户提及", - "@notificationRuleIsUserMention": {}, - "notificationRuleInviteForMeDescription": "當用户被邀請到聊天室時,通知他們。", - "@notificationRuleInviteForMeDescription": {}, - "commandHint_roomupgrade": "升級此聊天室至指定版本", - "@commandHint_roomupgrade": {}, - "serverInformation": "伺服器資訊 :", - "@serverInformation": {}, - "name": "名稱", - "@name": {}, - "website": "網站", - "@website": {}, - "compress": "壓縮", - "@compress": {}, - "newChatRequest": "📩 新的聊天邀請", - "@newChatRequest": {}, - "enterNewChat": "進入新聊天室", - "@enterNewChat": {}, - "version": "版本", - "@version": {}, - "unableToJoinChat": "無法加入聊天室。對話可能以被其他方結束。", - "@unableToJoinChat": {}, - "appWantsToUseForLogin": "使用「{server} 」伺服器登入", - "@appWantsToUseForLogin": { - "type": "String", - "placeholders": { - "server": { + "@@last_modified": "2021-08-14 12:41:09.708353", + "about": "關於", + "@about": { + "type": "String", + "placeholders": {} + }, + "accept": "同意", + "@accept": { + "type": "String", + "placeholders": {} + }, + "acceptedTheInvitation": "👍 {username} 已接受邀請", + "@acceptedTheInvitation": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "account": "帳號", + "@account": { + "type": "String", + "placeholders": {} + }, + "activatedEndToEndEncryption": "🔐 {username} 已啟用點對點加密", + "@activatedEndToEndEncryption": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "addEmail": "新增電子郵件", + "@addEmail": { + "type": "String", + "placeholders": {} + }, + "admin": "管理員", + "@admin": { + "type": "String", + "placeholders": {} + }, + "alias": "別稱", + "@alias": { + "type": "String", + "placeholders": {} + }, + "all": "全部", + "@all": { + "type": "String", + "placeholders": {} + }, + "answeredTheCall": "已開始與 {senderName} 通話", + "@answeredTheCall": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "anyoneCanJoin": "任何人可以加入", + "@anyoneCanJoin": { + "type": "String", + "placeholders": {} + }, + "appLock": "密碼鎖定", + "@appLock": { + "type": "String", + "placeholders": {} + }, + "archive": "封存", + "@archive": { + "type": "String", + "placeholders": {} + }, + "areGuestsAllowedToJoin": "是否允許訪客加入", + "@areGuestsAllowedToJoin": { + "type": "String", + "placeholders": {} + }, + "areYouSure": "您確定嗎?", + "@areYouSure": { + "type": "String", + "placeholders": {} + }, + "areYouSureYouWantToLogout": "您確定要登出嗎?", + "@areYouSureYouWantToLogout": { + "type": "String", + "placeholders": {} + }, + "askSSSSSign": "請輸入您安全儲存的密碼短語或恢復金鑰,以向對方簽名。", + "@askSSSSSign": { + "type": "String", + "placeholders": {} + }, + "askVerificationRequest": "是否接受來自 {username} 的驗證申請?", + "@askVerificationRequest": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "badServerLoginTypesException": "目前伺服器支援的登入類型:\n{serverVersions}\n但本應用程式僅支援:\n{supportedVersions}", + "@badServerLoginTypesException": { + "type": "String", + "placeholders": { + "serverVersions": { + "type": "String" + }, + "supportedVersions": { + "type": "String" + } + } + }, + "badServerVersionsException": "目前伺服器支援的協議版本:\n{serverVersions}\n但本應用程式僅支援 {supportedVersions}", + "@badServerVersionsException": { + "type": "String", + "placeholders": { + "serverVersions": { + "type": "String" + }, + "supportedVersions": { + "type": "String" + } + } + }, + "banFromChat": "已從聊天室中封鎖", + "@banFromChat": { + "type": "String", + "placeholders": {} + }, + "banned": "已被封鎖", + "@banned": { + "type": "String", + "placeholders": {} + }, + "bannedUser": "{username} 封鎖了 {targetName}", + "@bannedUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "blockDevice": "封鎖裝置", + "@blockDevice": { + "type": "String", + "placeholders": {} + }, + "blocked": "已封鎖", + "@blocked": { + "type": "String", + "placeholders": {} + }, + "botMessages": "機器人訊息", + "@botMessages": { + "type": "String", + "placeholders": {} + }, + "cancel": "取消", + "@cancel": { + "type": "String", + "placeholders": {} + }, + "changeDeviceName": "變更裝置名稱", + "@changeDeviceName": { + "type": "String", + "placeholders": {} + }, + "changedTheChatAvatar": "{username} 變更了對話頭貼", + "@changedTheChatAvatar": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheChatDescriptionTo": "{username} 變更了聊天室介紹為:「{description}」", + "@changedTheChatDescriptionTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "description": { + "type": "String" + } + } + }, + "changedTheChatNameTo": "{username} 把聊天室名稱變更為:「{chatname}」", + "@changedTheChatNameTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "chatname": { + "type": "String" + } + } + }, + "changedTheChatPermissions": "{username} 變更了對話權限", + "@changedTheChatPermissions": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheDisplaynameTo": "{username} 變更了顯示名稱為:「{displayname}」", + "@changedTheDisplaynameTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "displayname": { + "type": "String" + } + } + }, + "changedTheGuestAccessRules": "{username} 變更了訪客訪問規則", + "@changedTheGuestAccessRules": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheGuestAccessRulesTo": "{username} 變更了訪客訪問規則為:{rules}", + "@changedTheGuestAccessRulesTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "rules": { + "type": "String" + } + } + }, + "changedTheHistoryVisibility": "{username} 變更了歷史記錄觀察狀態", + "@changedTheHistoryVisibility": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheHistoryVisibilityTo": "{username} 變更了歷史紀錄觀察狀態到:{rules}", + "@changedTheHistoryVisibilityTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "rules": { + "type": "String" + } + } + }, + "changedTheJoinRules": "{username} 變更了加入的規則", + "@changedTheJoinRules": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheJoinRulesTo": "{username} 變更了加入的規則為:{joinRules}", + "@changedTheJoinRulesTo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "joinRules": { + "type": "String" + } + } + }, + "changedTheProfileAvatar": "{username} 變更了頭貼", + "@changedTheProfileAvatar": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheRoomAliases": "{username} 變更了聊天室名", + "@changedTheRoomAliases": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changedTheRoomInvitationLink": "{username} 變更了邀請連結", + "@changedTheRoomInvitationLink": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "changePassword": "變更密碼", + "@changePassword": { + "type": "String", + "placeholders": {} + }, + "changeTheHomeserver": "變更主機位址", + "@changeTheHomeserver": { + "type": "String", + "placeholders": {} + }, + "changeTheme": "變更主題", + "@changeTheme": { + "type": "String", + "placeholders": {} + }, + "changeTheNameOfTheGroup": "變更了群組名稱", + "@changeTheNameOfTheGroup": { + "type": "String", + "placeholders": {} + }, + "channelCorruptedDecryptError": "加密已被破壞", + "@channelCorruptedDecryptError": { + "type": "String", + "placeholders": {} + }, + "chat": "聊天室", + "@chat": { + "type": "String", + "placeholders": {} + }, + "chatBackup": "備份聊天室", + "@chatBackup": { + "type": "String", + "placeholders": {} + }, + "chatBackupDescription": "您的過往聊天室記錄已被恢復金鑰加密。請您確保不會弄丟它。", + "@chatBackupDescription": { + "type": "String", + "placeholders": {} + }, + "chatDetails": "對話詳細", + "@chatDetails": { + "type": "String", + "placeholders": {} + }, + "chooseAStrongPassword": "輸入一個較強的密碼", + "@chooseAStrongPassword": { + "type": "String", + "placeholders": {} + }, + "close": "關閉", + "@close": { + "type": "String", + "placeholders": {} + }, + "compareEmojiMatch": "請對比這些表情", + "@compareEmojiMatch": { + "type": "String", + "placeholders": {} + }, + "compareNumbersMatch": "請對比這些數字", + "@compareNumbersMatch": { + "type": "String", + "placeholders": {} + }, + "configureChat": "設定聊天室", + "@configureChat": { + "type": "String", + "placeholders": {} + }, + "confirm": "確認", + "@confirm": { + "type": "String", + "placeholders": {} + }, + "connect": "連接", + "@connect": { + "type": "String", + "placeholders": {} + }, + "contactHasBeenInvitedToTheGroup": "聯絡人已被邀請至群組", + "@contactHasBeenInvitedToTheGroup": { + "type": "String", + "placeholders": {} + }, + "containsDisplayName": "包含顯示名稱", + "@containsDisplayName": { + "type": "String", + "placeholders": {} + }, + "containsUserName": "包含使用者名稱", + "@containsUserName": { + "type": "String", + "placeholders": {} + }, + "contentHasBeenReported": "此內容已被回報給伺服器管理員們", + "@contentHasBeenReported": { + "type": "String", + "placeholders": {} + }, + "copiedToClipboard": "已複製到剪貼簿", + "@copiedToClipboard": { + "type": "String", + "placeholders": {} + }, + "copy": "複製", + "@copy": { + "type": "String", + "placeholders": {} + }, + "copyToClipboard": "複製到剪貼簿", + "@copyToClipboard": { + "type": "String", + "placeholders": {} + }, + "couldNotDecryptMessage": "不能解密訊息:{error}", + "@couldNotDecryptMessage": { + "type": "String", + "placeholders": { + "error": { + "type": "String" + } + } + }, + "countParticipants": "{count} 個參與者", + "@countParticipants": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "create": "建立", + "@create": { + "type": "String", + "placeholders": {} + }, + "createdTheChat": "💬 {username} 建立了聊天室", + "@createdTheChat": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "currentlyActive": "目前活躍", + "@currentlyActive": { + "type": "String", + "placeholders": {} + }, + "darkTheme": "夜間模式", + "@darkTheme": { + "type": "String", + "placeholders": {} + }, + "dateAndTimeOfDay": "{date} , {timeOfDay}", + "@dateAndTimeOfDay": { + "type": "String", + "placeholders": { + "date": { + "type": "String" + }, + "timeOfDay": { + "type": "String" + } + } + }, + "dateWithoutYear": "{month} - {day}", + "@dateWithoutYear": { + "type": "String", + "placeholders": { + "month": { + "type": "String" + }, + "day": { + "type": "String" + } + } + }, + "dateWithYear": "{year} - {month} - {day}", + "@dateWithYear": { + "type": "String", + "placeholders": { + "year": { + "type": "String" + }, + "month": { + "type": "String" + }, + "day": { + "type": "String" + } + } + }, + "deactivateAccountWarning": "這將停用您的帳號。這個決定是不能挽回的!您確定嗎?", + "@deactivateAccountWarning": { + "type": "String", + "placeholders": {} + }, + "defaultPermissionLevel": "預設權限等級", + "@defaultPermissionLevel": { + "type": "String", + "placeholders": {} + }, + "delete": "刪除", + "@delete": { + "type": "String", + "placeholders": {} + }, + "deleteAccount": "刪除帳號", + "@deleteAccount": { + "type": "String", + "placeholders": {} + }, + "deleteMessage": "刪除訊息", + "@deleteMessage": { + "type": "String", + "placeholders": {} + }, + "device": "裝置", + "@device": { + "type": "String", + "placeholders": {} + }, + "deviceId": "裝置ID", + "@deviceId": { + "type": "String", + "placeholders": {} + }, + "devices": "裝置", + "@devices": { + "type": "String", + "placeholders": {} + }, + "directChats": "直接傳訊", + "@directChats": { + "type": "String", + "placeholders": {} + }, + "displaynameHasBeenChanged": "顯示名稱已被變更", + "@displaynameHasBeenChanged": { + "type": "String", + "placeholders": {} + }, + "downloadFile": "下載文件", + "@downloadFile": { + "type": "String", + "placeholders": {} + }, + "edit": "編輯", + "@edit": { + "type": "String", + "placeholders": {} + }, + "editBlockedServers": "編輯被封鎖的伺服器", + "@editBlockedServers": { + "type": "String", + "placeholders": {} + }, + "editDisplayname": "編輯顯示名稱", + "@editDisplayname": { + "type": "String", + "placeholders": {} + }, + "editRoomAvatar": "編輯聊天室頭貼", + "@editRoomAvatar": { + "type": "String", + "placeholders": {} + }, + "emoteExists": "表情已存在!", + "@emoteExists": { + "type": "String", + "placeholders": {} + }, + "emoteInvalid": "無效的表情快捷鍵!", + "@emoteInvalid": { + "type": "String", + "placeholders": {} + }, + "emotePacks": "聊天室的表情符號", + "@emotePacks": { + "type": "String", + "placeholders": {} + }, + "emoteSettings": "表情設定", + "@emoteSettings": { + "type": "String", + "placeholders": {} + }, + "emoteShortcode": "表情快捷鍵", + "@emoteShortcode": { + "type": "String", + "placeholders": {} + }, + "emoteWarnNeedToPick": "您需要選取一個表情快捷鍵和一張圖片!", + "@emoteWarnNeedToPick": { + "type": "String", + "placeholders": {} + }, + "emptyChat": "空的聊天室", + "@emptyChat": { + "type": "String", + "placeholders": {} + }, + "enableEmotesGlobally": "在全域啟用表情符號", + "@enableEmotesGlobally": { + "type": "String", + "placeholders": {} + }, + "enableEncryption": "啟用加密", + "@enableEncryption": { + "type": "String", + "placeholders": {} + }, + "enableEncryptionWarning": "您將不能再停用加密,確定嗎?", + "@enableEncryptionWarning": { + "type": "String", + "placeholders": {} + }, + "encrypted": "已加密的", + "@encrypted": { + "type": "String", + "placeholders": {} + }, + "encryption": "加密", + "@encryption": { + "type": "String", + "placeholders": {} + }, + "encryptionNotEnabled": "加密未啟用", + "@encryptionNotEnabled": { + "type": "String", + "placeholders": {} + }, + "endedTheCall": "{senderName} 結束了通話", + "@endedTheCall": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "enterAnEmailAddress": "輸入一個電子郵件位址", + "@enterAnEmailAddress": { + "type": "String", + "placeholders": {} + }, + "enterYourHomeserver": "輸入伺服器位址", + "@enterYourHomeserver": { + "type": "String", + "placeholders": {} + }, + "everythingReady": "一切就緒!", + "@everythingReady": { + "type": "String", + "placeholders": {} + }, + "extremeOffensive": "極端令人反感", + "@extremeOffensive": { + "type": "String", + "placeholders": {} + }, + "fileName": "檔案名稱", + "@fileName": { + "type": "String", + "placeholders": {} + }, + "fluffychat": "FluffyChat", + "@fluffychat": { + "type": "String", + "placeholders": {} + }, + "fontSize": "字體大小", + "@fontSize": { + "type": "String", + "placeholders": {} + }, + "forward": "轉發", + "@forward": { + "type": "String", + "placeholders": {} + }, + "fromJoining": "自加入起", + "@fromJoining": { + "type": "String", + "placeholders": {} + }, + "fromTheInvitation": "自邀請起", + "@fromTheInvitation": { + "type": "String", + "placeholders": {} + }, + "group": "群組", + "@group": { + "type": "String", + "placeholders": {} + }, + "groupIsPublic": "群組是公開的", + "@groupIsPublic": { + "type": "String", + "placeholders": {} + }, + "groups": "群組", + "@groups": { + "type": "String", + "placeholders": {} + }, + "groupWith": "名稱為 {displayname} 的群組", + "@groupWith": { + "type": "String", + "placeholders": { + "displayname": { + "type": "String" + } + } + }, + "guestsAreForbidden": "訪客已被禁止", + "@guestsAreForbidden": { + "type": "String", + "placeholders": {} + }, + "guestsCanJoin": "訪客可以加入", + "@guestsCanJoin": { + "type": "String", + "placeholders": {} + }, + "hasWithdrawnTheInvitationFor": "{username} 收回了對 {targetName} 的邀請", + "@hasWithdrawnTheInvitationFor": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "help": "幫助", + "@help": { + "type": "String", + "placeholders": {} + }, + "hideRedactedEvents": "隱藏編輯過的事件", + "@hideRedactedEvents": { + "type": "String", + "placeholders": {} + }, + "hideUnknownEvents": "隱藏未知事件", + "@hideUnknownEvents": { + "type": "String", + "placeholders": {} + }, + "howOffensiveIsThisContent": "這個內容有多令人反感?", + "@howOffensiveIsThisContent": { + "type": "String", + "placeholders": {} + }, + "id": "ID", + "@id": { + "type": "String", + "placeholders": {} + }, + "identity": "身份", + "@identity": { + "type": "String", + "placeholders": {} + }, + "ignore": "無視", + "@ignore": { + "type": "String", + "placeholders": {} + }, + "ignoredUsers": "已無視的使用者", + "@ignoredUsers": { + "type": "String", + "placeholders": {} + }, + "iHaveClickedOnLink": "我已經點擊了網址", + "@iHaveClickedOnLink": { + "type": "String", + "placeholders": {} + }, + "incorrectPassphraseOrKey": "錯誤的密碼短語或恢復金鑰", + "@incorrectPassphraseOrKey": { + "type": "String", + "placeholders": {} + }, + "inoffensive": "不令人反感", + "@inoffensive": { + "type": "String", + "placeholders": {} + }, + "inviteContact": "邀請聯絡人", + "@inviteContact": { + "type": "String", + "placeholders": {} + }, + "inviteContactToGroup": "邀請聯絡人到 {groupName}", + "@inviteContactToGroup": { + "type": "String", + "placeholders": { + "groupName": { + "type": "String" + } + } + }, + "invited": "已邀請", + "@invited": { + "type": "String", + "placeholders": {} + }, + "invitedUser": "📩 {username} 邀請了 {targetName}", + "@invitedUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "invitedUsersOnly": "只有被邀請的使用者", + "@invitedUsersOnly": { + "type": "String", + "placeholders": {} + }, + "inviteForMe": "來自我的邀請", + "@inviteForMe": { + "type": "String", + "placeholders": {} + }, + "inviteText": "{username} 邀請您使用 FluffyChat\n1. 安裝 FluffyChat:https://fluffychat.im\n2. 登入或註冊\n3. 打開該邀請網址:\n{link}", + "@inviteText": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "link": { + "type": "String" + } + } + }, + "isTyping": "正在輸入...…", + "@isTyping": { + "type": "String", + "placeholders": {} + }, + "joinedTheChat": "👋 {username} 加入了聊天室", + "@joinedTheChat": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "joinRoom": "加入聊天室", + "@joinRoom": { + "type": "String", + "placeholders": {} + }, + "kicked": "👞 {username} 踢了 {targetName}", + "@kicked": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "kickedAndBanned": "🙅 {username} 踢了 {targetName} 並將其封鎖", + "@kickedAndBanned": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "kickFromChat": "從聊天室踢出", + "@kickFromChat": { + "type": "String", + "placeholders": {} + }, + "lastActiveAgo": "最後活動時間:{localizedTimeShort}", + "@lastActiveAgo": { + "type": "String", + "placeholders": { + "localizedTimeShort": { + "type": "String" + } + } + }, + "leave": "離開", + "@leave": { + "type": "String", + "placeholders": {} + }, + "leftTheChat": "離開了聊天室", + "@leftTheChat": { + "type": "String", + "placeholders": {} + }, + "license": "授權", + "@license": { + "type": "String", + "placeholders": {} + }, + "lightTheme": "日間模式", + "@lightTheme": { + "type": "String", + "placeholders": {} + }, + "loadCountMoreParticipants": "載入 {count} 個更多的參與者", + "@loadCountMoreParticipants": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "loadingPleaseWait": "載入中...... 請稍候。", + "@loadingPleaseWait": { + "type": "String", + "placeholders": {} + }, + "loadMore": "載入更多...…", + "@loadMore": { + "type": "String", + "placeholders": {} + }, + "login": "登入", + "@login": { + "type": "String", + "placeholders": {} + }, + "logInTo": "登入 {homeserver}", + "@logInTo": { + "type": "String", + "placeholders": { + "homeserver": { + "type": "String" + } + } + }, + "logout": "登出", + "@logout": { + "type": "String", + "placeholders": {} + }, + "memberChanges": "變更成員", + "@memberChanges": { + "type": "String", + "placeholders": {} + }, + "mention": "提及", + "@mention": { + "type": "String", + "placeholders": {} + }, + "messages": "訊息", + "@messages": { + "type": "String", + "placeholders": {} + }, + "moderator": "版主", + "@moderator": { + "type": "String", + "placeholders": {} + }, + "muteChat": "將該聊天室靜音", + "@muteChat": { + "type": "String", + "placeholders": {} + }, + "needPantalaimonWarning": "請注意您需要 Pantalaimon 才能使用點對點加密功能。", + "@needPantalaimonWarning": { + "type": "String", + "placeholders": {} + }, + "newChat": "新聊天", + "@newChat": { + "type": "String", + "placeholders": {} + }, + "newMessageInFluffyChat": "💬 來自 FluffyChat 的新訊息", + "@newMessageInFluffyChat": { + "type": "String", + "placeholders": {} + }, + "newVerificationRequest": "新的驗證請求!", + "@newVerificationRequest": { + "type": "String", + "placeholders": {} + }, + "next": "下一個", + "@next": { + "type": "String", + "placeholders": {} + }, + "no": "否", + "@no": { + "type": "String", + "placeholders": {} + }, + "noConnectionToTheServer": "無法連接到伺服器", + "@noConnectionToTheServer": { + "type": "String", + "placeholders": {} + }, + "noEmotesFound": "表情符號不存在。😕", + "@noEmotesFound": { + "type": "String", + "placeholders": {} + }, + "noEncryptionForPublicRooms": "您只能在這個聊天室不再被允許公開訪問後,才能啟用加密。", + "@noEncryptionForPublicRooms": { + "type": "String", + "placeholders": {} + }, + "noGoogleServicesWarning": "未能在你的裝置找到 Firebase Cloud Messaging(FCM). 如果想要收到通知消息的推送,我們建議安裝 ntfy。在有 ntfy 或其他 Unified Push 應用,便能在資料安全的情況下收到通知的推送。你可以在 Play store 或 F-Droid 下載並安裝 ntfy。", + "@noGoogleServicesWarning": { + "type": "String", + "placeholders": {} + }, + "none": "無", + "@none": { + "type": "String", + "placeholders": {} + }, + "noPasswordRecoveryDescription": "您尚未新增恢復密碼的方法。", + "@noPasswordRecoveryDescription": { + "type": "String", + "placeholders": {} + }, + "noPermission": "沒有權限", + "@noPermission": { + "type": "String", + "placeholders": {} + }, + "noRoomsFound": "找不到聊天室...…", + "@noRoomsFound": { + "type": "String", + "placeholders": {} + }, + "notifications": "通知", + "@notifications": { + "type": "String", + "placeholders": {} + }, + "notificationsEnabledForThisAccount": "已為此帳號啟用通知", + "@notificationsEnabledForThisAccount": { + "type": "String", + "placeholders": {} + }, + "numUsersTyping": "{count} 個人正在輸入...…", + "@numUsersTyping": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "offensive": "令人反感", + "@offensive": { + "type": "String", + "placeholders": {} + }, + "offline": "離線", + "@offline": { + "type": "String", + "placeholders": {} + }, + "ok": "OK", + "@ok": { + "type": "String", + "placeholders": {} + }, + "online": "線上", + "@online": { + "type": "String", + "placeholders": {} + }, + "onlineKeyBackupEnabled": "線上金鑰備份已啟用", + "@onlineKeyBackupEnabled": { + "type": "String", + "placeholders": {} + }, + "oopsSomethingWentWrong": "哎呀!出了一點差錯...…", + "@oopsSomethingWentWrong": { + "type": "String", + "placeholders": {} + }, + "openAppToReadMessages": "打開應用程式以讀取訊息", + "@openAppToReadMessages": { + "type": "String", + "placeholders": {} + }, + "openCamera": "開啟相機", + "@openCamera": { + "type": "String", + "placeholders": {} + }, + "participant": "參與者", + "@participant": { + "type": "String", + "placeholders": {} + }, + "passphraseOrKey": "密碼短語或恢復金鑰", + "@passphraseOrKey": { + "type": "String", + "placeholders": {} + }, + "password": "密碼", + "@password": { + "type": "String", + "placeholders": {} + }, + "passwordForgotten": "忘記密碼", + "@passwordForgotten": { + "type": "String", + "placeholders": {} + }, + "passwordHasBeenChanged": "密碼已被變更", + "@passwordHasBeenChanged": { + "type": "String", + "placeholders": {} + }, + "passwordRecovery": "恢復密碼", + "@passwordRecovery": { + "type": "String", + "placeholders": {} + }, + "pickImage": "選擇圖片", + "@pickImage": { + "type": "String", + "placeholders": {} + }, + "pin": "釘選", + "@pin": { + "type": "String", + "placeholders": {} + }, + "play": "播放 {fileName}", + "@play": { + "type": "String", + "placeholders": { + "fileName": { + "type": "String" + } + } + }, + "pleaseChooseAPasscode": "請選擇一個密碼", + "@pleaseChooseAPasscode": { + "type": "String", + "placeholders": {} + }, + "pleaseClickOnLink": "請點擊電子郵件中的網址,然後繼續。", + "@pleaseClickOnLink": { + "type": "String", + "placeholders": {} + }, + "pleaseEnter4Digits": "請輸入4位數字,或留空以停用密碼鎖定。", + "@pleaseEnter4Digits": { + "type": "String", + "placeholders": {} + }, + "pleaseEnterYourPassword": "請輸入您的密碼", + "@pleaseEnterYourPassword": { + "type": "String", + "placeholders": {} + }, + "pleaseEnterYourUsername": "請輸入您的使用者名稱", + "@pleaseEnterYourUsername": { + "type": "String", + "placeholders": {} + }, + "pleaseFollowInstructionsOnWeb": "請按照網站上的說明進行操作,然後點擊下一步。", + "@pleaseFollowInstructionsOnWeb": { + "type": "String", + "placeholders": {} + }, + "privacy": "隱私", + "@privacy": { + "type": "String", + "placeholders": {} + }, + "publicRooms": "公開的聊天室", + "@publicRooms": { + "type": "String", + "placeholders": {} + }, + "pushRules": "推播規則", + "@pushRules": { + "type": "String", + "placeholders": {} + }, + "reason": "原因", + "@reason": { + "type": "String", + "placeholders": {} + }, + "recording": "錄音中", + "@recording": { + "type": "String", + "placeholders": {} + }, + "redactedAnEvent": "{username} 編輯了一個事件", + "@redactedAnEvent": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "redactMessage": "重新編輯訊息", + "@redactMessage": { + "type": "String", + "placeholders": {} + }, + "reject": "拒絕", + "@reject": { + "type": "String", + "placeholders": {} + }, + "rejectedTheInvitation": "{username} 拒絕了邀請", + "@rejectedTheInvitation": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "rejoin": "重新加入", + "@rejoin": { + "type": "String", + "placeholders": {} + }, + "remove": "移除", + "@remove": { + "type": "String", + "placeholders": {} + }, + "removeAllOtherDevices": "移除所有其他裝置", + "@removeAllOtherDevices": { + "type": "String", + "placeholders": {} + }, + "removedBy": "被 {username} 移除", + "@removedBy": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "removeDevice": "移除裝置", + "@removeDevice": { + "type": "String", + "placeholders": {} + }, + "unbanFromChat": "解封聊天室", + "@unbanFromChat": { + "type": "String", + "placeholders": {} + }, + "replaceRoomWithNewerVersion": "用較新的版本取代聊天室", + "@replaceRoomWithNewerVersion": { + "type": "String", + "placeholders": {} + }, + "reply": "回覆", + "@reply": { + "type": "String", + "placeholders": {} + }, + "reportMessage": "檢舉訊息", + "@reportMessage": { + "type": "String", + "placeholders": {} + }, + "requestPermission": "請求權限", + "@requestPermission": { + "type": "String", + "placeholders": {} + }, + "roomHasBeenUpgraded": "聊天室已更新", + "@roomHasBeenUpgraded": { + "type": "String", + "placeholders": {} + }, + "search": "搜尋", + "@search": { + "type": "String", + "placeholders": {} + }, + "security": "安全", + "@security": { + "type": "String", + "placeholders": {} + }, + "seenByUser": "{username} 已讀", + "@seenByUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "send": "傳送", + "@send": { + "type": "String", + "placeholders": {} + }, + "sendAMessage": "傳送訊息", + "@sendAMessage": { + "type": "String", + "placeholders": {} + }, + "sendAudio": "傳送音訊", + "@sendAudio": { + "type": "String", + "placeholders": {} + }, + "sendFile": "傳送文件", + "@sendFile": { + "type": "String", + "placeholders": {} + }, + "sendImage": "傳送圖片", + "@sendImage": { + "type": "String", + "placeholders": {} + }, + "sendMessages": "傳送訊息", + "@sendMessages": { + "type": "String", + "placeholders": {} + }, + "sendOriginal": "傳送原始內容", + "@sendOriginal": { + "type": "String", + "placeholders": {} + }, + "sendVideo": "傳送影片", + "@sendVideo": { + "type": "String", + "placeholders": {} + }, + "sentAFile": "{username} 傳送了一個文件", + "@sentAFile": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentAnAudio": "🎤{username} 傳送了一個音訊", + "@sentAnAudio": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentAPicture": "🖼️{username} 傳送了一張圖片", + "@sentAPicture": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentASticker": "😊{username} 傳送了貼圖", + "@sentASticker": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentAVideo": "🎥{username} 傳送了影片", + "@sentAVideo": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "sentCallInformations": "{senderName} 傳送了通話資訊", + "@sentCallInformations": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "setCustomEmotes": "自訂表情符號", + "@setCustomEmotes": { + "type": "String", + "placeholders": {} + }, + "setInvitationLink": "設定邀請連結", + "@setInvitationLink": { + "type": "String", + "placeholders": {} + }, + "setPermissionsLevel": "設定權限等級", + "@setPermissionsLevel": { + "type": "String", + "placeholders": {} + }, + "setStatus": "設定狀態", + "@setStatus": { + "type": "String", + "placeholders": {} + }, + "settings": "設定", + "@settings": { + "type": "String", + "placeholders": {} + }, + "share": "分享", + "@share": { + "type": "String", + "placeholders": {} + }, + "sharedTheLocation": "{username} 分享了位置", + "@sharedTheLocation": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "showPassword": "顯示密碼", + "@showPassword": { + "type": "String", + "placeholders": {} + }, + "skip": "跳過", + "@skip": { + "type": "String", + "placeholders": {} + }, + "sourceCode": "原始碼", + "@sourceCode": { + "type": "String", + "placeholders": {} + }, + "startedACall": "{senderName} 開始了通話", + "@startedACall": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "status": "狀態", + "@status": { + "type": "String", + "placeholders": {} + }, + "statusExampleMessage": "今天過得如何?", + "@statusExampleMessage": { + "type": "String", + "placeholders": {} + }, + "submit": "送出", + "@submit": { + "type": "String", + "placeholders": {} + }, + "systemTheme": "自動", + "@systemTheme": { + "type": "String", + "placeholders": {} + }, + "theyDontMatch": "它們不相符", + "@theyDontMatch": { + "type": "String", + "placeholders": {} + }, + "theyMatch": "它們相符", + "@theyMatch": { + "type": "String", + "placeholders": {} + }, + "title": "FluffyChat", + "@title": { + "description": "Title for the application", + "type": "String", + "placeholders": {} + }, + "toggleFavorite": "切換收藏夾", + "@toggleFavorite": { + "type": "String", + "placeholders": {} + }, + "toggleMuted": "切換靜音", + "@toggleMuted": { + "type": "String", + "placeholders": {} + }, + "toggleUnread": "標示為已讀/未讀", + "@toggleUnread": { + "type": "String", + "placeholders": {} + }, + "tooManyRequestsWarning": "太多請求了。請稍候再試!", + "@tooManyRequestsWarning": { + "type": "String", + "placeholders": {} + }, + "transferFromAnotherDevice": "從其他裝置傳輸", + "@transferFromAnotherDevice": { + "type": "String", + "placeholders": {} + }, + "tryToSendAgain": "再次嘗試傳送", + "@tryToSendAgain": { + "type": "String", + "placeholders": {} + }, + "unavailable": "無法取得", + "@unavailable": { + "type": "String", + "placeholders": {} + }, + "unbannedUser": "{username} 解除封鎖了 {targetName}", + "@unbannedUser": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "targetName": { + "type": "String" + } + } + }, + "unblockDevice": "解除鎖定裝置", + "@unblockDevice": { + "type": "String", + "placeholders": {} + }, + "unknownDevice": "未知裝置", + "@unknownDevice": { + "type": "String", + "placeholders": {} + }, + "unknownEncryptionAlgorithm": "未知的加密演算法", + "@unknownEncryptionAlgorithm": { + "type": "String", + "placeholders": {} + }, + "unknownEvent": "未知事件「{type}」", + "@unknownEvent": { + "type": "String", + "placeholders": { + "type": { + "type": "String" + } + } + }, + "unmuteChat": "取消靜音聊天室", + "@unmuteChat": { + "type": "String", + "placeholders": {} + }, + "unpin": "取消釘選", + "@unpin": { + "type": "String", + "placeholders": {} + }, + "unreadChats": "{unreadCount, plural, =1 {1 unread chat} other { {unreadCount} 個未讀聊天室} }", + "@unreadChats": { + "type": "String", + "placeholders": { + "unreadCount": { + "type": "int" + } + } + }, + "userAndOthersAreTyping": "{username} 和其他 {count} 個人正在輸入...…", + "@userAndOthersAreTyping": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "count": { + "type": "int" + } + } + }, + "userAndUserAreTyping": "{username} 和 {username2} 正在輸入...…", + "@userAndUserAreTyping": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "username2": { + "type": "String" + } + } + }, + "userIsTyping": "{username} 正在輸入...…", + "@userIsTyping": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "userLeftTheChat": "{username} 離開了聊天室", + "@userLeftTheChat": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "username": "使用者名稱", + "@username": { + "type": "String", + "placeholders": {} + }, + "userSentUnknownEvent": "{username} 傳送了一個 {type} 事件", + "@userSentUnknownEvent": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "type": { + "type": "String" + } + } + }, + "verified": "已驗證", + "@verified": { + "type": "String", + "placeholders": {} + }, + "verify": "驗證", + "@verify": { + "type": "String", + "placeholders": {} + }, + "verifyStart": "開始驗證", + "@verifyStart": { + "type": "String", + "placeholders": {} + }, + "verifySuccess": "您成功驗證了!", + "@verifySuccess": { + "type": "String", + "placeholders": {} + }, + "verifyTitle": "正在驗證其他帳號", + "@verifyTitle": { + "type": "String", + "placeholders": {} + }, + "videoCall": "視訊通話", + "@videoCall": { + "type": "String", + "placeholders": {} + }, + "visibilityOfTheChatHistory": "聊天室記錄的可見性", + "@visibilityOfTheChatHistory": { + "type": "String", + "placeholders": {} + }, + "visibleForAllParticipants": "對所有參與者可見", + "@visibleForAllParticipants": { + "type": "String", + "placeholders": {} + }, + "visibleForEveryone": "對所有人可見", + "@visibleForEveryone": { + "type": "String", + "placeholders": {} + }, + "voiceMessage": "語音訊息", + "@voiceMessage": { + "type": "String", + "placeholders": {} + }, + "waitingPartnerAcceptRequest": "正在等待夥伴接受請求...…", + "@waitingPartnerAcceptRequest": { + "type": "String", + "placeholders": {} + }, + "waitingPartnerEmoji": "正在等待夥伴接受表情符號...…", + "@waitingPartnerEmoji": { + "type": "String", + "placeholders": {} + }, + "waitingPartnerNumbers": "正在等待夥伴接受數字...…", + "@waitingPartnerNumbers": { + "type": "String", + "placeholders": {} + }, + "wallpaper": "桌布:", + "@wallpaper": { + "type": "String", + "placeholders": {} + }, + "warning": "警告!", + "@warning": { + "type": "String", + "placeholders": {} + }, + "weSentYouAnEmail": "我們向您傳送了一封電子郵件", + "@weSentYouAnEmail": { + "type": "String", + "placeholders": {} + }, + "whoCanPerformWhichAction": "誰可以執行這個動作", + "@whoCanPerformWhichAction": { + "type": "String", + "placeholders": {} + }, + "whoIsAllowedToJoinThisGroup": "誰可以加入這個群組", + "@whoIsAllowedToJoinThisGroup": { + "type": "String", + "placeholders": {} + }, + "whyDoYouWantToReportThis": "您檢舉的原因是什麼?", + "@whyDoYouWantToReportThis": { + "type": "String", + "placeholders": {} + }, + "wipeChatBackup": "是否清除您的聊天室記錄備份以建立新的安全金鑰嗎?", + "@wipeChatBackup": { + "type": "String", + "placeholders": {} + }, + "withTheseAddressesRecoveryDescription": "有了這些位址,您就可以恢復密碼。", + "@withTheseAddressesRecoveryDescription": { + "type": "String", + "placeholders": {} + }, + "writeAMessage": "輸入訊息...…", + "@writeAMessage": { + "type": "String", + "placeholders": {} + }, + "yes": "是", + "@yes": { + "type": "String", + "placeholders": {} + }, + "you": "您", + "@you": { + "type": "String", + "placeholders": {} + }, + "youAreNoLongerParticipatingInThisChat": "您不再參與這個聊天室了", + "@youAreNoLongerParticipatingInThisChat": { + "type": "String", + "placeholders": {} + }, + "youHaveBeenBannedFromThisChat": "您已經被這個聊天室封鎖", + "@youHaveBeenBannedFromThisChat": { + "type": "String", + "placeholders": {} + }, + "yourPublicKey": "您的公鑰", + "@yourPublicKey": { + "type": "String", + "placeholders": {} + }, + "people": "人", + "@people": { + "type": "String", + "placeholders": {} + }, + "chats": "聊天室", + "@chats": { + "type": "String", + "placeholders": {} + }, + "allChats": "所有會話", + "@allChats": { + "type": "String", + "placeholders": {} + }, + "commandHint_ban": "在此聊天室封鎖該使用者", + "@commandHint_ban": { + "type": "String", + "description": "Usage hint for the command /ban" + }, + "commandHint_clearcache": "清除快取", + "@commandHint_clearcache": { + "type": "String", + "description": "Usage hint for the command /clearcache" + }, + "commandHint_create": "建立一個空的群聊\n使用 --no-encryption 選項來停用加密", + "@commandHint_create": { + "type": "String", + "description": "Usage hint for the command /create" + }, + "commandHint_discardsession": "丟棄工作階段", + "@commandHint_discardsession": { + "type": "String", + "description": "Usage hint for the command /discardsession" + }, + "commandHint_dm": "啟動一對一聊天室\n使用 --no-encryption 選項來停用加密", + "@commandHint_dm": { + "type": "String", + "description": "Usage hint for the command /dm" + }, + "commandHint_invite": "邀請該使用者加入此聊天室", + "@commandHint_invite": { + "type": "String", + "description": "Usage hint for the command /invite" + }, + "commandHint_join": "加入此聊天室", + "@commandHint_join": { + "type": "String", + "description": "Usage hint for the command /join" + }, + "commandHint_kick": "將這個使用者移出此聊天室", + "@commandHint_kick": { + "type": "String", + "description": "Usage hint for the command /kick" + }, + "commandHint_leave": "退出此聊天室", + "@commandHint_leave": { + "type": "String", + "description": "Usage hint for the command /leave" + }, + "commandHint_myroomnick": "設定您的聊天室暱稱", + "@commandHint_myroomnick": { + "type": "String", + "description": "Usage hint for the command /myroomnick" + }, + "editRoomAliases": "編輯聊天室名", + "@editRoomAliases": { + "type": "String", + "placeholders": {} + }, + "roomVersion": "聊天室的版本", + "@roomVersion": { + "type": "String", + "placeholders": {} + }, + "addToSpace": "加入空間", + "@addToSpace": {}, + "cantOpenUri": "無法打開 URI {uri}", + "@cantOpenUri": { + "type": "String", + "placeholders": { + "uri": { + "type": "String" + } + } + }, + "repeatPassword": "再次輸入密碼", + "@repeatPassword": {}, + "yourChatBackupHasBeenSetUp": "您的聊天室記錄備份已設定。", + "@yourChatBackupHasBeenSetUp": {}, + "goToTheNewRoom": "前往新聊天室", + "@goToTheNewRoom": { + "type": "String", + "placeholders": {} + }, + "commandHint_myroomavatar": "設定您的聊天室頭貼(通過 mxc-uri)", + "@commandHint_myroomavatar": { + "type": "String", + "description": "Usage hint for the command /myroomavatar" + }, + "commandHint_unban": "在此聊天室解除封鎖該使用者", + "@commandHint_unban": { + "type": "String", + "description": "Usage hint for the command /unban" + }, + "autoplayImages": "自動播放動態貼圖和表情", + "@autoplayImages": { + "type": "String", + "placeholder": {} + }, + "sendOnEnter": "按 Enter 鍵傳送", + "@sendOnEnter": {}, + "changeYourAvatar": "更改您的大頭貼", + "@changeYourAvatar": { + "type": "String", + "placeholders": {} + }, + "chatHasBeenAddedToThisSpace": "聊天室已新增到此空間", + "@chatHasBeenAddedToThisSpace": {}, + "clearArchive": "清除存檔", + "@clearArchive": {}, + "hugContent": "{senderName} 擁抱您", + "@hugContent": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "commandHint_cuddle": "傳送一個摟抱表情", + "@commandHint_cuddle": {}, + "supposedMxid": "此處應爲 {mxid}", + "@supposedMxid": { + "type": "String", + "placeholders": { + "mxid": { + "type": "String" + } + } + }, + "invalidServerName": "伺服器名稱錯誤", + "@invalidServerName": {}, + "importFromZipFile": "從 .zip 檔案匯入", + "@importFromZipFile": {}, + "homeserver": "伺服器", + "@homeserver": {}, + "exportEmotePack": "將表情包匯出成 .zip 檔案", + "@exportEmotePack": {}, + "commandInvalid": "命令無效", + "@commandInvalid": { "type": "String" - } - } - }, - "italicText": "斜體", - "@italicText": {}, - "boldText": "粗體", - "@boldText": {}, - "strikeThrough": "刪除線", - "@strikeThrough": {}, - "pleaseFillOut": "請填充", - "@pleaseFillOut": {}, - "invalidUrl": "無效 url", - "@invalidUrl": {}, - "appWantsToUseForLoginDescription": "你特此允許該應用程式和網站分享關於你的信息。", - "@appWantsToUseForLoginDescription": {}, - "open": "打開", - "@open": {}, - "waitingForServer": "等待伺服器中...", - "@waitingForServer": {}, - "appIntroduction": "FluffyChat 讓你和你的朋友跨越工具聊天。在 https://matrix.org 了解更多或*繼續*。", - "@appIntroduction": {}, - "previous": "上一個", - "@previous": {}, - "otherPartyNotLoggedIn": "對方現未登入,未能接收訊息 !", - "@otherPartyNotLoggedIn": {}, - "supportPage": "幫助頁面", - "@supportPage": {}, - "addLink": "插入連結", - "@addLink": {}, - "notificationRuleContainsDisplayName": "包含顯示名稱", - "@notificationRuleContainsDisplayName": {}, - "notificationRuleRoomnotif": "聊天室通知", - "@notificationRuleRoomnotif": {}, - "notificationRuleIsRoomMentionDescription": "當有聊天室提及時通知用户。", - "@notificationRuleIsRoomMentionDescription": {}, - "notificationRuleRoomOneToOneDescription": "在一對一聊天室中通知用户收到訊息。", - "@notificationRuleRoomOneToOneDescription": {}, - "notificationRuleServerAcl": "隱藏伺服器 ACL 事件", - "@notificationRuleServerAcl": {}, - "notificationRuleContainsDisplayNameDescription": "當訊息包含用户的顯示名稱時通知用户。", - "@notificationRuleContainsDisplayNameDescription": {}, - "notificationRuleIsRoomMention": "聊天室提及", - "@notificationRuleIsRoomMention": {}, - "notificationRuleRoomnotifDescription": "當訊息包含 \"@room\" 時通知用户。", - "@notificationRuleRoomnotifDescription": {}, - "notificationRuleTombstone": "墓碑", - "@notificationRuleTombstone": {}, - "notificationRuleCallDescription": "通知用户有來電。", - "@notificationRuleCallDescription": {}, - "notificationRuleEncryptedRoomOneToOne": "一對一加密聊天室", - "@notificationRuleEncryptedRoomOneToOne": {}, - "notificationRuleEncryptedRoomOneToOneDescription": "通知用户一對一加密聊天室的訊息。", - "@notificationRuleEncryptedRoomOneToOneDescription": {}, - "notificationRuleRoomOneToOne": "一對一聊天室", - "@notificationRuleRoomOneToOne": {}, - "notificationRuleMessage": "訊息", - "@notificationRuleMessage": {}, - "notificationRuleServerAclDescription": "隱藏伺服器 ACL 事件的通知。", - "@notificationRuleServerAclDescription": {}, - "notificationRuleMessageDescription": "通知用户一般訊息。", - "@notificationRuleMessageDescription": {}, - "notificationRuleEncrypted": "已加密", - "@notificationRuleEncrypted": {}, - "notificationRuleEncryptedDescription": "在已加密房間內通知用户訊息。", - "@notificationRuleEncryptedDescription": {}, - "notificationRuleJitsi": "Jitsi", - "@notificationRuleJitsi": {}, - "notificationRuleJitsiDescription": "通知用户 Jitsi 小部件事件。", - "@notificationRuleJitsiDescription": {}, - "unknownPushRule": "未知推送規則 '{rule}'", - "@unknownPushRule": { - "type": "String", - "placeholders": { - "rule": { + }, + "commandMissing": "{command} 不是正確的命令。", + "@commandMissing": { + "type": "String", + "placeholders": { + "command": { + "type": "String" + } + }, + "description": "State that {command} is not a valid /command." + }, + "googlyEyesContent": "{senderName} 向您傳送了瞪眼表情", + "@googlyEyesContent": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "addChatDescription": "新增聊天室描述......", + "@addChatDescription": {}, + "sendTypingNotifications": "傳送「輸入中」通知", + "@sendTypingNotifications": {}, + "importEmojis": "匯入表情包", + "@importEmojis": {}, + "confirmMatrixId": "如需刪除你的帳戶,請確認你的 Matrix ID。", + "@confirmMatrixId": {}, + "notAnImage": "不是圖片檔案。", + "@notAnImage": {}, + "cuddleContent": "{senderName} 摟抱您", + "@cuddleContent": { + "type": "String", + "placeholders": { + "senderName": { + "type": "String" + } + } + }, + "commandHint_hug": "傳送一個擁抱表情", + "@commandHint_hug": {}, + "replace": "取代", + "@replace": {}, + "commandHint_googly": "傳送一些瞪眼表情", + "@commandHint_googly": {}, + "importNow": "立即匯入", + "@importNow": {}, + "blockListDescription": "你可以封鎖打擾你的使用者。你不會再收到任何從已封鎖使用者發來的訊息或聊天室邀請。", + "@blockListDescription": {}, + "blockedUsers": "已封鎖的使用者", + "@blockedUsers": {}, + "block": "封鎖", + "@block": {}, + "discover": "發現", + "@discover": {}, + "alwaysUse24HourFormat": "false", + "@alwaysUse24HourFormat": { + "description": "Set to true to always display time of day in 24 hour format." + }, + "sender": "傳送者", + "@sender": {}, + "voiceCall": "語音通話", + "@voiceCall": {}, + "blockUsername": "無視使用者名稱", + "@blockUsername": {}, + "noBackupWarning": "警告!如果不啟用聊天室備份,您將失去對加密訊息的訪問。強烈建議在登出前先啟用聊天室備份。", + "@noBackupWarning": {}, + "addChatOrSubSpace": "新增聊天室或子空間", + "@addChatOrSubSpace": {}, + "thisDevice": "這個裝置:", + "@thisDevice": {}, + "separateChatTypes": "分開私訊和群組", + "@separateChatTypes": { + "type": "String", + "placeholders": {} + }, + "commandHint_markasdm": "將給定的 Matrix ID 標示為直接訊息房間", + "@commandHint_markasdm": {}, + "commandHint_html": "傳送 HTML 格式的文字", + "@commandHint_html": { + "type": "String", + "description": "Usage hint for the command /html" + }, + "commandHint_send": "傳送文字", + "@commandHint_send": { + "type": "String", + "description": "Usage hint for the command /send" + }, + "emoteKeyboardNoRecents": "最近使用的表情將顯示在這裡...", + "@emoteKeyboardNoRecents": { + "type": "String", + "placeholders": {} + }, + "noChatDescriptionYet": "尚未建立聊天室描述。", + "@noChatDescriptionYet": {}, + "optionalRedactReason": "(非必填)收回此訊息的原因...", + "@optionalRedactReason": {}, + "dehydrateWarning": "此操作不能反悔。請確保安全地存儲備份文件。", + "@dehydrateWarning": {}, + "hydrateTorLong": "上次在 TOR 上匯出會話了嗎?快速匯入它已繼續使用聊天室。", + "@hydrateTorLong": {}, + "hydrate": "從備份文件恢復", + "@hydrate": {}, + "locationDisabledNotice": "位置服務被停用。請啟用它們以能夠分享您的位置。", + "@locationDisabledNotice": { + "type": "String", + "placeholders": {} + }, + "noMatrixServer": "{server1} 不是 Matrix 服務器,改用 {server2} 嗎?", + "@noMatrixServer": { + "type": "String", + "placeholders": { + "server1": { + "type": "String" + }, + "server2": { + "type": "String" + } + } + }, + "addToBundle": "新增到套組", + "@addToBundle": {}, + "bundleName": "套組名稱", + "@bundleName": {}, + "pleaseEnterYourPin": "請輸入您的密碼", + "@pleaseEnterYourPin": { + "type": "String", + "placeholders": {} + }, + "redactedByBecause": "由 {username} 編輯,原因:「{reason}」", + "@redactedByBecause": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + }, + "reason": { + "type": "String" + } + } + }, + "saveFile": "儲存檔案", + "@saveFile": { + "type": "String", + "placeholders": {} + }, + "publish": "發布", + "@publish": {}, + "hasKnocked": "🚪 {user} 敲門了", + "@hasKnocked": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "unlockOldMessages": "解鎖舊消息", + "@unlockOldMessages": {}, + "callingAccountDetails": "允許 FluffyChat 使用原生 Android 撥號應用程式。", + "@callingAccountDetails": {}, + "noOtherDevicesFound": "未找到其他裝置", + "@noOtherDevicesFound": {}, + "noUsersFoundWithQuery": "很遺憾,找不到與「{query}」相符的使用者。請檢查是否有打錯字。", + "@noUsersFoundWithQuery": { + "type": "String", + "placeholders": { + "query": { + "type": "String" + } + } + }, + "publicLink": "公開網址", + "@publicLink": {}, + "dehydrate": "匯出會話並清除裝置", + "@dehydrate": {}, + "dehydrateTor": "TOR 使用者:匯出會話", + "@dehydrateTor": {}, + "reopenChat": "重新開啟聊天室", + "@reopenChat": {}, + "widgetNameError": "請提供一個顯示名稱。", + "@widgetNameError": {}, + "yourGlobalUserIdIs": "您的全域使用者ID是: ", + "@yourGlobalUserIdIs": {}, + "startFirstChat": "開始您的第一次聊天室", + "@startFirstChat": {}, + "experimentalVideoCalls": "實驗性視訊通話", + "@experimentalVideoCalls": {}, + "youAcceptedTheInvitation": "👍 您接受了邀請", + "@youAcceptedTheInvitation": {}, + "storeSecurlyOnThisDevice": "在此裝置上安全存儲", + "@storeSecurlyOnThisDevice": {}, + "countFiles": "{count} 個文件", + "@countFiles": { + "placeholders": { + "count": { + "type": "int" + } + } + }, + "screenSharingDetail": "您正在 FuffyChat 中分享您的螢幕", + "@screenSharingDetail": {}, + "wrongPinEntered": "輸入的密碼錯誤! {seconds} 秒後再試一次......", + "@wrongPinEntered": { + "type": "String", + "placeholders": { + "seconds": { + "type": "int" + } + } + }, + "archiveRoomDescription": "聊天室將被移動到存檔中。其他使用者將能看到您已離開聊天室。", + "@archiveRoomDescription": {}, + "banUserDescription": "該使用者將被禁止進入聊天室,直到他們被解封之前都無法再次進入聊天室。", + "@banUserDescription": {}, + "searchChatsRooms": "搜尋 #chats, @users...", + "@searchChatsRooms": {}, + "decline": "拒絕", + "@decline": {}, + "sendReadReceipts": "傳送已讀回條", + "@sendReadReceipts": {}, + "formattedMessagesDescription": "使用 markdown 顯示豐富的訊息內容,如粗體文字。", + "@formattedMessagesDescription": {}, + "verifyOtherDevice": "🔐 驗證其他裝置", + "@verifyOtherDevice": {}, + "youInvitedUser": "📩 您邀請了 {user}", + "@youInvitedUser": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "pinMessage": "釘選到房間", + "@pinMessage": {}, + "youKicked": "👞 您踢出了 {user}", + "@youKicked": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "users": "使用者", + "@users": {}, + "pleaseChoose": "請選擇", + "@pleaseChoose": { + "type": "String", + "placeholders": {} + }, + "youRejectedTheInvitation": "您拒絕了邀請", + "@youRejectedTheInvitation": {}, + "enterRoom": "進入房間", + "@enterRoom": {}, + "allSpaces": "所有空間", + "@allSpaces": {}, + "indexedDbErrorLong": "預設情況下,私密模式不啟用消息存儲。\n請訪問\n - about:config\n - 將 dom.indexedDB.privateBrowsing.enabled 設定為 true\n否則,無法運行 FluffyChat。", + "@indexedDbErrorLong": {}, + "youKickedAndBanned": "🙅 您踢出並封鎖了 {user}", + "@youKickedAndBanned": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "user": "使用者", + "@user": {}, + "custom": "自訂", + "@custom": {}, + "hidePresences": "隱藏狀態列表?", + "@hidePresences": {}, + "signInWithPassword": "使用密碼登入", + "@signInWithPassword": {}, + "setColorTheme": "設定主題顏色:", + "@setColorTheme": {}, + "makeAdminDescription": "一旦您讓這個使用者成為管理員,您可能無法撤銷此操作,因為他們將擁有與您相同的權限。", + "@makeAdminDescription": {}, + "createGroupAndInviteUsers": "建立群組並邀請使用者", + "@createGroupAndInviteUsers": {}, + "groupCanBeFoundViaSearch": "可以透過搜尋找到群組", + "@groupCanBeFoundViaSearch": {}, + "pleaseEnterYourCurrentPassword": "請輸入您當前的密碼", + "@pleaseEnterYourCurrentPassword": {}, + "widgetCustom": "自訂", + "@widgetCustom": {}, + "createGroup": "建立群組", + "@createGroup": {}, + "enterSpace": "進入空間", + "@enterSpace": {}, + "shareLocation": "分享位置", + "@shareLocation": { + "type": "String", + "placeholders": {} + }, + "widgetVideo": "影片", + "@widgetVideo": {}, + "redactMessageDescription": "該訊息將對此對話中的所有參與者收回。這不能被反悔。", + "@redactMessageDescription": {}, + "removeFromBundle": "從此套組中移除", + "@removeFromBundle": {}, + "widgetName": "名稱", + "@widgetName": {}, + "jump": "跳轉", + "@jump": {}, + "commandHint_unignore": "取消無視已提供的 Matrix ID", + "@commandHint_unignore": {}, + "commandHint_markasgroup": "標示為群組", + "@commandHint_markasgroup": {}, + "commandHint_me": "描述自己", + "@commandHint_me": { + "type": "String", + "description": "Usage hint for the command /me" + }, + "commandHint_plain": "傳送未格式化的文字", + "@commandHint_plain": { + "type": "String", + "description": "Usage hint for the command /plain" + }, + "commandHint_react": "以反應的形式傳送回覆", + "@commandHint_react": { + "type": "String", + "description": "Usage hint for the command /react" + }, + "createNewSpace": "新建空間", + "@createNewSpace": { + "type": "String", + "placeholders": {} + }, + "allRooms": "所有群組聊天室", + "@allRooms": { + "type": "String", + "placeholders": {} + }, + "chatPermissions": "聊天室權限", + "@chatPermissions": {}, + "customEmojisAndStickersBody": "新增或分享可在任何聊天室中使用的自訂表情符號或貼圖。", + "@customEmojisAndStickersBody": {}, + "errorObtainingLocation": "取得位置錯誤:{error}", + "@errorObtainingLocation": { + "type": "String", + "placeholders": { + "error": { + "type": "String" + } + } + }, + "hideRedactedMessages": "隱藏被刪除的訊息", + "@hideRedactedMessages": {}, + "hideInvalidOrUnknownMessageFormats": "隱藏無效或未知的訊息格式", + "@hideInvalidOrUnknownMessageFormats": {}, + "dehydrateTorLong": "對 TOR 使用者,建議在關閉窗口前匯出會話。", + "@dehydrateTorLong": {}, + "hydrateTor": "TOR 使用者:匯入會話", + "@hydrateTor": {}, + "messagesStyle": "訊息樣式:", + "@messagesStyle": {}, + "shareInviteLink": "分享邀請網址", + "@shareInviteLink": {}, + "scanQrCode": "掃描 QR 碼", + "@scanQrCode": {}, + "openVideoCamera": "打開錄影", + "@openVideoCamera": { + "type": "String", + "placeholders": {} + }, + "oneClientLoggedOut": "您的一個客戶端已登出", + "@oneClientLoggedOut": {}, + "addAccount": "新增帳號", + "@addAccount": {}, + "editBundlesForAccount": "為此帳號編輯套組", + "@editBundlesForAccount": {}, + "openInMaps": "在地圖中打開", + "@openInMaps": { + "type": "String", + "placeholders": {} + }, + "serverRequiresEmail": "該伺服器需要驗證您的註冊電子郵件地址。", + "@serverRequiresEmail": {}, + "or": "或", + "@or": { + "type": "String", + "placeholders": {} + }, + "hideMemberChangesInPublicChatsBody": "若有人加入或離開公開聊天室,將不在聊天室時間軸顯示,以提升資訊可讀性。", + "@hideMemberChangesInPublicChatsBody": {}, + "overview": "概觀", + "@overview": {}, + "notifyMeFor": "通知我", + "@notifyMeFor": {}, + "passwordRecoverySettings": "恢復密碼設定", + "@passwordRecoverySettings": {}, + "redactedBy": "由 {username} 編輯", + "@redactedBy": { + "type": "String", + "placeholders": { + "username": { + "type": "String" + } + } + }, + "recoveryKey": "恢復金鑰", + "@recoveryKey": {}, + "spaceName": "空間名稱", + "@spaceName": { + "type": "String", + "placeholders": {} + }, + "synchronizingPleaseWait": "正在同步... 請稍候。", + "@synchronizingPleaseWait": { + "type": "String", + "placeholders": {} + }, + "messageInfo": "訊息資訊", + "@messageInfo": {}, + "removeFromSpace": "從空間中移除", + "@removeFromSpace": {}, + "addToSpaceDescription": "選擇一個空間將此聊天室加入。", + "@addToSpaceDescription": {}, + "pleaseEnterRecoveryKeyDescription": "要解鎖您的舊訊息,請輸入在之前的會話中生成的恢復密鑰。您的恢復密鑰不是您的密碼。", + "@pleaseEnterRecoveryKeyDescription": {}, + "videoWithSize": "影片({size})", + "@videoWithSize": { + "type": "String", + "placeholders": { + "size": { + "type": "String" + } + } + }, + "emojis": "表情符號", + "@emojis": {}, + "placeCall": "發起通話", + "@placeCall": {}, + "unsupportedAndroidVersion": "不支持的Android版本", + "@unsupportedAndroidVersion": {}, + "videoCallsBetaWarning": "請注意,視訊通話目前處於測試階段。它們可能不會按預期工作,或者在所有平台上都不工作。", + "@videoCallsBetaWarning": {}, + "widgetUrlError": "這不是一個有效的URL。", + "@widgetUrlError": {}, + "nextAccount": "下一個帳戶", + "@nextAccount": {}, + "previousAccount": "上一個帳戶", + "@previousAccount": {}, + "addWidget": "新增小工具", + "@addWidget": {}, + "errorAddingWidget": "新增小工具時發生錯誤。", + "@errorAddingWidget": {}, + "youJoinedTheChat": "您加入了聊天室", + "@youJoinedTheChat": {}, + "youBannedUser": "您封鎖了 {user}", + "@youBannedUser": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youHaveWithdrawnTheInvitationFor": "您已收回對 {user} 的邀請", + "@youHaveWithdrawnTheInvitationFor": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youInvitedBy": "📩 您被 {user} 邀請", + "@youInvitedBy": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youUnbannedUser": "您解除封鎖了 {user}", + "@youUnbannedUser": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "youInvitedToBy": "📩 您通過網址被邀請至:\n{alias}", + "@youInvitedToBy": { + "placeholders": { + "alias": { + "type": "String" + } + } + }, + "callingPermissions": "通話權限", + "@callingPermissions": {}, + "callingAccount": "通話帳戶", + "@callingAccount": {}, + "appearOnTop": "顯示在最上層", + "@appearOnTop": {}, + "newGroup": "新群組", + "@newGroup": {}, + "newSpace": "新空間", + "@newSpace": {}, + "numChats": "{number} 個聊天室", + "@numChats": { + "type": "number", + "placeholders": { + "number": { + "type": "String" + } + } + }, + "hideUnimportantStateEvents": "隱藏不重要的狀態事件", + "@hideUnimportantStateEvents": {}, + "doNotShowAgain": "不再顯示", + "@doNotShowAgain": {}, + "encryptThisChat": "加密此聊天室", + "@encryptThisChat": {}, + "sorryThatsNotPossible": "抱歉......這是不可能的", + "@sorryThatsNotPossible": {}, + "profileNotFound": "在伺服器上找不到該使用者。可能是連接問題或該使用者不存在。", + "@profileNotFound": {}, + "invite": "邀請", + "@invite": {}, + "invitePrivateChat": "📨 邀請私人聊天室", + "@invitePrivateChat": {}, + "removeDevicesDescription": "您將從這個裝置登出,並將不再能夠接收消息。", + "@removeDevicesDescription": {}, + "unbanUserDescription": "如果該使用者嘗試,他們將能夠再次進入聊天室。", + "@unbanUserDescription": {}, + "kickUserDescription": "該使用者被踢出聊天室,但未被禁止。在公開聊天室中,該使用者可以隨時重新加入。", + "@kickUserDescription": {}, + "pushNotificationsNotAvailable": "推送通知不可用", + "@pushNotificationsNotAvailable": {}, + "learnMore": "了解更多", + "@learnMore": {}, + "nothingFound": "什麼都沒找到......", + "@nothingFound": {}, + "startConversation": "開始對話", + "@startConversation": {}, + "databaseMigrationBody": "請稍候。這可能需要一點時間。", + "@databaseMigrationBody": {}, + "pleaseChooseAStrongPassword": "請選擇一個強密碼", + "@pleaseChooseAStrongPassword": {}, + "passwordIsWrong": "您輸入的密碼錯誤", + "@passwordIsWrong": {}, + "publicChatAddresses": "公開聊天室地址", + "@publicChatAddresses": {}, + "userRole": "使用者角色", + "@userRole": {}, + "minimumPowerLevel": "{level} 是最低權限等級。", + "@minimumPowerLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "String" + } + } + }, + "leaveEmptyToClearStatus": "留空以清除您的狀態。", + "@leaveEmptyToClearStatus": {}, + "select": "選擇", + "@select": {}, + "files": "文件", + "@files": {}, + "forwardMessageTo": "將訊息轉發至 {roomName}?", + "@forwardMessageTo": { + "type": "String", + "placeholders": { + "roomName": { + "type": "String" + } + } + }, + "sendTypingNotificationsDescription": "聊天室中的其他參與者可以看到您正在輸入新訊息。", + "@sendTypingNotificationsDescription": {}, + "verifyOtherDeviceDescription": "當您驗證另一個裝置時,這些裝置可以交換密鑰,提升您的整體安全性。💪 當您開始驗證時,一個彈出視窗將在兩個裝置上的應用程式中出現。在那裡,您將看到一系列的表情符號或數字,您需要相互比較。在開始驗證之前最好有兩個裝置在手邊。🤳", + "@verifyOtherDeviceDescription": {}, + "acceptedKeyVerification": "{sender} 接受了密鑰驗證", + "@acceptedKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "completedKeyVerification": "{sender} 完成了密鑰驗證", + "@completedKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "isReadyForKeyVerification": "{sender} 已準備好進行密鑰驗證", + "@isReadyForKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "thereAreCountUsersBlocked": "目前有 {count} 名使用者被封鎖。", + "@thereAreCountUsersBlocked": { + "type": "String", + "count": {} + }, + "knockRestricted": "敲門受限", + "@knockRestricted": {}, + "appLockDescription": "未使用時以密碼鎖定應用程式", + "@appLockDescription": {}, + "globalChatId": "全球聊天室 ID", + "@globalChatId": {}, + "accessAndVisibility": "訪問權限和可見性", + "@accessAndVisibility": {}, + "accessAndVisibilityDescription": "誰被允許加入此聊天室以及如何發現聊天室。", + "@accessAndVisibilityDescription": {}, + "calls": "通話", + "@calls": {}, + "chatDescription": "聊天室描述", + "@chatDescription": {}, + "chatDescriptionHasBeenChanged": "聊天室描述已變更", + "@chatDescriptionHasBeenChanged": {}, + "tryAgain": "再試一次", + "@tryAgain": {}, + "pleaseEnterRecoveryKey": "請輸入您的恢復金鑰:", + "@pleaseEnterRecoveryKey": {}, + "directChat": "私訊", + "@directChat": {}, + "register": "註冊", + "@register": { + "type": "String", + "placeholders": {} + }, + "setAsCanonicalAlias": "設為主要別名", + "@setAsCanonicalAlias": { + "type": "String", + "placeholders": {} + }, + "setChatDescription": "設定聊天室描述", + "@setChatDescription": {}, + "groupName": "群組名稱", + "@groupName": {}, + "searchForUsers": "搜尋 @users...", + "@searchForUsers": {}, + "inviteGroupChat": "📨 邀請群組聊天室", + "@inviteGroupChat": {}, + "setTheme": "設定主題:", + "@setTheme": {}, + "knocking": "敲門", + "@knocking": {}, + "sessionLostBody": "您的會話已丟失。請將此錯誤報告給開發人員,網址為 {url}。錯誤訊息為:{error}", + "@sessionLostBody": { + "type": "String", + "placeholders": { + "url": { + "type": "String" + }, + "error": { + "type": "String" + } + } + }, + "swipeRightToLeftToReply": "向右滑至左以回覆", + "@swipeRightToLeftToReply": {}, + "hideRedactedMessagesBody": "如果有人收回一條訊息,該訊息將不再在聊天室中顯示。", + "@hideRedactedMessagesBody": {}, + "link": "網址", + "@link": {}, + "obtainingLocation": "正在取得位置…", + "@obtainingLocation": { + "type": "String", + "placeholders": {} + }, + "oopsPushError": "哎呀!設定推送通知時不幸發生錯誤。", + "@oopsPushError": { + "type": "String", + "placeholders": {} + }, + "removeYourAvatar": "移除您的頭像", + "@removeYourAvatar": { + "type": "String", + "placeholders": {} + }, + "singlesignon": "單一登入", + "@singlesignon": { + "type": "String", + "placeholders": {} + }, + "presenceStyle": "目前狀態:", + "@presenceStyle": { + "type": "String", + "placeholders": {} + }, + "presencesToggle": "顯示其他使用者的狀態訊息", + "@presencesToggle": { + "type": "String", + "placeholders": {} + }, + "spaceIsPublic": "空間是公開的", + "@spaceIsPublic": { + "type": "String", + "placeholders": {} + }, + "dismiss": "解散", + "@dismiss": {}, + "reactedWith": "{sender} 以 {reaction} 回應", + "@reactedWith": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + }, + "reaction": { + "type": "String" + } + } + }, + "confirmEventUnpin": "您確定要永久取消釘選該事件嗎?", + "@confirmEventUnpin": {}, + "switchToAccount": "切換到帳戶 {number}", + "@switchToAccount": { + "type": "number", + "placeholders": { + "number": { + "type": "String" + } + } + }, + "widgetEtherpad": "文字筆記", + "@widgetEtherpad": {}, + "noOneCanJoin": "沒有人可以加入", + "@noOneCanJoin": {}, + "userWouldLikeToChangeTheChat": "{user} 想要加入聊天室。", + "@userWouldLikeToChangeTheChat": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "noPublicLinkHasBeenCreatedYet": "尚未建立公開網址", + "@noPublicLinkHasBeenCreatedYet": {}, + "saveKeyManuallyDescription": "通過觸發系統分享對話框或剪貼板手動保存此密鑰。", + "@saveKeyManuallyDescription": {}, + "storeInAndroidKeystore": "存儲在 Android KeyStore", + "@storeInAndroidKeystore": {}, + "storeInAppleKeyChain": "存儲在 Apple KeyChain", + "@storeInAppleKeyChain": {}, + "foregroundServiceRunning": "當前景服務正在運行時會顯示此通知。", + "@foregroundServiceRunning": {}, + "screenSharingTitle": "螢幕分享", + "@screenSharingTitle": {}, + "wasDirectChatDisplayName": "空的聊天室(原名稱為 {oldDisplayName} )", + "@wasDirectChatDisplayName": { + "type": "String", + "placeholders": { + "oldDisplayName": { + "type": "String" + } + } + }, + "otherCallingPermissions": "麥克風、相機和其他 FluffyChat 權限", + "@otherCallingPermissions": {}, + "disableEncryptionWarning": "出於安全原因,您不能在之前已加密的聊天室中停用加密。", + "@disableEncryptionWarning": {}, + "deviceKeys": "裝置密鑰:", + "@deviceKeys": {}, + "fileIsTooBigForServer": "無法發送!該伺服器僅支援最大到 {max} 的附件。", + "@fileIsTooBigForServer": {}, + "fileHasBeenSavedAt": "文件已保存在 {path}", + "@fileHasBeenSavedAt": { + "type": "String", + "placeholders": { + "path": { + "type": "String" + } + } + }, + "jumpToLastReadMessage": "跳至最後讀取的訊息", + "@jumpToLastReadMessage": {}, + "openLinkInBrowser": "在瀏覽器中開啟連結", + "@openLinkInBrowser": {}, + "reportErrorDescription": "😭 哦不。出了些問題。如果您願意,可以將此錯誤報告給開發者。", + "@reportErrorDescription": {}, + "readUpToHere": "讀到這裡", + "@readUpToHere": {}, + "report": "報告", + "@report": {}, + "pleaseEnterANumber": "請輸入大於 0 的數字", + "@pleaseEnterANumber": {}, + "roomUpgradeDescription": "將使用新版本聊天室來重新建立聊天室。所有本聊天室的參與者都會收到通知,他們都需要換到新的聊天室裡。若您想知道有關新版本的更多資訊,請前往 https://spec.matrix.org/latest/rooms/", + "@roomUpgradeDescription": {}, + "wrongRecoveryKey": "抱歉......這似乎不是正確的恢復密鑰。", + "@wrongRecoveryKey": {}, + "passwordsDoNotMatch": "密碼不匹配", + "@passwordsDoNotMatch": {}, + "publicSpaces": "公共空間", + "@publicSpaces": {}, + "subspace": "子空間", + "@subspace": {}, + "initAppError": "初始化應用時發生錯誤", + "@initAppError": {}, + "canceledKeyVerification": "{sender} 取消了密鑰驗證", + "@canceledKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "startedKeyVerification": "{sender} 開始了密鑰驗證", + "@startedKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "transparent": "透明", + "@transparent": {}, + "incomingMessages": "收到的訊息", + "@incomingMessages": {}, + "databaseMigrationTitle": "資料庫已最佳化", + "@databaseMigrationTitle": {}, + "restoreSessionBody": "應用程式現在嘗試從備份中恢復您的會話。請將此錯誤報告給開發人員,網址為 {url}。錯誤訊息為:{error}", + "@restoreSessionBody": { + "type": "String", + "placeholders": { + "url": { + "type": "String" + }, + "error": { + "type": "String" + } + } + }, + "stickers": "貼圖", + "@stickers": {}, + "joinSpace": "加入空間", + "@joinSpace": {}, + "noMoreChatsFound": "沒有更多聊天室了...", + "@noMoreChatsFound": {}, + "commandHint_op": "設定給定使用者的權限等級(預設:50)", + "@commandHint_op": { + "type": "String", + "description": "Usage hint for the command /op" + }, + "customEmojisAndStickers": "自訂表情符號和貼圖", + "@customEmojisAndStickers": {}, + "locationPermissionDeniedNotice": "位置權限被拒絕。請授予它們以能夠分享您的位置。", + "@locationPermissionDeniedNotice": { + "type": "String", + "placeholders": {} + }, + "inviteContactToGroupQuestion": "您想邀請 {contact} 加入 「{groupName}」 聊天室嗎?", + "@inviteContactToGroupQuestion": {}, + "enableMultiAccounts": "(實驗性功能)在此裝置上啟用多個帳號", + "@enableMultiAccounts": {}, + "hideMemberChangesInPublicChats": "在公開聊天室中隱藏成員變動", + "@hideMemberChangesInPublicChats": {}, + "recoveryKeyLost": "遺失恢復金鑰?", + "@recoveryKeyLost": {}, + "sendAsText": "以文字傳送", + "@sendAsText": { "type": "String" - } + }, + "sendSticker": "傳送貼圖", + "@sendSticker": { + "type": "String", + "placeholders": {} + }, + "unverified": "尚未驗證", + "@unverified": {}, + "time": "時間", + "@time": {}, + "chatCanBeDiscoveredViaSearchOnServer": "可以透過在 {server} 上的搜尋發現聊天室", + "@chatCanBeDiscoveredViaSearchOnServer": { + "type": "String", + "placeholders": { + "server": { + "type": "String" + } + } + }, + "commandHint_sendraw": "傳送原始 json", + "@commandHint_sendraw": {}, + "newPassword": "新密碼", + "@newPassword": {}, + "createNewAddress": "建立新地址", + "@createNewAddress": {}, + "searchIn": "在聊天室「{chat}」中搜尋......", + "@searchIn": { + "type": "String", + "placeholders": { + "chat": { + "type": "String" + } + } + }, + "searchMore": "搜尋更多......", + "@searchMore": {}, + "gallery": "畫廊", + "@gallery": {}, + "databaseBuildErrorBody": "無法建立 SQLite 資料庫。應用程式目前嘗試使用遺留資料庫。請將此錯誤報告給開發人員,網址為 {url}。錯誤訊息為:{error}", + "@databaseBuildErrorBody": { + "type": "String", + "placeholders": { + "url": { + "type": "String" + }, + "error": { + "type": "String" + } + } + }, + "sendReadReceiptsDescription": "聊天室中的其他參與者可以看到您已讀取一條訊息。", + "@sendReadReceiptsDescription": {}, + "formattedMessages": "格式化訊息", + "@formattedMessages": {}, + "restricted": "受限", + "@restricted": {}, + "goToSpace": "前往空間:{space}", + "@goToSpace": { + "type": "String", + "space": {} + }, + "markAsUnread": "標示為未讀", + "@markAsUnread": {}, + "noDatabaseEncryption": "此平台不支援資料庫加密", + "@noDatabaseEncryption": {}, + "messageType": "訊息類型", + "@messageType": {}, + "openGallery": "開啟畫廊", + "@openGallery": {}, + "markAsRead": "標示為已讀", + "@markAsRead": {}, + "reportUser": "舉報使用者", + "@reportUser": {}, + "unsupportedAndroidVersionLong": "此功能需要較新的 Android 版本。請檢查更新或 Lineage OS 支持。", + "@unsupportedAndroidVersionLong": {}, + "emailOrUsername": "電子郵件或使用者名", + "@emailOrUsername": {}, + "indexedDbErrorTitle": "私密模式問題", + "@indexedDbErrorTitle": {}, + "widgetJitsi": "Jitsi Meet", + "@widgetJitsi": {}, + "usersMustKnock": "使用者必須敲門", + "@usersMustKnock": {}, + "knock": "敲門", + "@knock": {}, + "storeInSecureStorageDescription": "將恢復密鑰存儲在此裝置的安全存儲中。", + "@storeInSecureStorageDescription": {}, + "appearOnTopDetails": "允許應用程式顯示在最上層(如果您已將 Fluffychat 設定為通話帳戶則不需要)", + "@appearOnTopDetails": {}, + "whyIsThisMessageEncrypted": "為什麼這條訊息無法讀取?", + "@whyIsThisMessageEncrypted": {}, + "noKeyForThisMessage": "如果訊息是在您登入此裝置之前傳送的,就可能會發生這種情況。\n\n也有可能是傳送者已經封鎖了您的裝置,或者網絡連接出了問題。\n\n如果您能在另一個會話中讀取該訊息,那麼您可以從中轉移訊息!前往設定 > 裝置,並確保您的裝置已相互驗證。當您下次打開房間且兩個會話都在前景時,密鑰將自動傳輸。\n\n不想在登出或切換裝置時丟失密鑰?請確保您已在設定中啟用了聊天室備份。", + "@noKeyForThisMessage": {}, + "newSpaceDescription": "空間允許您整合您的聊天室並建立私人或公開社群。", + "@newSpaceDescription": {}, + "pleaseTryAgainLaterOrChooseDifferentServer": "請稍後再試,或選擇不同的伺服器。", + "@pleaseTryAgainLaterOrChooseDifferentServer": {}, + "signInWith": "使用 {provider} 登入", + "@signInWith": { + "type": "String", + "placeholders": { + "provider": { + "type": "String" + } + } + }, + "invalidInput": "無效的輸入!", + "@invalidInput": {}, + "verifyOtherUser": "🔐 驗證其他使用者", + "@verifyOtherUser": {}, + "verifyOtherUserDescription": "如果您驗證了另一個使用者,您可以確定您真正與誰通信。💪\n\n當您開始驗證時,您和另一個使用者將在應用程式中看到一個彈出視窗。在那裡,您將看到一系列的表情符號或數字,您需要相互比較。\n\n最好的方式是見面或開始視訊通話。👭", + "@verifyOtherUserDescription": {}, + "requestedKeyVerification": "{sender} 請求了密鑰驗證", + "@requestedKeyVerification": { + "type": "String", + "placeholders": { + "sender": { + "type": "String" + } + } + }, + "commandHint_ignore": "無視已提供的 Matrix ID", + "@commandHint_ignore": {}, + "countChatsAndCountParticipants": "{chats} 個聊天室和 {participants} 位參與者", + "@countChatsAndCountParticipants": { + "type": "String", + "placeholders": { + "chats": { + "type": "int" + }, + "participants": { + "type": "int" + } + } + }, + "joinedChats": "已加入的聊天室", + "@joinedChats": {}, + "unread": "未讀", + "@unread": {}, + "space": "空間", + "@space": {}, + "spaces": "空間", + "@spaces": {}, + "start": "開始", + "@start": {}, + "openChat": "開啟聊天室", + "@openChat": {}, + "unreadChatsInApp": "{appname}:{unread} 未讀聊天室", + "@unreadChatsInApp": { + "type": "String", + "placeholders": { + "appname": { + "type": "String" + }, + "unread": { + "type": "String" + } + } + }, + "adminLevel": "{level} - 管理員", + "@adminLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "int" + } + } + }, + "userLevel": "{level} - 用戶", + "@userLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "int" + } + } + }, + "moderatorLevel": "{level} - 管理員", + "@moderatorLevel": { + "type": "String", + "placeholders": { + "level": { + "type": "int" + } + } + }, + "invitedBy": "📩 由 {user} 邀請", + "@invitedBy": { + "placeholders": { + "user": { + "type": "String" + } + } + }, + "doesNotSeemToBeAValidHomeserver": "似乎不是能匹配的歸屬伺服器。伺服器域名打錯了嗎?", + "@doesNotSeemToBeAValidHomeserver": {}, + "noticeChatBackupDeviceVerification": "注意:當您將所有裝置連線到聊天備份時,它們會自動驗證。", + "@noticeChatBackupDeviceVerification": {}, + "sendCanceled": "傳送取消", + "@sendCanceled": {}, + "changelog": "變更日誌", + "@changelog": {}, + "changeTheCanonicalRoomAlias": "變更公開聊天室的主要地址", + "@changeTheCanonicalRoomAlias": {}, + "sendImages": "傳送{count}張圖片", + "@sendImages": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } + }, + "loginWithMatrixId": "以Matrix-ID登入", + "@loginWithMatrixId": {}, + "inviteOtherUsers": "邀請其他用戶進入本聊天", + "@inviteOtherUsers": {}, + "sendRoomNotifications": "傳送一條 @room 群提醒", + "@sendRoomNotifications": {}, + "updateInstalled": "🎉已成功安裝{version}版本!", + "@updateInstalled": { + "type": "String", + "placeholders": { + "version": { + "type": "String" + } + } + }, + "oneOfYourDevicesIsNotVerified": "你的其中一個裝置尚未驗證", + "@oneOfYourDevicesIsNotVerified": {}, + "chatPermissionsDescription": "定義此聊天中某些操作需要哪個權限等級。 權限等級0、50和100通常代表使用者、版主和管理員,但任何分級都是可能的。", + "@chatPermissionsDescription": {}, + "changeGeneralChatSettings": "變更一般聊天設定", + "@changeGeneralChatSettings": {}, + "manageAccount": "帳號管理", + "@manageAccount": {}, + "changeTheChatPermissions": "變更聊天室權限", + "@changeTheChatPermissions": {}, + "changeTheVisibilityOfChatHistory": "變更過往聊天記錄可見度", + "@changeTheVisibilityOfChatHistory": {}, + "homeserverDescription": "您的所有資料都儲存在歸屬伺服器上,就像電子郵件提供商一樣。 您可以選擇要使用的歸屬伺服器,同時您仍然可以與每個人溝通。 請訪問https://matrix.org瞭解更多資訊。", + "@homeserverDescription": {}, + "sendingAttachment": "附件傳送中…", + "@sendingAttachment": {}, + "compressVideo": "影片壓縮中…", + "@compressVideo": {}, + "opacity": "不透明度:", + "@opacity": {}, + "aboutHomeserver": "關於{homeserver}", + "@aboutHomeserver": { + "type": "String", + "placeholders": { + "homeserver": { + "type": "String" + } + } + }, + "noChatsFoundHere": "還沒開始聊天嗎?點擊下方按鈕找個人聊聊吧⤵", + "@noChatsFoundHere": {}, + "changeTheDescriptionOfTheGroup": "變更聊天室說明", + "@changeTheDescriptionOfTheGroup": {}, + "discoverHomeservers": "探索歸屬伺服器", + "@discoverHomeservers": {}, + "whatIsAHomeserver": "什麼是歸屬伺服器?", + "@whatIsAHomeserver": {}, + "calculatingFileSize": "正在計算檔案大小…", + "@calculatingFileSize": {}, + "prepareSendingAttachment": "準備傳送附件…", + "@prepareSendingAttachment": {}, + "generatingVideoThumbnail": "生成影片縮圖中…", + "@generatingVideoThumbnail": {}, + "sendingAttachmentCountOfCount": "附件傳送中 {index}/{length}…", + "@sendingAttachmentCountOfCount": { + "type": "integer", + "placeholders": { + "index": { + "type": "int" + }, + "length": { + "type": "int" + } + } + }, + "serverLimitReached": "已達伺服器上限! 請稍等{seconds}秒…", + "@serverLimitReached": { + "type": "integer", + "placeholders": { + "seconds": { + "type": "int" + } + } + }, + "welcomeText": "嘿,嘿👋這是FluffyChat。 您可以登入任何與https://matrix.org相容的歸屬伺服器後和任何人聊天。 這是一個巨大的去中心化訊息網路!", + "@welcomeText": {}, + "setWallpaper": "設定背景樣式", + "@setWallpaper": {}, + "noContactInformationProvided": "伺服器沒有提供任何有效的聯絡資訊", + "@noContactInformationProvided": {}, + "contactServerAdmin": "聯繫伺服器管理員", + "@contactServerAdmin": {}, + "contactServerSecurity": "聯繫伺服器安管", + "@contactServerSecurity": {}, + "continueText": "繼續", + "@continueText": {}, + "blur": "模糊:", + "@blur": {}, + "synchronizingPleaseWaitCounter": " 同步中… ({percentage}%)", + "@synchronizingPleaseWaitCounter": { + "type": "String", + "placeholders": { + "percentage": { + "type": "String" + } + } + }, + "contentNotificationSettings": "內容通知設定", + "@contentNotificationSettings": {}, + "generalNotificationSettings": "常規通知設定", + "@generalNotificationSettings": {}, + "roomNotificationSettings": "聊天室通知設定", + "@roomNotificationSettings": {}, + "userSpecificNotificationSettings": "用戶特定通知設定", + "@userSpecificNotificationSettings": {}, + "otherNotificationSettings": "其他通知設定", + "@otherNotificationSettings": {}, + "notificationRuleContainsUserName": "包含用户名稱", + "@notificationRuleContainsUserName": {}, + "notificationRuleContainsUserNameDescription": "當訊息帶有用户名稱時通知用戶。", + "@notificationRuleContainsUserNameDescription": {}, + "notificationRuleMaster": "靜音所有通知", + "@notificationRuleMaster": {}, + "notificationRuleMasterDescription": "覆蓋所有其他規則並禁止所有通知。", + "@notificationRuleMasterDescription": {}, + "notificationRuleInviteForMe": "邀請我", + "@notificationRuleInviteForMe": {}, + "notificationRuleSuppressNoticesDescription": "隱藏來自bot等的自動化消息。", + "@notificationRuleSuppressNoticesDescription": {}, + "notificationRuleSuppressNotices": "隱藏自動化消息", + "@notificationRuleSuppressNotices": {}, + "notificationRuleMemberEvent": "成員事件", + "@notificationRuleMemberEvent": {}, + "notificationRuleMemberEventDescription": "隱藏成員事件的通知。", + "@notificationRuleMemberEventDescription": {}, + "notificationRuleIsUserMention": "用户提及", + "@notificationRuleIsUserMention": {}, + "notificationRuleInviteForMeDescription": "當用户被邀請到聊天室時,通知他們。", + "@notificationRuleInviteForMeDescription": {}, + "commandHint_roomupgrade": "升級此聊天室至指定版本", + "@commandHint_roomupgrade": {}, + "serverInformation": "伺服器資訊 :", + "@serverInformation": {}, + "name": "名稱", + "@name": {}, + "website": "網站", + "@website": {}, + "compress": "壓縮", + "@compress": {}, + "newChatRequest": "📩 新的聊天邀請", + "@newChatRequest": {}, + "enterNewChat": "進入新聊天室", + "@enterNewChat": {}, + "version": "版本", + "@version": {}, + "unableToJoinChat": "無法加入聊天室。對話可能以被其他方結束。", + "@unableToJoinChat": {}, + "appWantsToUseForLogin": "使用「{server} 」伺服器登入", + "@appWantsToUseForLogin": { + "type": "String", + "placeholders": { + "server": { + "type": "String" + } + } + }, + "italicText": "斜體", + "@italicText": {}, + "boldText": "粗體", + "@boldText": {}, + "strikeThrough": "刪除線", + "@strikeThrough": {}, + "pleaseFillOut": "請填充", + "@pleaseFillOut": {}, + "invalidUrl": "無效 url", + "@invalidUrl": {}, + "appWantsToUseForLoginDescription": "你特此允許該應用程式和網站分享關於你的信息。", + "@appWantsToUseForLoginDescription": {}, + "open": "打開", + "@open": {}, + "waitingForServer": "等待伺服器中...", + "@waitingForServer": {}, + "appIntroduction": "FluffyChat 讓你和你的朋友跨越工具聊天。在 https://matrix.org 了解更多或*繼續*。", + "@appIntroduction": {}, + "previous": "上一個", + "@previous": {}, + "otherPartyNotLoggedIn": "對方現未登入,未能接收訊息 !", + "@otherPartyNotLoggedIn": {}, + "supportPage": "幫助頁面", + "@supportPage": {}, + "addLink": "插入連結", + "@addLink": {}, + "notificationRuleContainsDisplayName": "包含顯示名稱", + "@notificationRuleContainsDisplayName": {}, + "notificationRuleRoomnotif": "聊天室通知", + "@notificationRuleRoomnotif": {}, + "notificationRuleIsRoomMentionDescription": "當有聊天室提及時通知用户。", + "@notificationRuleIsRoomMentionDescription": {}, + "notificationRuleRoomOneToOneDescription": "在一對一聊天室中通知用户收到訊息。", + "@notificationRuleRoomOneToOneDescription": {}, + "notificationRuleServerAcl": "隱藏伺服器 ACL 事件", + "@notificationRuleServerAcl": {}, + "notificationRuleContainsDisplayNameDescription": "當訊息包含用户的顯示名稱時通知用户。", + "@notificationRuleContainsDisplayNameDescription": {}, + "notificationRuleIsRoomMention": "聊天室提及", + "@notificationRuleIsRoomMention": {}, + "notificationRuleRoomnotifDescription": "當訊息包含 \"@room\" 時通知用户。", + "@notificationRuleRoomnotifDescription": {}, + "notificationRuleTombstone": "墓碑", + "@notificationRuleTombstone": {}, + "notificationRuleCallDescription": "通知用户有來電。", + "@notificationRuleCallDescription": {}, + "notificationRuleEncryptedRoomOneToOne": "一對一加密聊天室", + "@notificationRuleEncryptedRoomOneToOne": {}, + "notificationRuleEncryptedRoomOneToOneDescription": "通知用户一對一加密聊天室的訊息。", + "@notificationRuleEncryptedRoomOneToOneDescription": {}, + "notificationRuleRoomOneToOne": "一對一聊天室", + "@notificationRuleRoomOneToOne": {}, + "notificationRuleMessage": "訊息", + "@notificationRuleMessage": {}, + "notificationRuleServerAclDescription": "隱藏伺服器 ACL 事件的通知。", + "@notificationRuleServerAclDescription": {}, + "notificationRuleMessageDescription": "通知用户一般訊息。", + "@notificationRuleMessageDescription": {}, + "notificationRuleEncrypted": "已加密", + "@notificationRuleEncrypted": {}, + "notificationRuleEncryptedDescription": "在已加密房間內通知用户訊息。", + "@notificationRuleEncryptedDescription": {}, + "notificationRuleJitsi": "Jitsi", + "@notificationRuleJitsi": {}, + "notificationRuleJitsiDescription": "通知用户 Jitsi 小部件事件。", + "@notificationRuleJitsiDescription": {}, + "unknownPushRule": "未知推送規則 '{rule}'", + "@unknownPushRule": { + "type": "String", + "placeholders": { + "rule": { + "type": "String" + } + } + }, + "more": "更多", + "@more": {}, + "deletePushRuleCanNotBeUndone": "刪除此通知設定的操作無法復原。", + "@deletePushRuleCanNotBeUndone": {}, + "shareKeysWith": "與哪些設備共享金鑰…", + "@shareKeysWith": {}, + "shareKeysWithDescription": "選擇應該信任的裝置,並允許它們在加密聊天中讀取您的訊息?", + "@shareKeysWithDescription": {}, + "allDevices": "所有裝置", + "@allDevices": {}, + "crossVerifiedDevices": "經交叉驗證的裝置", + "@crossVerifiedDevices": {}, + "crossVerifiedDevicesIfEnabled": "交叉驗證裝置(如啟用)", + "@crossVerifiedDevicesIfEnabled": {}, + "setCustomPermissionLevel": "設置自定義權限等級", + "@setCustomPermissionLevel": {}, + "setPermissionsLevelDescription": "請在下方選擇預先定義的角色,或輸入在 0 到 100 之間的自訂權限等級。", + "@setPermissionsLevelDescription": {}, + "recordAVideo": "錄製影像", + "@recordAVideo": {}, + "takeAPhoto": "拍攝照片", + "@takeAPhoto": {}, + "optionalMessage": "(可選)訊息...", + "@optionalMessage": {}, + "notSupportedOnThisDevice": "此裝置不受支援", + "@notSupportedOnThisDevice": {}, + "ignoreUser": "忽略用户", + "@ignoreUser": {}, + "normalUser": "正常用户", + "@normalUser": {}, + "notificationRuleTombstoneDescription": "通知用户有關房間解散的訊息。", + "@notificationRuleTombstoneDescription": {}, + "notificationRuleReaction": "心情回應", + "@notificationRuleReaction": {}, + "notificationRuleReactionDescription": "關閉心情回應通知。", + "@notificationRuleReactionDescription": {}, + "notificationRuleRoomServerAcl": "聊天室伺服器 ACL", + "@notificationRuleRoomServerAcl": {}, + "notificationRuleRoomServerAclDescription": "關閉聊天室伺服器存取控制清單 (ACL) 的通知。", + "@notificationRuleRoomServerAclDescription": {}, + "notificationRuleSuppressEdits": "隱藏編輯", + "@notificationRuleSuppressEdits": {}, + "notificationRuleSuppressEditsDescription": "隱藏已編輯訊息通知。", + "@notificationRuleSuppressEditsDescription": {}, + "notificationRuleCall": "來電", + "@notificationRuleCall": {}, + "verifiedDevicesOnly": "僅限已驗證的裝置", + "@verifiedDevicesOnly": {}, + "approve": "核准", + "@approve": {}, + "youHaveKnocked": "您已請求加入", + "@youHaveKnocked": {}, + "pleaseWaitUntilInvited": "直到聊天室裡有人邀請您前,請等候。", + "@pleaseWaitUntilInvited": {}, + "notificationRuleIsUserMentionDescription": "被@時通知他們。", + "@notificationRuleIsUserMentionDescription": {}, + "countInvited": "已邀請{count}位", + "@countInvited": { + "type": "String", + "placeholders": { + "count": { + "type": "int" + } + } } - }, - "more": "更多", - "@more": {}, - "deletePushRuleCanNotBeUndone": "刪除此通知設定的操作無法復原。", - "@deletePushRuleCanNotBeUndone": {}, - "shareKeysWith": "與哪些設備共享金鑰…", - "@shareKeysWith": {}, - "shareKeysWithDescription": "選擇應該信任的裝置,並允許它們在加密聊天中讀取您的訊息?", - "@shareKeysWithDescription": {}, - "allDevices": "所有裝置", - "@allDevices": {}, - "crossVerifiedDevices": "經交叉驗證的裝置", - "@crossVerifiedDevices": {}, - "crossVerifiedDevicesIfEnabled": "交叉驗證裝置(如啟用)", - "@crossVerifiedDevicesIfEnabled": {}, - "setCustomPermissionLevel": "設置自定義權限等級", - "@setCustomPermissionLevel": {}, - "setPermissionsLevelDescription": "請在下方選擇預先定義的角色,或輸入在 0 到 100 之間的自訂權限等級。", - "@setPermissionsLevelDescription": {}, - "recordAVideo": "錄製影像", - "@recordAVideo": {}, - "takeAPhoto": "拍攝照片", - "@takeAPhoto": {}, - "optionalMessage": "(可選)訊息...", - "@optionalMessage": {}, - "notSupportedOnThisDevice": "此裝置不受支援", - "@notSupportedOnThisDevice": {}, - "ignoreUser": "忽略用户", - "@ignoreUser": {}, - "normalUser": "正常用户", - "@normalUser": {}, - "notificationRuleTombstoneDescription": "通知用户有關房間解散的訊息。", - "@notificationRuleTombstoneDescription": {}, - "notificationRuleReaction": "心情回應", - "@notificationRuleReaction": {}, - "notificationRuleReactionDescription": "關閉心情回應通知。", - "@notificationRuleReactionDescription": {}, - "notificationRuleRoomServerAcl": "聊天室伺服器 ACL", - "@notificationRuleRoomServerAcl": {}, - "notificationRuleRoomServerAclDescription": "關閉聊天室伺服器存取控制清單 (ACL) 的通知。", - "@notificationRuleRoomServerAclDescription": {}, - "notificationRuleSuppressEdits": "隱藏編輯", - "@notificationRuleSuppressEdits": {}, - "notificationRuleSuppressEditsDescription": "隱藏已編輯訊息通知。", - "@notificationRuleSuppressEditsDescription": {}, - "notificationRuleCall": "來電", - "@notificationRuleCall": {}, - "verifiedDevicesOnly": "僅限已驗證的裝置", - "@verifiedDevicesOnly": {}, - "approve": "核准", - "@approve": {}, - "youHaveKnocked": "您已請求加入", - "@youHaveKnocked": {}, - "pleaseWaitUntilInvited": "直到聊天室裡有人邀請您前,請等候。", - "@pleaseWaitUntilInvited": {}, - "notificationRuleIsUserMentionDescription": "被@時通知他們。", - "@notificationRuleIsUserMentionDescription": {} } diff --git a/lib/pages/chat/chat_app_bar_title.dart b/lib/pages/chat/chat_app_bar_title.dart index 906adb5c1..f56091333 100644 --- a/lib/pages/chat/chat_app_bar_title.dart +++ b/lib/pages/chat/chat_app_bar_title.dart @@ -78,10 +78,10 @@ class ChatAppBarTitle extends StatelessWidget { builder: (context, presence) { final lastActiveTimestamp = presence?.lastActiveTimestamp; - final style = Theme.of(context) - .listTileTheme - .subtitleTextStyle - ?.copyWith(fontSize: 12); + final style = TextStyle( + fontSize: 12, + color: Theme.of(context).colorScheme.outline, + ); if (presence?.currentlyActive == true) { return Text( L10n.of(context).currentlyActive, diff --git a/lib/pages/chat_list/chat_list.dart b/lib/pages/chat_list/chat_list.dart index 9aa98047a..7d64f13d1 100644 --- a/lib/pages/chat_list/chat_list.dart +++ b/lib/pages/chat_list/chat_list.dart @@ -15,7 +15,6 @@ import 'package:receive_sharing_intent/receive_sharing_intent.dart'; import 'package:fluffychat/config/app_config.dart'; import 'package:fluffychat/l10n/l10n.dart'; import 'package:fluffychat/pages/chat_list/chat_list_view.dart'; -import 'package:fluffychat/utils/error_reporter.dart'; import 'package:fluffychat/utils/localized_exception_extension.dart'; import 'package:fluffychat/utils/matrix_sdk_extensions/matrix_locals.dart'; import 'package:fluffychat/utils/platform_infos.dart'; @@ -421,8 +420,6 @@ class ChatListController extends State _checkTorBrowser(); - ErrorReporter(context).consumeTemporaryErrorLogFile(); - super.initState(); } diff --git a/lib/utils/error_reporter.dart b/lib/utils/error_reporter.dart index a688ed003..9f3e7e86f 100644 --- a/lib/utils/error_reporter.dart +++ b/lib/utils/error_reporter.dart @@ -1,13 +1,9 @@ -import 'dart:io'; - import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_highlighter/flutter_highlighter.dart'; import 'package:flutter_highlighter/themes/shades-of-purple.dart'; import 'package:matrix/matrix.dart'; -import 'package:path/path.dart' as path; -import 'package:path_provider/path_provider.dart'; import 'package:url_launcher/url_launcher.dart'; import 'package:fluffychat/config/app_config.dart'; @@ -28,31 +24,6 @@ class ErrorReporter { "HandshakeException", }; - Future _getTemporaryErrorLogFile() async { - final tempDir = await getTemporaryDirectory(); - return File(path.join(tempDir.path, 'error_log.txt')); - } - - Future writeToTemporaryErrorLogFile( - Object error, [ - StackTrace? stackTrace, - ]) async { - if (ingoredTypes.contains(error.runtimeType.toString())) return; - final file = await _getTemporaryErrorLogFile(); - if (await file.exists()) await file.delete(); - await file.writeAsString( - '[${DateTime.now().toIso8601String()}] $message - $error\n$stackTrace', - ); - } - - Future consumeTemporaryErrorLogFile() async { - final file = await _getTemporaryErrorLogFile(); - if (!(await file.exists())) return; - final content = await file.readAsString(); - _onErrorCallback(content); - await file.delete(); - } - void onErrorCallback(Object error, [StackTrace? stackTrace]) { if (ingoredTypes.contains(error.runtimeType.toString())) return; Logs().e(message ?? 'Error caught', error, stackTrace); diff --git a/lib/utils/push_helper.dart b/lib/utils/push_helper.dart index e5601fa70..39f6bd90f 100644 --- a/lib/utils/push_helper.dart +++ b/lib/utils/push_helper.dart @@ -14,7 +14,6 @@ import 'package:fluffychat/config/app_config.dart'; import 'package:fluffychat/l10n/l10n.dart'; import 'package:fluffychat/utils/client_download_content_extension.dart'; import 'package:fluffychat/utils/client_manager.dart'; -import 'package:fluffychat/utils/error_reporter.dart'; import 'package:fluffychat/utils/matrix_sdk_extensions/matrix_locals.dart'; import 'package:fluffychat/utils/platform_infos.dart'; @@ -38,9 +37,6 @@ Future pushHelper( } catch (e, s) { Logs().e('Push Helper has crashed! Writing into temporary file', e, s); - const ErrorReporter(null, 'Push Helper has crashed!') - .writeToTemporaryErrorLogFile(e, s); - l10n ??= await lookupL10n(const Locale('en')); flutterLocalNotificationsPlugin.show( notification.roomId?.hashCode ?? 0, diff --git a/macos/Podfile.lock b/macos/Podfile.lock index 5f5b862f4..3a24f63e3 100644 --- a/macos/Podfile.lock +++ b/macos/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - app_links (1.0.0): + - app_links (6.4.1): - FlutterMacOS - audio_session (0.0.1): - FlutterMacOS @@ -25,9 +25,9 @@ PODS: - FlutterMacOS - flutter_web_auth_2 (3.0.0): - FlutterMacOS - - flutter_webrtc (0.12.6): + - flutter_webrtc (1.0.0): - FlutterMacOS - - WebRTC-SDK (= 125.6422.06) + - WebRTC-SDK (= 137.7151.02) - FlutterMacOS (1.0.0) - geolocator_apple (1.2.0): - Flutter @@ -37,8 +37,6 @@ PODS: - FlutterMacOS - package_info_plus (0.0.1): - FlutterMacOS - - pasteboard (0.0.1): - - FlutterMacOS - path_provider_foundation (0.0.1): - Flutter - FlutterMacOS @@ -49,17 +47,14 @@ PODS: - shared_preferences_foundation (0.0.1): - Flutter - FlutterMacOS - - sqflite_darwin (0.0.4): - - Flutter - - FlutterMacOS - - SQLCipher (4.8.0): - - SQLCipher/standard (= 4.8.0) - - SQLCipher/common (4.8.0) - - SQLCipher/standard (4.8.0): + - SQLCipher (4.10.0): + - SQLCipher/standard (= 4.10.0) + - SQLCipher/common (4.10.0) + - SQLCipher/standard (4.10.0): - SQLCipher/common - sqlcipher_flutter_libs (0.0.1): - FlutterMacOS - - SQLCipher (~> 4.8.0) + - SQLCipher (~> 4.10.0) - url_launcher_macos (0.0.1): - FlutterMacOS - video_compress (0.3.0): @@ -69,7 +64,7 @@ PODS: - FlutterMacOS - wakelock_plus (0.0.1): - FlutterMacOS - - WebRTC-SDK (125.6422.06) + - WebRTC-SDK (137.7151.02) - window_to_front (0.0.1): - FlutterMacOS @@ -92,12 +87,10 @@ DEPENDENCIES: - geolocator_apple (from `Flutter/ephemeral/.symlinks/plugins/geolocator_apple/darwin`) - just_audio (from `Flutter/ephemeral/.symlinks/plugins/just_audio/darwin`) - package_info_plus (from `Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos`) - - pasteboard (from `Flutter/ephemeral/.symlinks/plugins/pasteboard/macos`) - path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`) - record_macos (from `Flutter/ephemeral/.symlinks/plugins/record_macos/macos`) - share_plus (from `Flutter/ephemeral/.symlinks/plugins/share_plus/macos`) - shared_preferences_foundation (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin`) - - sqflite_darwin (from `Flutter/ephemeral/.symlinks/plugins/sqflite_darwin/darwin`) - sqlcipher_flutter_libs (from `Flutter/ephemeral/.symlinks/plugins/sqlcipher_flutter_libs/macos`) - url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`) - video_compress (from `Flutter/ephemeral/.symlinks/plugins/video_compress/macos`) @@ -147,8 +140,6 @@ EXTERNAL SOURCES: :path: Flutter/ephemeral/.symlinks/plugins/just_audio/darwin package_info_plus: :path: Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos - pasteboard: - :path: Flutter/ephemeral/.symlinks/plugins/pasteboard/macos path_provider_foundation: :path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin record_macos: @@ -157,8 +148,6 @@ EXTERNAL SOURCES: :path: Flutter/ephemeral/.symlinks/plugins/share_plus/macos shared_preferences_foundation: :path: Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin - sqflite_darwin: - :path: Flutter/ephemeral/.symlinks/plugins/sqflite_darwin/darwin sqlcipher_flutter_libs: :path: Flutter/ephemeral/.symlinks/plugins/sqlcipher_flutter_libs/macos url_launcher_macos: @@ -173,37 +162,35 @@ EXTERNAL SOURCES: :path: Flutter/ephemeral/.symlinks/plugins/window_to_front/macos SPEC CHECKSUMS: - app_links: afe860c55c7ef176cea7fb630a2b7d7736de591d + app_links: 05a6ec2341985eb05e9f97dc63f5837c39895c3f audio_session: eaca2512cf2b39212d724f35d11f46180ad3a33e - desktop_drop: e0b672a7d84c0a6cbc378595e82cdb15f2970a43 - device_info_plus: a56e6e74dbbd2bb92f2da12c64ddd4f67a749041 - dynamic_color: b820c000cc68df65e7ba7ff177cb98404ce56651 + desktop_drop: 248706031734554504f939cab1ad4c5fbc9c9c72 + device_info_plus: 4fb280989f669696856f8b129e4a5e3cd6c48f76 + dynamic_color: cb7c2a300ee67ed3bd96c3e852df3af0300bf610 emoji_picker_flutter: 51ca408e289d84d1e460016b2a28721ec754fcf7 file_picker: 7584aae6fa07a041af2b36a2655122d42f578c1a file_selector_macos: 6280b52b459ae6c590af5d78fc35c7267a3c4b31 - flutter_local_notifications: 7e5a17a1dbc00d83dc10d43c2c4c05f2ceed233c + flutter_local_notifications: 4bf37a31afde695b56091b4ae3e4d9c7a7e6cda0 flutter_new_badger: 6fe9bf7e42793a164032c21f164c0ad9985cd0f2 flutter_secure_storage_macos: 7f45e30f838cf2659862a4e4e3ee1c347c2b3b54 flutter_vodozemac: fd2ea9cb3e2a37beaac883a369811fbfe042fc53 flutter_web_auth_2: 62b08da29f15a20fa63f144234622a1488d45b65 - flutter_webrtc: 377dbcebdde6fed0fc40de87bcaaa2bffcec9a88 + flutter_webrtc: 0d70bd8782c19bde286dc52f766eebbea26de201 FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24 geolocator_apple: ab36aa0e8b7d7a2d7639b3b4e48308394e8cef5e just_audio: 4e391f57b79cad2b0674030a00453ca5ce817eed package_info_plus: f0052d280d17aa382b932f399edf32507174e870 - pasteboard: 278d8100149f940fb795d6b3a74f0720c890ecb7 path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564 record_macos: 295d70bd5fb47145df78df7b80e6697cd18403c0 share_plus: 510bf0af1a42cd602274b4629920c9649c52f4cc shared_preferences_foundation: 9e1978ff2562383bd5676f64ec4e9aa8fa06a6f7 - sqflite_darwin: 20b2a3a3b70e43edae938624ce550a3cbf66a3d0 - SQLCipher: 908f846ca79d74be4e1776b3b86c6ad9e6c0b04f - sqlcipher_flutter_libs: 72569ed27a3f8d3502571be15fdc3e28f8f8570c + SQLCipher: eb79c64049cb002b4e9fcb30edb7979bf4706dfc + sqlcipher_flutter_libs: 01ead34db27ae5e49987cae46c8a34199eb22cfe url_launcher_macos: 0fba8ddabfc33ce0a9afe7c5fef5aab3d8d2d673 video_compress: 752b161da855df2492dd1a8fa899743cc8fe9534 video_player_avfoundation: 2cef49524dd1f16c5300b9cd6efd9611ce03639b wakelock_plus: 21ddc249ac4b8d018838dbdabd65c5976c308497 - WebRTC-SDK: 79942c006ea64f6fb48d7da8a4786dfc820bc1db + WebRTC-SDK: d20de357dcbf7c9696b124b39f3ff62125107e4b window_to_front: 9e76fd432e36700a197dac86a0011e49c89abe0a PODFILE CHECKSUM: d0975b16fbdecb73b109d8fbc88aa77ffe4c7a8d diff --git a/pubspec.lock b/pubspec.lock index 48798ef51..3e400e7ca 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -1091,26 +1091,26 @@ packages: dependency: transitive description: name: leak_tracker - sha256: "8dcda04c3fc16c14f48a7bb586d4be1f0d1572731b6d81d51772ef47c02081e0" + sha256: "6bb818ecbdffe216e81182c2f0714a2e62b593f4a4f13098713ff1685dfb6ab0" url: "https://pub.dev" source: hosted - version: "11.0.1" + version: "10.0.9" leak_tracker_flutter_testing: dependency: transitive description: name: leak_tracker_flutter_testing - sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1" + sha256: f8b613e7e6a13ec79cfdc0e97638fddb3ab848452eff057653abd3edba760573 url: "https://pub.dev" source: hosted - version: "3.0.10" + version: "3.0.9" leak_tracker_testing: dependency: transitive description: name: leak_tracker_testing - sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1" + sha256: "6ba465d5d76e67ddf503e1161d1f4a6bc42306f9d66ca1e8f079a47290fb06d3" url: "https://pub.dev" source: hosted - version: "3.0.2" + version: "3.0.1" license_checker: dependency: "direct dev" description: @@ -1920,26 +1920,26 @@ packages: dependency: transitive description: name: test - sha256: "65e29d831719be0591f7b3b1a32a3cda258ec98c58c7b25f7b84241bc31215bb" + sha256: "301b213cd241ca982e9ba50266bd3f5bd1ea33f1455554c5abb85d1be0e2d87e" url: "https://pub.dev" source: hosted - version: "1.26.2" + version: "1.25.15" test_api: dependency: transitive description: name: test_api - sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00" + sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd url: "https://pub.dev" source: hosted - version: "0.7.6" + version: "0.7.4" test_core: dependency: transitive description: name: test_core - sha256: "80bf5a02b60af04b09e14f6fe68b921aad119493e26e490deaca5993fef1b05a" + sha256: "84d17c3486c8dfdbe5e12a50c8ae176d15e2a771b96909a9442b40173649ccaa" url: "https://pub.dev" source: hosted - version: "0.6.11" + version: "0.6.8" timezone: dependency: transitive description: @@ -2128,10 +2128,10 @@ packages: dependency: transitive description: name: vector_math - sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b + sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803" url: "https://pub.dev" source: hosted - version: "2.2.0" + version: "2.1.4" video_compress: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index e2307c1d4..e1a288092 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: fluffychat description: Chat with your friends. publish_to: none # On version bump also increase the build number for F-Droid -version: 2.1.0+3542 +version: 2.1.1+3543 environment: sdk: ">=3.0.0 <4.0.0" diff --git a/scripts/add-firebase-messaging.sh b/scripts/add-firebase-messaging.sh index af7ce0259..bed5d0751 100755 --- a/scripts/add-firebase-messaging.sh +++ b/scripts/add-firebase-messaging.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -flutter pub add fcm_shared_isolate +flutter pub add fcm_shared_isolate:0.1.0 flutter pub get if [[ "$OSTYPE" == "darwin"* ]]; then diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index aaffc9d5b..f21b452d0 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,7 +1,7 @@ name: fluffychat title: FluffyChat base: core24 -version: 2.1.0 +version: 2.1.1 license: AGPL-3.0 summary: The cutest messenger in the Matrix network description: |