1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-24 20:19:10 +02:00

Compare commits

...

36 Commits

Author SHA1 Message Date
Laurent Cozic
8134390bf4 iOS 13.3.8 2025-06-09 18:15:13 +01:00
Laurent Cozic
631211b40c Android 3.3.9 2025-06-09 18:12:40 +01:00
Laurent Cozic
144ed593cc Desktop release v3.3.13 2025-06-09 18:06:38 +01:00
Henry Heino
70e7d8f820 Android: Voice typing: Fix memory leak (#12402) 2025-06-07 12:56:26 +01:00
Henry Heino
f5e751c27a iOS: Fixes #12314: Fix error shown the first time a user attempts to record (#12328) 2025-05-27 17:20:42 +01:00
Henry Heino
fa0dbddb9b iOS: Fixes #12331: Fix sharing to Joplin (#12334) 2025-05-27 17:20:24 +01:00
Henry Heino
77a07c937e MacOS: Fixes #12240: Fix printing (#12244) 2025-05-19 22:57:34 +01:00
Laurent Cozic
4d790b6ffe Desktop release v3.3.12 2025-05-04 17:57:48 +01:00
Laurent Cozic
b6d8dcee8d Merge branch 'dev' into release-3.3 2025-05-04 17:57:34 +01:00
Laurent Cozic
e5b2e22479 Chore: Fixed TS error 2025-05-04 17:57:09 +01:00
Laurent Cozic
6e98a8ac2d Desktop release v3.3.11 2025-05-04 16:52:28 +01:00
Laurent Cozic
6b60a88dcb Update translations 2025-05-04 16:52:13 +01:00
Laurent Cozic
765cde10fb Merge branch 'dev' into release-3.3 2025-05-04 16:49:41 +01:00
Henry Heino
8f97bb6ddf Desktop: Fixes #12204: Fix crash after removing "toggle tab indentation" keyboard shortcut (#12213) 2025-05-04 16:48:52 +01:00
Henry Heino
073984b9ef Windows: Fix printing (#12219) 2025-05-04 16:48:45 +01:00
Laurent Cozic
5e5a77786c Desktop: Fixes #12222: Prevent application from hanging when multi-instance setup does not work 2025-05-04 16:48:12 +01:00
cedecode
7fa3a223b2 All: Translation: Update de_DE.po (#12221) 2025-05-03 17:55:35 -04:00
Laurent Cozic
5c965d4b95 Update translations 2025-05-03 08:48:48 +01:00
Joplin Bot
cc3da4fd09 Doc: Auto-update documentation
Auto-updated using release-website.sh
2025-05-03 01:53:45 +00:00
Mihai Vasiliu
34528d146f All: Translation: Update ro_RO.po and ro_MD.po (#12211) 2025-05-02 10:35:30 -04:00
summoner001
9c76560642 All: Translation: Update hu_HU.po (#12206) 2025-05-02 10:29:03 -04:00
Laurent Cozic
3cb621eb60 Merge branch 'release-3.3' into dev 2025-05-02 15:28:28 +01:00
Laurent Cozic
d9ba532889 Desktop release v3.3.10 2025-05-02 15:27:54 +01:00
Laurent Cozic
5aca4bc72e Desktop: Fixes #11989: Notify user when they are using the Intel app on Apple Silicon 2025-05-02 15:27:24 +01:00
Jozef Gaal
54e7499aa2 All: Translation: Update sk_SK.po (#12205) 2025-05-01 22:14:52 -04:00
Joplin Bot
941b70471f Doc: Auto-update documentation
Auto-updated using release-website.sh
2025-05-02 01:55:37 +00:00
Laurent Cozic
3f364a4a9b Plugins: Undeprecate joplin.settings.value() 2025-05-01 23:14:22 +01:00
Laurent Cozic
ae47667644 CLI v3.3.1 2025-05-01 22:19:16 +01:00
Laurent Cozic
b191b1daf7 Lock file 2025-05-01 22:18:02 +01:00
Laurent Cozic
0e3b9fd929 Releasing sub-packages 2025-05-01 22:17:30 +01:00
Laurent Cozic
5d0fa754ae Desktop release v3.3.9 2025-05-01 20:13:16 +01:00
Laurent Cozic
70d76fa00f Merge branch 'dev' into release-3.3 2025-05-01 20:08:06 +01:00
Henry Heino
d72224a6b9 Desktop: Fixes #12197: Fix inserting note links using the mouse (#12199) 2025-05-01 20:07:33 +01:00
Henry Heino
687516e695 Chore: Fix locale test (#12201) 2025-05-01 20:06:56 +01:00
Joplin Bot
3055873406 Doc: Auto-update documentation
Auto-updated using release-website.sh
2025-05-01 18:41:16 +00:00
Laurent Cozic
e58e419c1b iOS 13.3.7 2025-05-01 17:34:23 +01:00
94 changed files with 3746 additions and 2943 deletions

View File

@@ -35,7 +35,7 @@
],
"owner": "Laurent Cozic"
},
"version": "3.3.0",
"version": "3.3.1",
"bin": "./main.js",
"engines": {
"node": ">=10.0.0"

View File

@@ -75,6 +75,7 @@ export default class ElectronAppWrapper {
private ipcStartPort_ = 2658;
private ipcLogger_: Logger;
private ipcLoggerFilePath_: string;
public constructor(electronApp: App, { env, profilePath, isDebugMode, initialCallbackUrl, isEndToEndTesting }: Options) {
this.electronApp_ = electronApp;
@@ -90,8 +91,9 @@ export default class ElectronAppWrapper {
// calls, either because it hasn't been set or other issue. So we set one here specifically
// for this.
this.ipcLogger_ = new Logger();
this.ipcLoggerFilePath_ = `${profilePath}/log-cross-app-ipc.txt`;
this.ipcLogger_.addTarget(TargetType.File, {
path: `${profilePath}/log-cross-app-ipc.txt`,
path: this.ipcLoggerFilePath_,
});
}
@@ -115,6 +117,14 @@ export default class ElectronAppWrapper {
return BrowserWindow.getFocusedWindow() ?? this.win_;
}
public ipcServerStarted() {
return !!this.ipcServer_;
}
public ipcLoggerFilePath() {
return this.ipcLoggerFilePath_;
}
public windowById(joplinId: string) {
if (joplinId === defaultWindowId) {
return this.mainWindow();
@@ -582,14 +592,18 @@ export default class ElectronAppWrapper {
if (port === null) port = this.ipcStartPort_;
return await sendMessage(port, {
...message,
sourcePort: this.ipcServer_.port,
secretKey: this.ipcServer_.secretKey,
}, {
logger: this.ipcLogger_,
...options,
});
if (this.ipcServer_) {
return await sendMessage(port, {
...message,
sourcePort: this.ipcServer_.port,
secretKey: this.ipcServer_.secretKey,
}, {
logger: this.ipcLogger_,
...options,
});
} else {
return [];
}
}
public async ensureSingleInstance() {
@@ -675,32 +689,39 @@ export default class ElectronAppWrapper {
this.ipcLogger_.info('Starting server using secret key:', secretKeyFilePath);
this.ipcServer_ = await startServer(this.ipcStartPort_, secretKeyFilePath, async (message) => {
if (messageHandlers[message.action]) {
this.ipcLogger_.info('Got message:', message);
return messageHandlers[message.action](message);
}
try {
this.ipcServer_ = await startServer(this.ipcStartPort_, secretKeyFilePath, async (message) => {
if (messageHandlers[message.action]) {
this.ipcLogger_.info('Got message:', message);
return messageHandlers[message.action](message);
}
throw newHttpError(404);
}, {
logger: this.ipcLogger_,
});
throw newHttpError(404);
}, {
logger: this.ipcLogger_,
});
} catch (error) {
this.ipcLogger_.error('Could not start server:', error);
this.ipcServer_ = null;
}
// First check that no other app is running from that profile folder
const gotAppLock = await this.profileLocker_.lock();
if (gotAppLock) return false;
const message: Message = {
action: 'onSecondInstance',
data: {
senderPort: this.ipcServer_.port,
profilePath: this.profilePath_,
argv: process.argv,
},
secretKey: this.ipcServer_.secretKey,
};
if (this.ipcServer_) {
const message: Message = {
action: 'onSecondInstance',
data: {
senderPort: this.ipcServer_.port,
profilePath: this.profilePath_,
argv: process.argv,
},
secretKey: this.ipcServer_.secretKey,
};
await this.sendCrossAppIpcMessage(message);
await this.sendCrossAppIpcMessage(message);
}
this.quit();
if (this.env() === 'dev') console.warn(`Closing the application because another instance is already running, or the previous instance was force-quit within the last ${Math.round(this.profileLocker_.options.interval / Second)} seconds.`);

View File

@@ -111,8 +111,12 @@ export default class InteropServiceHelper {
// 2024-01-31: Printing with webContents.print still
// fails on Linux (even if run in the main process).
// As such, we use window.print(), which seems to work.
//
// 2025-05-03: Windows and MacOS also need the window.print() workaround.
// See https://github.com/electron/electron/pull/46937.
if (shim.isLinux()) {
const applyWorkaround = true;
if (applyWorkaround) {
await win.webContents.executeJavaScript(`
// Blocks while the print dialog is open
window.print();

View File

@@ -526,16 +526,30 @@ export class Bridge {
}
}
public async launchAltAppInstance(env: string) {
const cmd = this.appLaunchCommand(env, 'alt1');
private async launchAppInstanceById(env: string, altInstanceId: string) {
if (this.electronApp().ipcServerStarted()) {
const cmd = this.appLaunchCommand(env, altInstanceId);
await execCommand([cmd.execPath].concat(cmd.args), { detached: true });
} else {
const buttonIndex = this.showErrorMessageBox('Cannot launch another instance because IPC server could not start.', {
buttons: [
_('OK'),
_('Open log'),
],
});
await execCommand([cmd.execPath].concat(cmd.args), { detached: true });
if (buttonIndex === 1) {
void this.openItem(this.electronApp().ipcLoggerFilePath());
}
}
}
public async launchAltAppInstance(env: string) {
await this.launchAppInstanceById(env, 'alt1');
}
public async launchMainAppInstance(env: string) {
const cmd = this.appLaunchCommand(env, '');
await execCommand([cmd.execPath].concat(cmd.args), { detached: true });
await this.launchAppInstanceById(env, '');
}
public async restart() {

View File

@@ -65,22 +65,53 @@ test.describe('goToAnything', () => {
}
});
test('should be possible to show the set tags dialog from goToAnything', async ({ electronApp, mainWindow }) => {
const mainScreen = await new MainScreen(mainWindow).setup();
await mainScreen.createNewNote('Test note');
for (const activateWithClick of [true, false]) {
test(`should be possible to show the set tags dialog from goToAnything (activate with click: ${activateWithClick})`, async ({ electronApp, mainWindow }) => {
const mainScreen = await new MainScreen(mainWindow).setup();
await mainScreen.createNewNote('Test note');
const goToAnything = mainScreen.goToAnything;
await goToAnything.open(electronApp);
await goToAnything.inputLocator.fill(':setTags');
const goToAnything = mainScreen.goToAnything;
await goToAnything.open(electronApp);
await goToAnything.inputLocator.fill(':setTags');
// Should show a matching command
await expect(goToAnything.containerLocator.getByText('Tags (setTags)')).toBeAttached();
// Should show a matching command
const result = goToAnything.resultLocator('Tags (setTags)');
await expect(result).toBeAttached();
if (activateWithClick) {
await result.click();
} else {
await mainWindow.keyboard.press('Enter');
}
await goToAnything.expectToBeClosed();
await mainWindow.keyboard.press('Enter');
await goToAnything.expectToBeClosed();
// Should show the "set tags" dialog
const setTagsLabel = mainWindow.getByText('Add or remove tags:');
await expect(setTagsLabel).toBeVisible();
});
// Should show the "set tags" dialog
const setTagsLabel = mainWindow.getByText('Add or remove tags:');
await expect(setTagsLabel).toBeVisible();
});
// The note link dialog internally uses the same component as GotoAnything
test(`should be possible to attach note links (activate with click: ${activateWithClick})`, async ({ electronApp, mainWindow }) => {
const mainScreen = await new MainScreen(mainWindow).setup();
await mainScreen.createNewNote('Target note');
await mainScreen.createNewNote('Test note');
const goToAnything = mainScreen.goToAnything;
await goToAnything.openLinkToNote(electronApp);
const result = goToAnything.resultLocator('Target note');
await goToAnything.searchForWithRetry('Target not', result);
// Should show a matching command
await expect(result).toBeAttached();
if (activateWithClick) {
await result.click();
} else {
await mainWindow.keyboard.press('Enter');
}
await goToAnything.expectToBeClosed();
// Should have added the link
await expect(mainScreen.noteEditor.codeMirrorEditor).toContainText('[Target note]');
});
}
});

View File

@@ -12,6 +12,10 @@ export default class GoToAnything {
this.inputLocator = this.containerLocator.getByRole('textbox');
}
public async waitFor() {
await this.containerLocator.waitFor();
}
public async open(electronApp: ElectronApplication) {
await this.mainScreen.waitFor();
await activateMainMenuItem(electronApp, 'Goto Anything...');
@@ -19,8 +23,31 @@ export default class GoToAnything {
return this.waitFor();
}
public async waitFor() {
await this.containerLocator.waitFor();
public async openLinkToNote(electronApp: ElectronApplication) {
await this.mainScreen.waitFor();
await activateMainMenuItem(electronApp, 'Link to note...');
return this.waitFor();
}
public resultLocator(resultText: string|RegExp) {
return this.containerLocator.getByRole('option', { name: resultText });
}
public async searchForWithRetry(query: string, resultLocator: Locator) {
// If note indexing hasn't finished, it's sometimes necessary to search multiple times.
// This expect.poll retries the search if it initially fails.
await expect.poll(async () => {
await this.inputLocator.clear();
await this.inputLocator.fill(query);
try {
await expect(resultLocator).toBeVisible({ timeout: 1000 });
} catch (error) {
// Return, rather than throw, the error -- expect.poll doesn't retry
// if the callback throws.
return error;
}
return true;
}, { timeout: 10_000 }).toBe(true);
}
public async expectToBeClosed() {

View File

@@ -31,6 +31,7 @@ const React = require('react');
const nodeSqlite = require('sqlite3');
const initLib = require('@joplin/lib/initLib').default;
const pdfJs = require('pdfjs-dist');
const { isAppleSilicon } = require('is-apple-silicon');
require('@sentry/electron/renderer');
@@ -110,6 +111,7 @@ const main = async () => {
electronBridge: bridge(),
nodeSqlite,
pdfJs,
isAppleSilicon,
});
const logger = new Logger();

View File

@@ -1,6 +1,6 @@
{
"name": "@joplin/app-desktop",
"version": "3.3.8",
"version": "3.3.13",
"description": "Joplin for Desktop",
"main": "main.js",
"private": true,
@@ -180,6 +180,7 @@
"fs-extra": "11.2.0",
"highlight.js": "11.10.0",
"immer": "9.0.21",
"is-apple-silicon": "1.1.2",
"keytar": "7.9.0",
"mark.js": "8.11.1",
"md5": "2.3.0",

View File

@@ -572,16 +572,8 @@ class DialogComponent extends React.PureComponent<Props, State> {
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
private listItem_onClick(event: any) {
const itemId = event.currentTarget.getAttribute('data-id');
const parentId = event.currentTarget.getAttribute('data-parent-id');
const itemType = Number(event.currentTarget.getAttribute('data-type'));
void this.gotoItem({
id: itemId,
parent_id: parentId,
type: itemType,
commandArgs: this.state.commandArgs,
});
const targetResultId = event.currentTarget.getAttribute('id');
void this.gotoItem(this.selectedItem(targetResultId));
}
public renderItem(item: GotoAnythingSearchResult, index: number) {
@@ -642,8 +634,8 @@ class DialogComponent extends React.PureComponent<Props, State> {
return -1;
}
public selectedItem() {
const index = this.selectedItemIndex();
public selectedItem(itemId: string = undefined) {
const index = this.selectedItemIndex(undefined, itemId);
if (index < 0) return null;
return { ...this.state.results[index], commandArgs: this.state.commandArgs };
}

View File

@@ -86,8 +86,8 @@ android {
applicationId "net.cozic.joplin"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 2097771
versionName "3.3.8"
versionCode 2097772
versionName "3.3.9"
ndk {
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}

View File

@@ -75,7 +75,7 @@ extern "C"
JNIEXPORT void JNICALL
Java_net_cozic_joplin_audio_NativeWhisperLib_00024Companion_free(JNIEnv *env, jobject thiz,
jlong pointer) {
std::free(reinterpret_cast<WhisperSession *>(pointer));
delete reinterpret_cast<WhisperSession *>(pointer);
}
extern "C"

View File

@@ -14,7 +14,7 @@ import { Text } from 'react-native-paper';
import { AndroidAudioEncoder, AndroidOutputFormat, IOSAudioQuality, IOSOutputFormat, RecordingOptions } from 'expo-av/build/Audio';
import time from '@joplin/lib/time';
import { toFileExtension } from '@joplin/lib/mime-utils';
import { formatMsToDurationCompat } from '@joplin/utils/time';
import { formatMsToDurationCompat, msleep } from '@joplin/utils/time';
const logger = Logger.create('AudioRecording');
@@ -119,6 +119,11 @@ const useAudioRecorder = (onFileSaved: OnFileSavedCallback, onDismiss: ()=> void
if (!response.granted) {
throw new Error(_('Missing permission to record audio.'));
}
// Work around "This experience is currently in the background, so the audio session could not be activated"
// See https://github.com/expo/expo/issues/21782
// May be resolved by migrating to expo-audio.
await msleep(500);
}
await Audio.setAudioModeAsync({

View File

@@ -535,13 +535,13 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Joplin/Joplin.entitlements;
CURRENT_PROJECT_VERSION = 139;
CURRENT_PROJECT_VERSION = 141;
DEVELOPMENT_TEAM = A9BXAFS6CT;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Joplin/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 13.3.6;
MARKETING_VERSION = 13.3.8;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
@@ -567,12 +567,12 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Joplin/Joplin.entitlements;
CURRENT_PROJECT_VERSION = 139;
CURRENT_PROJECT_VERSION = 141;
DEVELOPMENT_TEAM = A9BXAFS6CT;
INFOPLIST_FILE = Joplin/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 13.3.6;
MARKETING_VERSION = 13.3.8;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
@@ -758,14 +758,14 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 139;
CURRENT_PROJECT_VERSION = 141;
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = A9BXAFS6CT;
GCC_C_LANGUAGE_STANDARD = gnu11;
INFOPLIST_FILE = ShareExtension/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
MARKETING_VERSION = 13.3.6;
MARKETING_VERSION = 13.3.8;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
OTHER_LDFLAGS = (
@@ -797,14 +797,14 @@
CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements;
CODE_SIGN_STYLE = Automatic;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 139;
CURRENT_PROJECT_VERSION = 141;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = A9BXAFS6CT;
GCC_C_LANGUAGE_STANDARD = gnu11;
INFOPLIST_FILE = ShareExtension/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.4;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
MARKETING_VERSION = 13.3.6;
MARKETING_VERSION = 13.3.8;
MTL_FAST_MATH = YES;
OTHER_LDFLAGS = (
"$(inherited)",

View File

@@ -1059,7 +1059,7 @@ PODS:
- Yoga
- react-native-rsa-native (2.0.5):
- React
- react-native-saf-x (3.3.0):
- react-native-saf-x (3.3.1):
- React-Core
- react-native-safe-area-context (4.10.8):
- React-Core
@@ -1711,7 +1711,7 @@ SPEC CHECKSUMS:
react-native-netinfo: 28c2462c85067fe653615f6f595673bdca93a287
react-native-quick-crypto: 38fde7e5ddfb667b54536c25e6a6ac6d404633d3
react-native-rsa-native: a7931cdda1f73a8576a46d7f431378c5550f0c38
react-native-saf-x: 318d0cdb38f4618bd7ef5840d4f5c12e097dfbe7
react-native-saf-x: d60328b397989ebec2a2ad7f531a9732e824f603
react-native-safe-area-context: b72c4611af2e86d80a59ac76279043d8f75f454c
react-native-sqlite-storage: 0c84826214baaa498796c7e46a5ccc9a82e114ed
react-native-version-info: f0b04e16111c4016749235ff6d9a757039189141

View File

@@ -132,10 +132,18 @@
UIResponder* responder = self;
while (responder != nil) {
if ([responder respondsToSelector:selector]) {
[responder performSelector:selector withObject:[NSURL URLWithString:ShareExtensionShareURL]];
UIApplication *app = (UIApplication*) responder;
NSURL *url = [NSURL URLWithString:ShareExtensionShareURL];
[app openURL:url options:@{} completionHandler:^(BOOL success) {
if (success) {
NSLog(@"Opened URL successfully!");
} else {
NSLog(@"Failed to open URL.");
}
}];
break;
}
responder = responder.nextResponder;
}
}

View File

@@ -1,7 +1,7 @@
{
"name": "@joplin/fork-htmlparser2",
"description": "Fast & forgiving HTML/XML/RSS parser",
"version": "4.1.57",
"version": "4.1.58",
"author": "Felix Boehm <me@feedic.com>",
"publishConfig": {
"access": "public"

View File

@@ -2,7 +2,7 @@
"name": "@joplin/fork-sax",
"description": "An evented streaming XML parser in JavaScript",
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"version": "1.2.61",
"version": "1.2.62",
"main": "lib/sax.js",
"publishConfig": {
"access": "public"

View File

@@ -1,6 +1,6 @@
{
"name": "@joplin/fork-uslug",
"version": "2.0.0",
"version": "2.0.1",
"description": "A permissive slug generator that works with unicode.",
"author": "Jeremy Selier <jerem.selier@gmail.com>",
"publishConfig": {

View File

@@ -1,6 +1,6 @@
{
"name": "@joplin/htmlpack",
"version": "3.3.0",
"version": "3.3.1",
"description": "Pack an HTML file and all its linked resources into a single HTML file",
"main": "dist/index.js",
"types": "src/index.ts",
@@ -15,7 +15,7 @@
"license": "MIT",
"dependencies": {
"@adobe/css-tools": "4.4.1",
"@joplin/fork-htmlparser2": "^4.1.57",
"@joplin/fork-htmlparser2": "^4.1.58",
"datauri": "4.1.0",
"fs-extra": "11.2.0",
"html-entities": "1.4.0"

View File

@@ -25,8 +25,8 @@ describe('locale', () => {
it('should translate plurals - fr_FR', () => {
setLocale('fr_FR');
expect(_n('Copy Shareable Link', 'Copy Shareable Links', 1)).toBe('Copier lien partageable');
expect(_n('Copy Shareable Link', 'Copy Shareable Links', 2)).toBe('Copier liens partageables');
expect(_n('Copy Shareable Link', 'Copy Shareable Links', 1)).toBe('Copier le lien partageable');
expect(_n('Copy Shareable Link', 'Copy Shareable Links', 2)).toBe('Copier les liens partageables');
});
it('should translate plurals - pl_PL', () => {

View File

@@ -2455,6 +2455,9 @@
"Open it": [
""
],
"Open log": [
""
],
"Open PDF viewer": [
""
],
@@ -3179,6 +3182,9 @@
"Sidebar": [
""
],
"Sign up to Joplin Cloud": [
""
],
"Size": [
""
],

View File

@@ -2443,6 +2443,9 @@
"Open it": [
""
],
"Open log": [
""
],
"Open PDF viewer": [
""
],
@@ -3167,6 +3170,9 @@
"Sidebar": [
""
],
"Sign up to Joplin Cloud": [
""
],
"Size": [
""
],

View File

@@ -2,17 +2,37 @@
"\"%s\" is missing the required \"%s\" property.": [
"A(z) „%s” hiányzik; a szükséges tulajdonság a következő: „%s”."
],
"%d day": [
"%d nap",
"%d nap"
],
"%d GB": [
"%d GB"
],
"%d GB storage space": [
"%d GB-os tárterület"
],
"%d hour": [
"%d óra",
"%d óra"
],
"%d MB": [
"%d MB"
],
"%d MB per note or attachment": [
"%d MB jegyzetenként vagy csatolmányonként"
"%d MB jegyzetenként vagy mellékletenként"
],
"%d minute": [
"%d perc",
"%d perc"
],
"%d note matches this pattern. Delete it?": [
"%d jegyzet megfelel ennek a mintának. Biztosan törli?",
"%d jegyzet megfelel ennek a mintának. Biztosan törli ezeket?"
],
"%d note will be permanently deleted. Continue?": [
"%d jegyzet véglegesen törölve lesz. Folytatja?",
"%d jegyzet véglegesen törölve lesz. Folytatja?"
],
"%s": [
"%s"
@@ -65,6 +85,10 @@
"%s: %d": [
"%s: %d"
],
"%s: %d note": [
"%s: %d jegyzet",
"%s: %d jegyzet"
],
"%s: %d/%d": [
"%s: %d/%d"
],
@@ -117,13 +141,13 @@
"(Ezt a promptot kikapcsolhatja a beállításokban)"
],
"- Camera: to allow taking a picture and attaching it to a note.": [
"– Kamera: lehetővé teszi a fénykép készítését és a jegyzethez való csatolását."
"– Kamera: lehetővé teszi a képkészítést és a képek mellékelését jegyzetekhez."
],
"- Location: to allow attaching geo-location information to a note.": [
"– Helyszín: lehetővé teszi a földrajzi helymeghatározási információk csatolását a jegyzethez."
"– Helyszín: lehetővé teszi a földrajzi helymeghatározási információk mellékelését a jegyzetekhez."
],
"- Storage: to allow attaching files to notes and to enable filesystem synchronisation.": [
"– Tárhely: lehetővé teszi a fájlok jegyzetekhez való csatolását és a fájlrendszer szinkronizálását."
"– Tárhely: lehetővé teszi a fájlrendszer szinkronizálását és a fájlok mellékelését a jegyzetekhez."
],
"<tag-command> can be \"add\", \"remove\", \"list\", or \"notetags\" to assign or remove [tag] from [note], to list notes associated with [tag], or to list tags associated with [note]. The command `tag list` can be used to list all the tags (use -l for long option).": [
"A <tag-command> lehet „add” (hozzáadás), „remove” (eltávolítás), „list” (listázás) vagy „notetags” (jegyzetcímkék) a [tag] [note] jegyzethez történő hozzárendeléséhez vagy eltávolításához, a [tag] címkéhez társított jegyzetek listázásához, illetve a [note] jegyzethez kapcsolódó címkék listázásához. A `tag list` parancs az összes címke listázására használható (a -l opcióval részletesebb megjelenítés érhető el)."
@@ -150,13 +174,13 @@
"A Joplin névjegye"
],
"accelerator": [
"gyorsbillentyű"
"hívóbetű"
],
"Accelerator \"%s\" is not valid.": [
"A(z) „%s” gyorsbillentyű nem érvényes."
"A(z) „%s” hívóbetű nem érvényes."
],
"Accelerator \"%s\" is used for \"%s\" and \"%s\" commands. This may lead to unexpected behaviour.": [
"A(z) „%s” gyorsbillentyű a(z) „%s” és „%s” parancsokhoz van hozzárendelve. Ez váratlan viselkedést okozhat."
"A(z) „%s” hívóbetű a(z) „%s” és a(z) „%s” parancsokhoz van hozzárendelve. Ez váratlan viselkedést okozhat."
],
"Accept": [
"Elfogadás"
@@ -276,7 +300,7 @@
"Többértelmű jegyzetfüzet: „%s”. Használjon rövid jegyzetfüzet-azonosítót – nyomja meg a „ti” billentyűkombinációt a rövid azonosító megtekintéséhez"
],
"An autosaved drawing was found. Attach a copy of it to the note?": [
"Automatikusan mentett rajz megtalálva. Csatolja a másolatát a jegyzethez?"
"Automatikusan mentett rajz megtalálva. Mellékeli a másolatát a jegyzethez?"
],
"An error occurred: %s": [
"Hiba történt: %s"
@@ -318,37 +342,37 @@
"Jelenleg a Joplin Web egyszerre csak egy lapban nyitható meg. Zárja be a Joplin másik példányát."
],
"Attach": [
"Csatolás"
"Mellékelés"
],
"Attach file": [
"Fájl csatolása"
"Fájl mellékelése"
],
"Attach photo": [
"Fotó csatolása"
"Kép mellékelése"
],
"Attach...": [
"Csatolás…"
"Mellékelés…"
],
"Attaches the given file to the note.": [
"Csatolja a megadott fájlt a jegyzethez."
"Mellékeli a megadott fájlt a jegyzethez."
],
"attachment": [
"csatolmány"
"melléklet"
],
"Attachment": [
"Csatolmány"
"Melléklet"
],
"Attachment conflict: \"%s\"": [
"Csatolmányütközés: „%s”"
"Mellékletütközés: „%s”"
],
"Attachment download behaviour": [
"A csatolmányok letöltésének működése"
"A mellékletek letöltésének működése"
],
"Attachments": [
"Csatolmányok"
"Mellékletek"
],
"Attachments that could not be downloaded": [
"A csatolmányokat nem lehet letölteni"
"A mellékleteket nem lehet letölteni"
],
"Attention: If you change this location, make sure you copy all your content to it before syncing, otherwise all files will be removed! See the FAQ for more details: %s": [
"Figyelem: Ha módosítja ezt a helyet, győződjön meg arról, hogy az összes tartalmát átmásolta oda szinkronizálás előtt, különben minden fájl törölve lesz! További részletekért lásd a GYIK-et: %s"
@@ -516,7 +540,7 @@
"Az eszköztáron megjelenítendő elemek ellenőrzése"
],
"Check for updates...": [
"Frissítés ellenőrzése…"
"Frissítések ellenőrzése…"
],
"Check synchronisation configuration": [
"A szinkronizálási beállítások ellenőrzése"
@@ -552,7 +576,7 @@
"Kattintson a(z) „%s” gombra a jegyzet visszaállításához. A jegyzet a(z) „%s” nevű jegyzetfüzetbe lesz másolva. A jegyzet jelenlegi verziója nem lesz lecserélve vagy módosítva."
],
"Click \"start\" to attach a new voice memo to the note.": [
"Kattintson a „Rögzítés indítása” gombra, ha új hangjegyzetet szeretne csatolni a jegyzethez."
"Kattintson a „Rögzítés indítása” gombra, ha új hangjegyzetet szeretne mellékelni a jegyzethez."
],
"Click to add tags...": [
"Kattintson a címke hozzáadáshoz…"
@@ -660,7 +684,7 @@
"Beállítások"
],
"Configures the size of scrollbars used in the app.": [
"Az alkalmazásban használt görgetősávok méretének személyreszabása."
"Az alkalmazásban használt görgetősávok méretének személyre szabása."
],
"Confirm password cannot be empty": [
"A jelszó megerősítése nem lehet üres"
@@ -678,10 +702,10 @@
"Ütközések"
],
"Conflicts (attachments)": [
"Ütközések (csatolmányok)"
"Ütközések (mellékletek)"
],
"Connect to Joplin Cloud": [
"Kapcsolódva a következőhöz: Joplin Cloud"
"Kapcsolódás a Joplin Cloudhoz"
],
"Consolidated billing": [
"Összevont számlázás"
@@ -821,16 +845,16 @@
"Létrehozva: %s"
],
"Creates a new note with an attachment of type %s": [
"Új jegyzet létrehozása egy %s típusú csatolmánnyal"
"Új jegyzet létrehozása egy %s típusú melléklettel"
],
"Creates a new note.": [
"Egy új jegyzet létrehozása."
"Új jegyzet létrehozása."
],
"Creates a new notebook.": [
"Egy új jegyzetfüzet létrehozása."
"Új jegyzetfüzet létrehozása."
],
"Creates a new to-do.": [
"Egy új teendő létrehozása."
"Új teendő létrehozása."
],
"Creating new note...": [
"Új jegyzet létrehozása…"
@@ -914,7 +938,7 @@
"Törlés"
],
"Delete attachment \"%s\"?": [
"Törli a(z) „%s” csatolmányt?"
"Törli a(z) „%s” mellékletet?"
],
"Delete expired sessions": [
"Lejárt munkamenetek törlése"
@@ -998,7 +1022,7 @@
"Könyvtár"
],
"Directory to synchronise with (absolute path)": [
"Könyvtár amivel szinkronizál (abszolút elérési út)"
"Szinkronizálási könyvtár (abszolút elérési út)"
],
"Disable": [
"Letiltás"
@@ -1079,7 +1103,7 @@
"Letöltés"
],
"Download and install the relevant extension for your browser:": [
"Töltse le és telepítse a böngészőjéhez megfelelő bővítményt:"
"Töltse le és telepítse a böngészőjéhez megfelelő kiegészítőt:"
],
"Download it now": [
"Letöltés most"
@@ -1232,7 +1256,7 @@
"Engedélyezi a biometrikus hitelesítést?"
],
"Enable deflist syntax": [
"Deflist szintaxis engedélyezése"
"Deflist-szintaxis engedélyezése"
],
"Enable encryption": [
"Titkosítás engedélyezése"
@@ -1259,7 +1283,7 @@
"Mermaid-diagram támogatásának engedélyezése"
],
"Enable multimarkdown table extension": [
"Multimarkdown-táblázatbővítmény engedélyezése"
"Multimarkdown-táblázatkiegészítő engedélyezése"
],
"Enable note history": [
"Jegyzet előéletének engedélyezése"
@@ -1286,7 +1310,7 @@
"Helyesírás-ellenőrzés engedélyezése a szövegszerkesztőben"
],
"Enable table of contents extension": [
"Tartalomjegyzék-bővítmény engedélyezése"
"Tartalomjegyzék-kiegészítő engedélyezése"
],
"Enable the Markdown toolbar": [
"Markdown-eszköztár engedélyezése"
@@ -1307,7 +1331,7 @@
"Engedélyezve"
],
"Enables Markdown list continuation, auto-closing HTML tags, and other markup autocompletions.": [
"Engedélyezi a Markdown lista folytatását, az automatikus HTML-címkék bezárását és egyéb automatikus jelölés-kiegészítéseket."
"Engedélyezi a Markdown lista folytatását, az automatikus HTML-címkék bezárását és egyéb automatikus jelölő-kiegészítéseket."
],
"Enables Markdown pattern replacement in the Rich Text Editor. For example, when enabled, typing **bold** creates bold text.": [
"Engedélyezi a Markdown-minták cseréjét a formázott szöveges szerkesztőben. Ha például engedélyezve van, a **félkövér** beírása félkövér szöveget hoz létre."
@@ -1484,7 +1508,7 @@
"Rögzítés befejezése"
],
"Firefox Extension": [
"Firefox-bővítmény"
"Firefox kiegészítő"
],
"Fix search index": [
"Keresési index javítása"
@@ -1698,13 +1722,13 @@
"Adatok importálása a Joplin alkalmazásba."
],
"In \"Manual\" mode, attachments are downloaded only when you click on them. In \"Auto\", they are downloaded when you open the note. In \"Always\", all the attachments are downloaded whether you open the note or not.": [
"„Kézi” módban a csatolmányok csak akkor töltődnek le, ha rájuk kattint. „Automatikus” módban a csatolmányok akkor töltődnek le, amikor megnyitja a jegyzetet. „Mindig” módban az összes csatolmány le lesz töltve, függetlenül attól, hogy megnyitja-e a jegyzetet, vagy sem."
"„Kézi” módban a mellékletek csak akkor töltődnek le, ha rájuk kattint. „Automatikus” módban a mellékletek akkor töltődnek le, amikor megnyitja a jegyzetet. „Mindig” módban az összes melléklet le lesz töltve, függetlenül attól, hogy megnyitja-e a jegyzetet, vagy sem."
],
"In any command, a note or notebook can be referred to by title or ID, or using the shortcuts `$n` or `$b` for, respectively, the currently selected note or notebook. `$c` can be used to refer to the currently selected item.": [
"Bármely parancsban egy jegyzet vagy jegyzetfüzet hivatkozható cím vagy azonosító alapján, illetve a jelenleg kijelölt jegyzet vagy jegyzetfüzet esetén a `$n` vagy `$b` parancs használatával. A jelenlegi kijelölt elemre a `$c` paranccsal hivatkozhat."
],
"In order to associate a geo-location with the note, the app needs your permission to access your location.\n\nYou may turn off this option at any time in the Configuration screen.": [
"Ahhoz, hogy a jegyzethez földrajzi helyet társíthasson, engedélyt kell adnia az alkalmazásnak az Ön helyadataihoz való hozzáféréshez.\n\nEzt az engedélyt bármikor kikapcsolhatja a Beállítások menüben."
"Ahhoz, hogy a jegyzethez földrajzi helyet társíthasson, engedélyt kell adnia az alkalmazásnak a helyadatokhoz való hozzáféréshez.\n\nEzt az engedélyt bármikor kikapcsolhatja a Beállítások menüben."
],
"In order to do so, your entire data set will have to be encrypted and synchronised, so it is best to run it overnight.\n\nTo start, please follow these instructions:\n\n1. Synchronise all your devices.\n2. Click \"%s\".\n3. Let it run to completion. While it runs, avoid changing any note on your other devices, to avoid conflicts.\n4. Once sync is done on this device, sync all your other devices and let it run to completion.\n\nImportant: you only need to run this ONCE on one device.": [
"Ehhez az összes adatának titkosítása és szinkronizálása szükséges, ezért a folyamatot érdemes éjszakára időzíteni.\n\nA kezdéshez kövesse az alábbi lépéseket:\n\n1. Szinkronizálja az összes eszközét. \n2. Kattintson a(z) „%s” gombra. \n3. Várja meg, amíg a folyamat befejeződik. Amíg fut, kerülje a jegyzetek módosítását más eszközein, hogy elkerülje az ütközéseket. \n4. Miután a szinkronizálás ezen az eszközön befejeződött, szinkronizálja a többi eszközt, és várja meg, amíg ott is befejeződik. \n\nFontos: ezt a folyamatot ELÉG egyszer lefuttatni egyetlen eszközön."
@@ -1842,7 +1866,7 @@
"Joplin exportálási fájl"
],
"Joplin failed to decrypt these items multiple times, possibly because they are corrupted or too large. These items will remain on the device but Joplin will no longer attempt to decrypt them.": [
"A Joplin többször nem tudta visszafejteni ezeket az elemeket, valószínűleg azért, mert sérültek vagy túl nagyok. Ezek az elemek az eszközön maradnak, de a Joplin többé nem próbálja visszafejteni őket."
"A Joplinnak többszöri próbálkozás után sem sikerült visszafejteni ezeket az elemeket, valószínűleg azért, mert sérültek vagy túl nagyok. Ezek az elemek az eszközön maradnak, de a Joplin többé nem próbálja visszafejteni őket."
],
"Joplin Forum": [
"Joplin fórum"
@@ -2035,7 +2059,7 @@
"Markdown"
],
"Markdown + Front Matter": [
"Markdown + Front Matter"
"Markdown előtétadatokal (Front Matter)"
],
"Markdown editor": [
"Markdown-szerkesztő"
@@ -2047,7 +2071,7 @@
"Egy teendő befejezetlennek jelölése."
],
"Markup": [
"Formátum"
"Jelölő"
],
"Master Key %s": [
"%s mesterkulcs"
@@ -2071,7 +2095,7 @@
"Maximális elemméret"
],
"Max note or attachment size": [
"Maximális jegyzet- vagy csatolmányméret"
"Maximális jegyzet- vagy mellékletméret"
],
"Max Total Size": [
"Maximális összméret"
@@ -2118,6 +2142,10 @@
"Most plugins have source code available for review on the plugin website.": [
"A legtöbb bővítmény forráskódja elérhető átnézésre a bővítmény weboldalán."
],
"Move %d note to notebook \"%s\"?": [
"Áthelyezi a(z) %d jegyzetet a(z) „%s” jegyzetfüzetbe?",
"Áthelyezi a(z) %d jegyzetet a(z) „%s” jegyzetfüzetbe?"
],
"Move down": [
"Mozgatás lefelé"
],
@@ -2155,7 +2183,7 @@
"Soha ne méretezze át"
],
"New attachment": [
"Új csatolmány"
"Új melléklet"
],
"New drawing": [
"Új rajz"
@@ -2179,7 +2207,7 @@
"Új „%s” nevű jegyzetfüzet jön létre, és a(z) „%s” fájl ebbe lesz importálva"
],
"New photo": [
"Új fotó"
"Új kép"
],
"New profile": [
"Új profil"
@@ -2290,10 +2318,10 @@
"Jegyzetterület növekedési tényezője"
],
"Note attachments": [
"Jegyzetcsatolmányok"
"Jegyzetmellékletek"
],
"Note attachments...": [
"Jegyzetcsatolmányok…"
"Jegyzetmellékletek…"
],
"Note body": [
"Jegyzettörzs"
@@ -2514,6 +2542,9 @@
"PDF File": [
"PDF-fájl"
],
"Per user. Minimum of 2 users.": [
"Felhasználónként. Minimum 2 felhasználó."
],
"Permanently delete note": [
"Jegyzet végleges törlése"
],
@@ -2523,6 +2554,10 @@
"Permanently delete notebook \"%s\"?\n\nAll notes and sub-notebooks within this notebook will be permanently deleted.": [
"Véglegesen törli a(z) „%s” nevű jegyzetfüzetet?\n\nAz ebben a jegyzetfüzetben található összes jegyzet és aljegyzetfüzet véglegesen törlődik."
],
"Permanently delete this note?": [
"Véglegesen törli ezt a jegyzetet?",
"Véglegesen törli ezt a(z) %d jegyzetet?"
],
"Permanently deletes the notebook, skipping the trash.": [
"A jegyzetfüzet véglegesen törlődik, a kuka kihagyásával."
],
@@ -2569,7 +2604,7 @@
"Frissítse a Joplint a(z) %s vagy újabb verzióra a bővítmény használatához."
],
"Please wait for all attachments to be downloaded and decrypted. You may also switch to %s to edit the note.": [
"Várjon, amíg minden csatolmány letöltődik és visszafejtődik. A jegyzet szerkesztéséhez átválthat a(z) %s nézetre is."
"Várjon, amíg minden melléklet letöltődik és visszafejtődik. A jegyzet szerkesztéséhez átválthat a(z) %s nézetre is."
],
"Please wait...": [
"Kis türelmet…"
@@ -2593,7 +2628,7 @@
"Bővítményeszközök"
],
"Plugin WebView debugging": [
"WebView-hibakeresés bővítmény"
"WebView hibakeresési bővítmény"
],
"Plugins": [
"Bővítmények"
@@ -2656,7 +2691,7 @@
"Elsőbbségi támogatás"
],
"Privacy Policy": [
"Adatvédelmi Irányelvek"
"Adatvédelmi irányelvek"
],
"Pro": [
"Pro"
@@ -2674,7 +2709,7 @@
"Feldolgozás"
],
"Processing photo...": [
"Fotó feldolgozása…"
"Képfeldolgozás…"
],
"Profile": [
"Profil"
@@ -2704,7 +2739,7 @@
"Proxy-webcím"
],
"Public-private key pair:": [
"Nyilvános-privát kulcspár:"
"Nyilvános privát kulcspár:"
],
"Publish note...": [
"Jegyzet közzététele…"
@@ -2926,7 +2961,7 @@
"S3 hozzáférési kulcs"
],
"S3 bucket": [
"S3 bucket"
"S3 tároló"
],
"S3 region": [
"S3 régió"
@@ -2959,7 +2994,7 @@
"Módosítások mentése?"
],
"Save geo-location with notes": [
"A földrajzi helyszín mentése jegyzetekkel"
"A földrajzi helyszín mentése a jegyzetekhez"
],
"Scanned code": [
"Beolvasott QR-kód"
@@ -3061,7 +3096,7 @@
"Megosztás"
],
"Share a copy of all notes in a file format that can be imported by Joplin on a computer.": [
"Ossza meg az összes jegyzet másolatát olyan fájlformátumban, amelyet a Joplin egy számítógépen importálni tud."
"Az összes jegyzet másolatának megosztása olyan fájlformátumban, amelyet egy számítógépen importálni lehet a Joplinba."
],
"Share a notebook with others": [
"Jegyzetfüzet megosztása másokkal"
@@ -3181,7 +3216,7 @@
"Néhány elemet nem sikerült szinkronizálni. Kattintson a további információkért."
],
"Some items could not be synchronised. Please try to synchronise them first.": [
"Néhány elemet nem sikerült szinkronizálni. Először próbálja szinkronizálni őket."
"Néhány elemet nem sikerült szinkronizálni. Először próbálja meg szinkronizálni őket."
],
"Sort \"%s\" in ascending order": [
"A(z) „%s” rendezése növekvő sorrendben"
@@ -3199,7 +3234,7 @@
"A kijelölt sorok rendezése"
],
"Sorts the item by <field> (eg. title, updated_time, created_time).": [
"Elem rendezése a(z) <field> minta szerint (például: title, updated_time, created_time)"
"Elem rendezése a(z) <field> szerint (például: title (cím), updated_time (frissítés dátuma), created_time (létrehozás dátuma))"
],
"Source": [
"Forrás"
@@ -3280,7 +3315,7 @@
"Áthúzott"
],
"strong text": [
"félkövér „strong” szöveg"
"félkövér"
],
"Submit": [
"Beküldés"
@@ -3385,7 +3420,7 @@
"Szinkronizálás"
],
"Synchronise only over WiFi connection": [
"Szinkronizálás csak Wi-Fi-kapcsolaton keresztül"
"Szinkronizálás csak Wi-Fi-n"
],
"Synchronises with remote storage.": [
"Szinkronizálás távoli tárolóval."
@@ -3415,7 +3450,7 @@
"Címkék"
],
"Take photo": [
"Fotó készítése"
"Kép készítése"
],
"Task \"%s\" failed with error: %s": [
"A(z) „%s” feladat sikertelen volt a következő hibával: %s"
@@ -3460,7 +3495,7 @@
"Az alkalmazást újra kell indítani a módosítások érvényesítéséhez."
],
"The attachments will no longer be watched when you switch to a different note.": [
"A csatolmányok figyelése megszűnik, ha átvált egy másik jegyzetre."
"A mellékletek figyelése megszűnik, ha átvált egy másik jegyzetre."
],
"The command \"%s\" is only available in GUI mode": [
"A(z) „%s” parancs csak GUI módban érhető el"
@@ -3484,11 +3519,11 @@
"A faktor tulajdonság határozza meg, hogy az elem a többi elemhez képest hogyan fog nőni vagy zsugorodni, hogy elférjen a tárolójában rendelkezésre álló helyhez képest. Így egy 2 faktorú elem kétszer annyi helyet foglal el, mint egy 1 faktorú elem. A módosítások megtekintéséhez indítsa újra az alkalmazást."
],
"The following attachment matches your search query:": [
"A következő csatolmány megfelel az Ön keresési lekérdezésének:",
"A következő csatolmányok megfelelnek az Ön keresési lekérdezésének:"
"A következő melléklet megfelel a keresési lekérdezésnek:",
"A következő mellékletek megfelelnek a keresési lekérdezésnek:"
],
"The following attachments are being watched for changes:": [
"A következő csatolmányok módosítása figyelve van:"
"A következő mellékletek módosítása figyelve van:"
],
"The following keys use an out-dated encryption algorithm and it is recommended to upgrade them. The upgraded key will still be able to decrypt and encrypt your data as usual.": [
"A következő kulcsok elavult titkosítási algoritmust használnak, ezért ajánlott frissíteni őket. A frissített kulcs továbbra is képes lesz a szokásos módon visszafejteni és titkosítani az adatokat."
@@ -3500,13 +3535,13 @@
"A Joplin csapata ellenőrizte ezt a bővítményt, és megfelel a biztonsági és teljesítménybeli szabványainknak."
],
"The keys with these IDs are used to encrypt some of your items, however the application does not currently have access to them. It is likely they will eventually be downloaded via synchronisation.": [
"Az ezen azonosítókkal ellátott kulcsok az Ön egyes elemeinek titkosítására szolgálnak, azonban az alkalmazás jelenleg nem fér hozzá ezekhez. Valószínű, hogy a szinkronizáláson keresztül végül le lesznek töltve."
"Az ezekkel az azonosítókkal rendelkező kulcsok néhány elem titkosítására szolgálnak, azonban az alkalmazásnak jelenleg nincs hozzáférése ezekhez. Valószínűleg idővel letöltésre kerülnek egy szinkronizációt követően."
],
"The master key has been upgraded successfully!": [
"A mesterkulcs frissítése sikeresen megtörtént!"
],
"The master keys with these IDs are used to encrypt some of your items, however the application does not currently have access to them. It is likely they will eventually be downloaded via synchronisation.": [
"Az ezekhez az azonosítókhoz tartozó mesterkulcsok az Ön egyes elemeinek titkosítására szolgálnak, azonban az alkalmazás jelenleg nem fér hozzá ezekhez. Valószínű, hogy a szinkronizáláson keresztül végül le lesznek töltve."
"Az ezekkel az azonosítókkal rendelkező mesterkulcsok néhány elem titkosítására szolgálnak, azonban az alkalmazásnak jelenleg nincs hozzáférése ezekhez. Valószínűleg idővel letöltésre kerülnek egy szinkronizációt követően."
],
"The note \"%s\" has been successfully restored to the notebook \"%s\".": [
"A(z) „%s” jegyzetet sikeresen vissza lettek állítva a(z) „%s” jegyzetfüzetbe."
@@ -3552,7 +3587,7 @@
"A webes kliens nem támogatja a titkosított, megosztott jegyzetfüzetek elfogadását. A megosztás elfogadása előtt váltson át asztali vagy mobilalkalmazásra.\n\nHiba: „%s”"
],
"The Web Clipper needs your authorisation to access your data.": [
"A Web Clippernek szüksége van az Ön engedélyére ahhoz, hogy hozzáférjen az Ön adataihoz."
"A Web Clippernek engedélyre van szüksége, hogy hozzáférjen az adatokhoz."
],
"The web clipper service cannot be enabled in this instance of Joplin.": [
"A Web Clipper-szolgáltatás nem engedélyezhető a Joplin ezen példányában."
@@ -3585,10 +3620,10 @@
"Nincsenek exportálandó adatok."
],
"There was a [conflict](%s) on the attachment below.\n\n%s": [
"Az alábbi csatolmányon [conflict](%s) keletkezett.\n\n%s"
"Az alábbi mellékleten [ütközés](%s) keletkezett.\n\n%s"
],
"There was an error downloading this attachment:": [
"Hiba történt a csatolmány letöltésekor:"
"Hiba történt a melléklet letöltésekor:"
],
"These items failed to sync, but have been marked as \"ignored\". They won't cause the sync warning to appear, but still aren't synced. To unignore, click \"retry\".": [
"Ezeket az elemeket nem sikerült szinkronizálni, de „figyelmen kívül hagyottként” lettek megjelölve. Ezek nem okozzák a szinkronizálási figyelmeztetés megjelenését, de mégsem szinkronizálódnak. A figyelmen kívül hagyás megszüntetéséhez kattintson az „újbóli próbálkozás” gombra."
@@ -3603,7 +3638,7 @@
"Ez lehetővé teszi egy másik felhasználó számára, hogy megosszon Önnel egy jegyzetfüzetet, és mindketten együtt dolgozhassanak rajta. Nem teszi azonban lehetővé, hogy Ön osszon meg egy jegyzetfüzetet valaki mással, kivéve, ha Ön rendelkezik a(z) „%s” funkcióval."
],
"This attachment does not have OCR data (Status: %s)": [
"Ez a csatolmány nem tartalmaz OCR-adatokat (Állapot: %s)"
"Ez a melléklet nem tartalmaz OCR-adatokat (Állapot: %s)"
],
"This attachment is not downloaded or not decrypted yet": [
"Ez a melléklet még nincs letöltve vagy visszafejtve"
@@ -3615,7 +3650,7 @@
"Ez a rajz elmentetlen módosításokat tartalmazhat."
],
"This is an advanced tool to show the attachments that are linked to your notes. Please be careful when deleting one of them as they cannot be restored afterwards.": [
"Ez egy fejlett eszköz a jegyzetekhez kapcsolódó csatolmányok megjelenítésére. Legyen óvatos, amikor törli valamelyiket, mert utólag nem lehet visszaállítani."
"Ez egy fejlett eszköz a jegyzetekhez kapcsolódó mellékletek megjelenítésére. Legyen óvatos, amikor törli valamelyiket, mert utólag nem lehet visszaállítani."
],
"This note could not be deleted: %s": [
"A következő jegyzetfüzet nem törölhető: %s",
@@ -3735,7 +3770,7 @@
"Szerkesztő elrendezésének váltása"
],
"Toggle editor plugin": [
"Szerkesztő bővítményének váltása"
"Szerkesztőbővítmény váltása"
],
"Toggle editor tab key navigation": [
"A szerkesztőfül billentyűs navigációjára váltás"
@@ -3888,7 +3923,7 @@
"Frissítve"
],
"updated date": [
"frissítési dátum"
"frissítés dátuma"
],
"Updated local items: %d.": [
"Frissített helyi elemek: %d."
@@ -4050,7 +4085,7 @@
"Új teendő létrehozásakor:"
],
"When enabled, the application will scan your attachments and extract the text from it. This will allow you to search for text in these attachments.": [
"Amikor engedélyezve van, az alkalmazás beolvassa a csatolmányokat, és kivonja belőlük a szöveget. Ez lehetővé teszi a szöveg keresését ezekben a csatolmányokban."
"Amikor engedélyezve van, az alkalmazás beolvassa a mellékleteket, és kivonatolja belőlük a szöveget. Ez lehetővé teszi a szöveg keresését ezekben a mellékletekben."
],
"Whisper": [
"Whisper"
@@ -4074,19 +4109,19 @@
"Igen"
],
"You are about to attach a large image (%dx%d pixels). Would you like to resize it down to %d pixels before attaching it?": [
"Nagy méretű képet (%dx%d pixel) készül csatolni. Szeretné átméretezni a képet %d pixelre, mielőtt csatolná?"
"Nagy méretű képet (%dx%d pixel) készül mellékelni. Szeretné átméretezni a képet %d pixelre, mielőtt mellékelné?"
],
"You are logged in into Joplin Cloud, you can leave this screen now.": [
"Ön bejelentkezett a Joplin Cloudba, most már elhagyhatja ezt a képernyőt."
"Sikeresen bejelentkezett a Joplin Cloudba, most már elhagyhatja ezt a képernyőt."
],
"You are running the Intel version of Joplin on an Apple Silicon processor. Download the Apple Silicon one for better performance.": [
"Ön a Joplin Intel-verzióját futtatja Apple Silicon processzoron. Töltse le az Apple Silicon változatot a jobb teljesítmény érdekében."
"A Joplin Intel-verzióját futtatja Apple Silicon processzoron. Töltse le az Apple Silicon változatot a jobb teljesítmény érdekében."
],
"You currently have no notebooks.": [
"Önnek jelenleg nincsenek jegyzetfüzetei."
"Jelenleg nincsenek jegyzetfüzetek."
],
"You do not have any installed plugin.": [
"Önnek jelenleg nincsenek telepített bővítményei."
"Jelenleg nincsenek telepített bővítmények."
],
"You may also type `status` for more information.": [
"További információkért beírhatja a `status` (állapot) parancsot is."
@@ -4095,10 +4130,10 @@
"Az alábbi eszközzel újratitkosíthatja adatait, például ha tudja, hogy néhány jegyzete elavult titkosítási módszerrel van titkosítva."
],
"You were unable to connect to Joplin Cloud. Please check your credentials and try again. Error:": [
"Nem tudott csatlakozni a Joplin Cloudhoz. Ellenőrizze a hitelesítő adatokat, és próbálja újra. Hiba:"
"Nem lehetett kapcsolódni a Joplin Cloudhoz. Ellenőrizze a hitelesítőadatokat, és próbálja újra. Hiba:"
],
"Your account doesn't have access to this feature": [
"Az Ön fiókja nem rendelkezik hozzáféréssel ehhez a funkcióhoz"
"A fiókja nem rendelkezik hozzáférési engedéllyel ehhez a funkcióhoz"
],
"Your choice: ": [
"Az Ön választása: "
@@ -4110,7 +4145,7 @@
"A Joplin Cloud hitelesítő adatai érvénytelenek, jelentkezzen be."
],
"Your password is needed to decrypt some of your data.": [
"Az Ön jelszava szükséges az adatainak visszafejtéséhez."
"Jelszó szükséges az adatok visszafejtéséhez."
],
"Your password is needed to decrypt some of your data. Type `:e2ee decrypt` to set it.": [
"A jelszóra az adatok egy részének visszafejtéséhez van szükség. A beállításához írja be az `:e2ee decrypt` parancsot."

View File

@@ -59,17 +59,17 @@ stats['en_US'] = {"percentDone":100,"pluralForms":"nplurals=2; plural=(n != 1);"
stats['es_ES'] = {"percentDone":94,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['eo'] = {"percentDone":18,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['fi_FI'] = {"percentDone":71,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['fr_FR'] = {"percentDone":100,"pluralForms":"nplurals=2; plural=(n > 1);"};
stats['fr_FR'] = {"percentDone":99,"pluralForms":"nplurals=2; plural=(n > 1);"};
stats['gl_ES'] = {"percentDone":21,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['id_ID'] = {"percentDone":99,"pluralForms":"nplurals=1; plural=0;"};
stats['it_IT'] = {"percentDone":87,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['it_IT'] = {"percentDone":86,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['hu_HU'] = {"percentDone":99,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['nl_BE'] = {"percentDone":94,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['nl_NL'] = {"percentDone":73,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['fa'] = {"percentDone":86,"pluralForms":"nplurals=2; plural=(n==0 || n==1);"};
stats['pl_PL'] = {"percentDone":81,"pluralForms":"nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);"};
stats['pt_BR'] = {"percentDone":86,"pluralForms":"nplurals=2; plural=(n > 1);"};
stats['pt_PT'] = {"percentDone":87,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['pt_PT'] = {"percentDone":86,"pluralForms":"nplurals=2; plural=(n != 1);"};
stats['ro_MD'] = {"percentDone":99,"pluralForms":"nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && n%100<=19) ? 1 : 2);"};
stats['ro_RO'] = {"percentDone":99,"pluralForms":"nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && n%100<=19) ? 1 : 2);"};
stats['sl_SI'] = {"percentDone":57,"pluralForms":"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"};

View File

@@ -2,18 +2,43 @@
"\"%s\" is missing the required \"%s\" property.": [
"„%s” nu are proprietatea necesară „%s”."
],
"%d day": [
"%d zi",
"%d zile",
"%d de zile"
],
"%d GB": [
"%d GO"
],
"%d GB storage space": [
"spațiu de stocare %d GO"
],
"%d hour": [
"%d oră",
"%d ore",
"%d de ore"
],
"%d MB": [
"%d MO"
],
"%d MB per note or attachment": [
"%d MO per notiță sau atașament"
],
"%d minute": [
"%d minut",
"%d minute",
"%d de minute"
],
"%d note matches this pattern. Delete it?": [
"%d notiță se potrivește acestui șablon. Dorești să o ștergi?",
"%d notițe se potrivesc acestui șablon. Dorești să le ștergi?",
"%d de notițe se potrivesc acestui șablon. Dorești să le ștergi?"
],
"%d note will be permanently deleted. Continue?": [
"%d notiță va fi ștearsă permanent. Continui?",
"%d notițe vor fi șterse permanent. Continui?",
"%d de notițe vor fi șterse permanent. Continui?"
],
"%s": [
"%s"
],
@@ -65,6 +90,11 @@
"%s: %d": [
"%s: %d"
],
"%s: %d note": [
"%s: %d notiță",
"%s: %d notițe",
"%s: %d de notițe"
],
"%s: %d/%d": [
"%s: %d/%d"
],
@@ -114,7 +144,7 @@
"(wysiwyg: %s)"
],
"(You may disable this prompt in the options)": [
"(Puteți dezactiva această solicitare în opțiuni)"
"(Poți dezactiva această solicitare în opțiuni)"
],
"- Camera: to allow taking a picture and attaching it to a note.": [
"- Aparat foto: pentru a permite realizarea unei fotografii și atașarea acesteia la o notă."
@@ -165,7 +195,7 @@
"Invitații acceptate"
],
"Access denied: Please check your username and password": [
"Acces refuzat: Te rog să verifici numele de utilizator și parola"
"Acces refuzat: Te rog să îți verifici numele de utilizator și parola"
],
"Access denied: Please re-enter your password and/or username": [
"Acces refuzat: Te rog să reîntroduci parola și/sau numele de utilizator"
@@ -351,7 +381,7 @@
"Acest fișier nu a putut fi descărcat: %s"
],
"Attention: If you change this location, make sure you copy all your content to it before syncing, otherwise all files will be removed! See the FAQ for more details: %s": [
"Atenție: dacă modifici această locație, asigurați-vă că copii tot conținutul pe ea înainte de sincronizare, altfel toate fișierele vor fi eliminate! Consultați FAQ pentru mai multe detalii: %s"
"Atenție: dacă modifici această locație, asigură-te că copiezi tot conținutul în ea înainte de sincronizare, altfel toate fișierele vor fi șterse! Consultă FAQ pentru mai multe detalii: %s"
],
"Authentication was not completed (did not receive an authentication token).": [
"Autentificarea nu a fost finalizată (nu a primit un token de autentificare)."
@@ -399,7 +429,7 @@
"Aldin"
],
"Browse all plugins": [
"Navigați toate plugin-urile"
"Răsfoiește toate plugin-urile"
],
"Browse...": [
"Răsfoiește..."
@@ -414,7 +444,7 @@
"după %s"
],
"by word": [
"după cuvînt"
"cuvînt întreg"
],
"Camera": [
"Aparat foto"
@@ -519,7 +549,7 @@
"Verifică pentru actualizări..."
],
"Check synchronisation configuration": [
"Verificați configurația de sincronizare"
"Verifică configurația de sincronizare"
],
"Checkbox": [
"Căsuțe de selecție"
@@ -570,7 +600,7 @@
"Închide dialogul"
],
"Close dropdown": [
"Închideți meniul derulant"
"Închide meniul derulant"
],
"Close side menu": [
"Închide meniul lateral"
@@ -615,7 +645,7 @@
"Alarmele următoare"
],
"Comma-separated list of paths to directories to load the certificates from, or path to individual cert files. For example: /my/cert_dir, /other/custom.pem. Note that if you make changes to the TLS settings, you must save your changes before clicking on \"Check synchronisation configuration\".": [
"Listă de căi de acces la directoare din care se încarcă certificatele sau calea de acces la fișierele de certificate individuale. De exemplu: /my/cert_dir, /other/custom.pem. Rețineți că, dacă efectuați modificări la setările TLS, trebuie să salvi modificările înainte de a face clic pe “Check synchronisation configuration” (Verificați configurația de sincronizare)."
"Listă separată de virgule de căi de acces la dosare din care se încarcă certificatele sau calea de acces la fișierele de certificate individuale. De exemplu: /my/cert_dir, /other/custom.pem. Reține că, dacă faci modificări la setările TLS, trebuie să salvezi modificările înainte de a face clic pe Verifică configurația de sincronizare."
],
"command": [
"command"
@@ -722,7 +752,7 @@
"Copiază link-ul extern"
],
"Copy image": [
"Copie imagine"
"Copiază imaginea"
],
"Copy Link Address": [
"Copiază adresa link-ului"
@@ -737,9 +767,9 @@
"Copiază locația în clipboard"
],
"Copy Shareable Link": [
"Copiază linkul care se poate partaja",
"Distribuie",
"Distribuie"
"Copiază legătura partajabilă",
"Copiază legăturile partajabile",
"Copiază legăturile partajabile"
],
"Copy to clipboard": [
"Copiază locația în clipboard"
@@ -754,7 +784,7 @@
"Nu s-a putut autoriza aplicația:\n\n%s\n\nTe rog să încerci din nou."
],
"Could not connect to Joplin Server. Please check the Synchronisation options in the config screen. Full error was:\n\n%s": [
"Nu s-a putut conecta la serverul Joplin. Te rog să verifici opțiunile de sincronizare din ecranul de configurare. Eroarea completă a fost:\n\n%s"
"Nu s-a putut conecta la serverul Joplin. Te rog să verifici opțiunile de sincronizare din ecranul de configurare. Eroarea completă a fost:\n\n%s"
],
"Could not connect to plugin repository.": [
"Nu s-a putut conecta la repozitoriul de plugin-uri."
@@ -784,7 +814,7 @@
"Create"
],
"Create a new notebook under a parent notebook.": [
"Creează o nouă secțiune într-un caiet."
"Creează un nou sub-caiet într-un caiet."
],
"Create a notebook": [
"Creează un caiet"
@@ -874,7 +904,7 @@
"Certificate TLS cusomizate"
],
"Customise the note publishing banner": [
"Personalizați bannerul de publicare a notițelor"
"Personalizează banner-ul de publicare a notițelor"
],
"Cut": [
"Decupează"
@@ -895,7 +925,7 @@
"zile"
],
"Decrease indent level": [
"Reduceți nivelul de indentare"
"Micșorează nivelul de indentare"
],
"Decrypted items: %d": [
"Elemente decriptate: %d"
@@ -1024,16 +1054,16 @@
"Taste dezactivate"
],
"Disabling encryption means *all* your notes and attachments are going to be re-synchronised and sent unencrypted to the sync target. Do you wish to continue?": [
"Dezactivarea criptării înseamnă că *toate* notele și atașamentele dvs. vor fi resincronizate și trimise necriptate către ținta de sincronizare. Dori să continui?"
"Dezactivarea criptării înseamnă că *toate* notele și atașamentele tale vor fi resincronizate și trimise necriptate către destinația de sincronizare. Dorești să continui?"
],
"Discard": [
"Renunțați"
"Renunță"
],
"Discard changes": [
"Renunțați la schimbări"
"Renunță la schimbări"
],
"Dismiss": [
"Respingeți"
"Respinge"
],
"Displays a geolocation URL for the note.": [
"Afișează o adresă URL de geolocație pentru notiță."
@@ -1057,7 +1087,7 @@
"Afișează notițele din caietul curent. Folosește 'ls /' pentru a afișa lista de caiete."
],
"Displays usage information.": [
"Afișați informațiile de utilizare."
"Afișează informațiile de utilizare."
],
"Displays version information": [
"Afișează informații despre versiune"
@@ -1108,13 +1138,13 @@
"Dracula"
],
"Draw picture": [
"Desenați imaginea"
"Desenează imagine"
],
"Drawing": [
"Desen"
],
"Drop notes or files here": [
"Plasați notițe sau fișiere aici"
"Plasează notițe sau fișiere aici"
],
"Dropbox": [
"Dropbox"
@@ -1315,13 +1345,13 @@
"Activează înlocuire cu șablon Markdown în editorul de text îmbogățit. De exemplu, dacă este activat, tastînd **aldin** va crea text aldin."
],
"Enabling encryption means *all* your notes and attachments are going to be re-synchronised and sent encrypted to the sync target.": [
"Activarea criptării înseamnă că *toate* notele și atașamentele dvs. vor fi resincronizate și trimise criptate către ținta de sincronizare."
"Activarea criptării înseamnă că *toate* notele și atașamentele dvs. vor fi resincronizate și trimise criptate către destinația de sincronizare."
],
"Encrypted": [
"Criptat"
],
"Encrypted items cannot be modified": [
"Itemii criptați nu pot fi editați"
"Elementele criptate nu pot fi editate"
],
"Encryption": [
"Criptare"
@@ -1345,16 +1375,16 @@
"Termină transcrierea vocală"
],
"Enter code here": [
"Introdu codul aici"
"Întrodu codul aici"
],
"Enter master password:": [
"Introdu parola principală:"
"Întrodu parola principală:"
],
"Enter notebook title": [
"Introdu titlul caietului"
"Întrodu titlul caietului"
],
"Enter password": [
"Introdu parola"
"Întrodu parola"
],
"Entering selection mode": [
"Se intră în modul de selecție"
@@ -1369,7 +1399,7 @@
"Eroare deschidere notiță în editor: %s"
],
"Error. Please check that URL, username, password, etc. are correct and that the sync target is accessible. The reported error was:": [
"Eroare. Te rog să verifici dacă adresa URL, numele de utilizator, parola etc. sînt corecte și că ținta de sincronizare este accesibilă. Eroarea raportată a fost:"
"Eroare. Te rog să verifici dacă adresa URL, numele de utilizator, parola etc. sînt corecte și că destinația de sincronizare este accesibilă. Eroarea raportată a fost:"
],
"Error: %s": [
"Eroare: %s"
@@ -1447,10 +1477,10 @@
"Fail-safe"
],
"Fail-safe: Do not wipe out local data when sync target is empty (often the result of a misconfiguration or bug)": [
"Fail-safe: Nu șterge datele locale atunci cînd ținta de sincronizare este goală (adesea rezultatul unei configurații greșite sau al unei erori)."
"Fail-safe: Nu șterge datele locale atunci cînd destinația de sincronizare este goală (adesea rezultatul unei configurații greșite sau al unei erori)."
],
"Fail-safe: Sync was interrupted to prevent data loss, because the sync target is empty or damaged. To override this behaviour disable the fail-safe in the sync settings.": [
"Fail-safe: Sincronizarea a fost întreruptă pentru a preveni pierderea de date, deoarece ținta sincronizării este goală sau eronată. Pentru a anula acest comportament, dezactivează mecanismul de fail-safe din setările de sincronizare."
"Fail-safe: Sincronizarea a fost întreruptă pentru a preveni pierderea de date, deoarece destinația sincronizării este goală sau eronată. Pentru a anula acest comportament, dezactivează mecanismul de fail-safe din setările de sincronizare."
],
"Fatal error:": [
"Eroare fatală:"
@@ -1480,7 +1510,7 @@
"Găsește"
],
"Find: ": [
"Găsiți: "
"Găsește: "
],
"Finishes recording": [
"Finalizează înregistrarea"
@@ -1507,22 +1537,22 @@
"Urmează legătura"
],
"For debugging purpose only: export your profile to an external SD card.": [
"Numai în scop de depanare: exportați profilul pe un card SD extern."
"Numai în scop de depanare: exportă profilul pe un card SD extern."
],
"For example \"%s\"": [
"De exemplu, „%s”"
],
"For information on how to customise the shortcuts please visit %s": [
"Pentru informații despre cum să personalizi comenzile rapide, vizitați %s"
"Pentru informații despre cum să personalizezi comenzile rapide, vizitează %s"
],
"For more information about End-To-End Encryption (E2EE) and advice on how to enable it please check the documentation:": [
"Pentru mai multe informații despre criptarea de la un capăt la altul (E2EE) și sfaturi despre cum să o , te rog să consultați documentația:"
"Pentru mai multe informații despre criptarea de la un capăt la altul (E2EE) și sfaturi despre cum să o activezi, te rog să consulți documentația:"
],
"For the list of keyboard shortcuts and config options, type `help keymap`": [
"Pentru lista de scurtături de la tastatură și opțiuni de configurare, tastează `help keymap`"
],
"Force path style": [
"Forțați path style"
"Forțează stil cale"
],
"Forward": [
"Înainte"
@@ -1546,9 +1576,9 @@
"Generate"
],
"Generating link...": [
"Se creează link...",
"Se crează un %s...",
"Se crează un %s..."
"Se generează legătura...",
"Se generează legăturile...",
"Se generează legăturile..."
],
"Geolocation, spellcheck, editor toolbar, image resize": [
"Geolocație, verificare ortografică, bara de instrumente a editorului, redimensionare imagine"
@@ -1575,7 +1605,7 @@
"Mergi la linia"
],
"Go to source URL": [
"Accesați sursa URL"
"Mergi la URL-ul sursă"
],
"Goto Anything...": [
"Mergi la..."
@@ -1602,22 +1632,22 @@
"Hermes activat: %d"
],
"Hide %s": [
"Ascundeți %s"
"Ascunde %s"
],
"Hide advanced": [
"Ascundeți avansat"
"Ascunde avansat"
],
"Hide disabled": [
"Ascundeți dezactivat"
"Ascunde dezactivat"
],
"Hide disabled keys": [
"Ascundeți cheile dezactivate"
"Ascunde cheile dezactivate"
],
"Hide Joplin": [
"Ascundeți Joplin"
"Ascunde Joplin"
],
"Hide keyboard": [
"Ascundeți tastatura"
"Ascunde tastatura"
],
"Hide password": [
"Ascunde parola"
@@ -1698,7 +1728,7 @@
"Se importă..."
],
"Imports data into Joplin.": [
"Importați date în Joplin."
"Importă date în Joplin."
],
"In \"Manual\" mode, attachments are downloaded only when you click on them. In \"Auto\", they are downloaded when you open the note. In \"Always\", all the attachments are downloaded whether you open the note or not.": [
"În modul „Manual”, atașamentele sînt descărcate numai atunci cînd faci clic pe ele. În modul „Auto”, acestea sînt descărcate cînd deschizi notița. În modul „Mereu”, toate atașamentele sînt descărcate indiferent dacă deschizi notița sau nu."
@@ -1707,7 +1737,7 @@
"În orice comandă, se poate face referire la o notă sau la un caiet de notițe prin titlu sau ID, sau folosind comenzile rapide `$n` sau `$b` pentru nota sau caietul selectat în acel moment. Se poate utiliza `$c` pentru a se referi la elementul selectat în mod curent."
],
"In order to associate a geo-location with the note, the app needs your permission to access your location.\n\nYou may turn off this option at any time in the Configuration screen.": [
"Pentru a asocia o geolocație cu nota, aplicația are nevoie de permisiunea dvs. de a accesa locația.\n\nPuteți dezactiva această opțiune în orice moment în ecranul de configurare."
"Pentru a asocia o geolocație cu nota, aplicația are nevoie de permisiunea de a îți accesa locația.\n\nPoți dezactiva această opțiune în orice moment din ecranul de configurare."
],
"In order to do so, your entire data set will have to be encrypted and synchronised, so it is best to run it overnight.\n\nTo start, please follow these instructions:\n\n1. Synchronise all your devices.\n2. Click \"%s\".\n3. Let it run to completion. While it runs, avoid changing any note on your other devices, to avoid conflicts.\n4. Once sync is done on this device, sync all your other devices and let it run to completion.\n\nImportant: you only need to run this ONCE on one device.": [
"Pentru a face acest lucru, întregul set de date va trebui să fie criptat și sincronizat, așa că cel mai bine este să îl execuți peste noapte.\n\nPentru a începe, te rog să urmezi aceste instrucțiuni:\n\n1. Sincronizează-ți toate dispozitivele.\n2. Fă clic pe „%s”.\n3. Lasă-l să se execute pînă la finalizare. În timp ce se execută, evită să modifici orice notiță pe celelalte dispozitive, pentru a evita conflictele.\n4. Odată ce sincronizarea este finalizată pe acest dispozitiv, sincronizează toate celelalte dispozitive și las-o să se execute pînă la finalizare.\n\nImportant: nu trebuie să execuți acest lucru decît O SINGURĂ dată pe un singur dispozitiv."
@@ -1737,7 +1767,7 @@
"Sarcini de făcut incomplete"
],
"Increase indent level": [
"Creșteți nivelul de indentare"
"rește nivelul de indentare"
],
"Indent less": [
"Indentează la stînga"
@@ -1755,7 +1785,7 @@
"Inline Cod"
],
"Insert": [
"Inserați"
"Inserează"
],
"Insert Hyperlink": [
"Inserează hyperlink"
@@ -1815,7 +1845,7 @@
"Elemente care nu pot fi decriptate"
],
"Items that cannot be synchronised": [
"Elementele nu pot fi sincronizați"
"Elementele nu pot fi sincronizate"
],
"Items with error: %s": [
"Elemente cu eroarea: %s"
@@ -1959,9 +1989,9 @@
"Descriere legătură"
],
"Link has been copied to clipboard!": [
"Legătura a fost copiată în clipboard!",
"Legăturile au fost copiate în clipboard!",
"Legăturile au fost copiate în clipboard!"
"Legătura a fost copiată în Clipboard!",
"Legăturile au fost copiate în Clipboard!",
"Legăturile au fost copiate în Clipboard!"
],
"Link text": [
"Text legătură"
@@ -2045,10 +2075,10 @@
"Editor Markdown"
],
"Marks a to-do as done.": [
"Marcați o sarcină ca fiind terminată."
"Marchează o sarcină ca fiind terminată."
],
"Marks a to-do as non-completed.": [
"Marcați o sarcină ca fiind necompletă."
"Marchează o sarcină ca fiind neterminată."
],
"Markup": [
"Markup"
@@ -2063,7 +2093,7 @@
"Parola principală:"
],
"match case": [
"potrivește mărimea"
"sensibil la verzale"
],
"Math": [
"Matematică"
@@ -2117,11 +2147,16 @@
"Informații suplimentare"
],
"More than one item match \"%s\". Please narrow down your query.": [
"Mai multe elemente se potrivesc cu „%s\". Te rog să restrîngi interogarea."
"Mai multe elemente se potrivesc cu „%s\". Te rog să restrîngi interogarea."
],
"Most plugins have source code available for review on the plugin website.": [
"Majoritatea plugin-urilor au codul sursă disponibil pentru revizuire pe website-ul plugin-ului."
],
"Move %d note to notebook \"%s\"?": [
"Muți %d notiță în caietul „%s”?",
"Muți %d notițe în caietul „%s”?",
"Muți %d de notițe în caietul „%s”?"
],
"Move down": [
"Mută în jos"
],
@@ -2189,7 +2224,7 @@
"Profil nou"
],
"New sub-notebook": [
"Secțiune nouă"
"Sub-caiet nou"
],
"New tags:": [
"Etichete noi:"
@@ -2204,7 +2239,7 @@
"următoarea"
],
"Next match": [
"Next match"
"Următoarea potrivire"
],
"Nextcloud": [
"Nextcloud"
@@ -2399,7 +2434,7 @@
"Una dintre cheile dvs. master utilizează o metodă de criptare învechită."
],
"One or more items are currently encrypted and you may need to supply a master password. To do so please type `e2ee decrypt`. If you have already supplied the password, the encrypted items are being decrypted in the background and will be available soon.": [
"Unul sau mai multe elemente sînt criptate în prezent și este posibil să fie necesar să furnizi o parolă master. Pentru a face acest lucru, te rog să tasti `e2ee decriptare`. Dacă ați furnizat deja parola, elementele criptate sînt decriptate în fundal și vor fi disponibile în curînd."
"Unul sau mai multe elemente sînt criptate și este posibil să fie necesar să furnizezi o parolă master. Pentru a face acest lucru, te rog să tastezi `e2ee decrypt`. Dacă ai furnizat deja parola, elementele criptate sînt decriptate în fundal și vor fi disponibile în curînd."
],
"One or more master keys need a password.": [
"Una sau mai multe chei master au nevoie de o parolă."
@@ -2518,6 +2553,9 @@
"PDF File": [
"Fișier PDF"
],
"Per user. Minimum of 2 users.": [
"Per utilizator. Minim 2 utilizatori."
],
"Permanently delete note": [
"Șterge notița permanent"
],
@@ -2527,6 +2565,11 @@
"Permanently delete notebook \"%s\"?\n\nAll notes and sub-notebooks within this notebook will be permanently deleted.": [
"Ștergi caietul „%s” permanent?\n\nToate notițele și secțiunile din acest caiet vor fi șterse permanent."
],
"Permanently delete this note?": [
"Ștergi permanent această notiță?",
"Ștergi permanent aceste %d notițe?",
"Ștergi permanent aceste %d de notițe?"
],
"Permanently deletes the notebook, skipping the trash.": [
"Șterge permanent caietul, omițînd coșul."
],
@@ -2633,19 +2676,19 @@
"Păstrează culorile la lipirea textului în editorul de text îmbogățit"
],
"Press Ctrl+D or type \"exit\" to exit the application": [
"Apăsați Ctrl+D ori scrieți \"exit\" pentru a ieși din aplicație"
"Apasă Ctrl+D sau tastează „exit pentru a ieși din aplicație"
],
"Press the shortcut": [
"Apăsați comanda rapidă"
"Apasă scurtătura"
],
"Press the shortcut and then press ENTER. Or, press BACKSPACE to clear the shortcut.": [
"Apăsați comanda rapidă și apoi apăsați ENTER. Sau apăsați BACKSPACE pentru a șterge comanda rapidă."
"Apasă scurtătura și apoi apasă ENTER. Sau apasă BACKSPACE pentru a șterge scurtătura."
],
"Press to set the decryption password.": [
"Apăsați pentru a seta parola de decriptare."
"Apasă pentru a seta parola de decriptare."
],
"previous": [
"anterior"
"anterioara"
],
"Previous match": [
"Potrivirea anterioară"
@@ -2729,19 +2772,19 @@
"Descarcă din nou modelul"
],
"Re-encrypt data": [
"Re-criptați datele"
"Re-criptează datele"
],
"Re-encryption": [
"Re-criptare"
],
"Re-enter password": [
"Introdu parola din nou"
"Întrodu parola din nou"
],
"Re-upload local data to sync target": [
"Reîncărcarea datelor locale către destinația de sincronizare"
],
"Read more about it": [
"Citiți mai multe despre aceasta"
"Citește mai multe despre acestea"
],
"Read time: %s min": [
"Durata lecturii: %s min"
@@ -2819,10 +2862,10 @@
"Înlocuiește"
],
"replace all": [
"înlocuiește tot"
"înlocuiește toate"
],
"Replace all": [
"Înlocuiește tot"
"Înlocuiește toate"
],
"Replace with...": [
"Înlocuiește cu…"
@@ -2906,7 +2949,7 @@
"Afișează fișierul în dosar"
],
"Reverse sort order": [
"Inversați ordinea sortării"
"Inversează ordinea sortării"
],
"Reverses the sorting order.": [
"Inversează ordinea sortării."
@@ -3008,7 +3051,7 @@
"Vezi lista de schimbări"
],
"See the pre-release page for more details: %s": [
"Pentru mai multe detalii, consultați pagina de pre-reluase: %s"
"Pentru mai multe detalii, consultă pagina de pre-release: %s"
],
"Select": [
"Selectează"
@@ -3032,7 +3075,7 @@
"Selectează un caiet"
],
"Send bug report": [
"Trimiteți un raport de eroare"
"Trimite un raport de eroare"
],
"Server is already running on port %d": [
"Serverul rulează deja pe portul %d"
@@ -3065,7 +3108,7 @@
"Distribuie"
],
"Share a copy of all notes in a file format that can be imported by Joplin on a computer.": [
"Partajați o copie a tuturor notițelor într-un format de fișier care poate fi importat de Joplin pe un computer."
"Partajează o copie a tuturor notițelor într-un format de fișier care poate fi importat de Joplin pe un calculator."
],
"Share a notebook with others": [
"Partajează un caiet cu alții"
@@ -3148,6 +3191,9 @@
"Sidebar": [
"Panou lateral"
],
"Sign up to Joplin Cloud": [
"Creează cont Joplin Cloud"
],
"Size": [
"Mărime"
],
@@ -3182,7 +3228,7 @@
"Unele elemente nu pot fi sincronizate."
],
"Some items cannot be synchronised. Press for more info.": [
"Unele elemente nu pot fi sincronizate. Apăsați pentru mai multe informații."
"Unele elemente nu pot fi sincronizate. Apasă pentru mai multe informații."
],
"Some items could not be synchronised. Please try to synchronise them first.": [
"Unele elemente nu au putut fi sincronizate. Te rog încearcă să le sincronizezi mai întîi."
@@ -3242,7 +3288,7 @@
"Se începe sincronizarea..."
],
"Starting to edit note. Close the editor to get back to the prompt.": [
"Începere să editeze nota. Închideți editorul pentru a reveni la prompt."
"Se începe editarea notiței. Închide editorul pentru a reveni la prompt."
],
"Statistics": [
"Statistici"
@@ -3263,10 +3309,10 @@
"Pasul 1: Activează clipper service"
],
"Step 1: Open this URL in your browser to authorise the application:": [
"Pasul 1: Deschideți adresa URL în navigatorul dumneavoastră web pentru a autoriza aplicația:"
"Pasul 1: Deschide adresa URL în navigatorul tău web pentru a autoriza aplicația:"
],
"Step 2: Enter the code provided by Dropbox:": [
"Pasul 2: Introdu codul oferit de Dropbox:"
"Pasul 2: Întrodu codul oferit de Dropbox:"
],
"Step 2: Install the extension": [
"Pasul 2: Instalează extensia"
@@ -3323,10 +3369,10 @@
"Comută la camera din față"
],
"Switch to note type": [
"Comută la tipul de notiță"
"Comută la tipul notiță"
],
"Switch to profile %d": [
"Treceți la profilul %d"
"Comută la profilul %d"
],
"Switch to the %s Editor": [
"Comută la editorul %s"
@@ -3335,13 +3381,13 @@
"Comută la editorul învechit"
],
"Switch to to-do type": [
"Treceți la tipul to-do"
"Comută la tipul „de făcut”"
],
"Switches to [notebook] - all further operations will happen within this notebook.": [
"Comută la [notebook] - toate operațiunile ulterioare vor avea loc în acest caiet."
],
"Sync as many devices as you want": [
"Sincronizați cît de multe dispozitive dori"
"Sincronizează cît de multe dispozitive dorești"
],
"Sync Status": [
"Sync Status"
@@ -3350,13 +3396,13 @@
"Starea de sincronizare (elemente sincronizate / total elemente)"
],
"Sync target must be upgraded! Run `%s` to proceed.": [
"Obiectivul de sincronizare trebuie să fie actualizat! Rulați `%s` pentru a continua."
"Destinația de sincronizare trebuie să fie actualizată! Rulează `%s` pentru a continua."
],
"Sync Target Upgrade": [
"Sync Target Upgrade"
],
"Sync to provided target (defaults to sync.target config value)": [
"Sincronizarea cu o ținta specificată (presetat la valoare de configurare sync.target)"
"Sincronizarea cu o destinație specificată (presetat la valoarea de configurare sync.target)"
],
"Sync Version: %s": [
"Versiunea de sincronizare: %s"
@@ -3380,10 +3426,10 @@
"Starea sincronizării"
],
"Synchronisation target": [
"Țintă de sincronizare"
"Destinație sincronizare"
],
"Synchronisation target: %s (%s)": [
"Țintă sincronizare: %s (%s)"
"Destinație sincronizare: %s (%s)"
],
"Synchronise": [
"Sincronizează"
@@ -3443,13 +3489,13 @@
"[Web Clipper](%s) este o extensie pentru navigatorul web care îți permite să salvezi pagini web și capturi de ecran direct din acesta."
],
"The active profile cannot be deleted. Switch to a different profile and try again.": [
"Profilul activ nu poate fi șters. Treceți la un alt profil și încercați din nou."
"Profilul activ nu poate fi șters. Comută la un alt profil și încearcă din nou."
],
"The app is now going to close. Please relaunch it to complete the process.": [
"Aplicația se va închide acum. Te rog să o relansați pentru a finaliza procesul."
"Aplicația se va închide acum. Te rog să o lansezi din nou pentru a finaliza procesul."
],
"The application did not close properly. Would you like to start in safe mode?": [
"Aplicația nu s-a închis corect. Dori să porni în modul sigur?"
"Aplicația nu s-a închis corect. Dorești să o pornești în modul sigur?"
],
"The application has been authorised - you may now close this browser tab.": [
"Aplicația a fost autorizată - acum poți închide această fereastră browserului."
@@ -3464,7 +3510,7 @@
"Aplicația trebuie repornită pentru ca aceste modificări să intre în vigoare."
],
"The attachments will no longer be watched when you switch to a different note.": [
"Atașamentele nu vor mai fi urmărite atunci cînd treci la o altă notă."
"Atașamentele nu vor mai fi urmărite atunci cînd treci la o altă notă."
],
"The command \"%s\" is only available in GUI mode": [
"Comanda „%s” este disponibilă doar în modul GUI"
@@ -3473,10 +3519,10 @@
"Parola implicită a administratorului este nesigură și nu a fost schimbată! [Change it now](%s)"
],
"The default encryption method has been changed to a more secure one and it is recommended that you apply it to your data.": [
"Metoda implicită de criptare a fost schimbată într-una mai sigură și se recomandă să o aplici datelor dumnevoastră."
"Metoda implicită de criptare a fost schimbată într-una mai sigură și se recomandă să o aplici datelor tale."
],
"The default encryption method has been changed, you should re-encrypt your data.": [
"Metoda implicită de criptare a fost modificată, ar trebui să cripti din nou datele."
"Metoda implicită de criptare a fost modificată, ar trebui să îți criptezi din nou datele."
],
"The default profile cannot be deleted": [
"Profilul implicit nu poate fi șters"
@@ -3485,12 +3531,12 @@
"Comanda editorului (poate include argumente) care va fi utilizată pentru a deschide o notă. Dacă nu este furnizat niciunul, se va încerca să se detecteze automat editorul implicit."
],
"The factor property sets how the item will grow or shrink to fit the available space in its container with respect to the other items. Thus an item with a factor of 2 will take twice as much space as an item with a factor of 1.Restart app to see changes.": [
"Proprietatea factor stabilește modul în care elementul va crește sau se va micșora pentru a se potrivi spațiului disponibil în containerul său în raport cu celelalte elemente. Astfel, un element cu un factor de 2 va ocupa de două ori mai mult spațiu decît un element cu un factor de 1. Reporniți aplicația pentru a vedea modificările."
"Proprietatea factor stabilește modul în care elementul va crește sau se va micșora pentru a se potrivi spațiului disponibil în containerul său în raport cu celelalte elemente. Astfel, un element cu un factor de 2 va ocupa de două ori mai mult spațiu decît un element cu un factor de 1. Repornește aplicația pentru a vedea modificările."
],
"The following attachment matches your search query:": [
"Următorul atașament corespunde căutării dumneavoastră:",
"Următoarele atașamente corespund căutării dumneavoastră:",
"Următoarele atașamente corespund căutării dumneavoastră:"
"Următorul atașament corespunde căutării tale:",
"Următoarele atașamente corespund căutării tale:",
"Următoarele atașamente corespund căutării tale:"
],
"The following attachments are being watched for changes:": [
"Următoarele atașamente sînt urmărite pentru modificări:"
@@ -3534,25 +3580,25 @@
"Comenzile posibile sînt:"
],
"The recipient could not be removed from the list. Please try again.\n\nThe error was: \"%s\"": [
"Destinatarul nu a putut fi eliminat din listă. Te rog să încerci din nou.\n\nEroarea a fost: „%s”"
"Destinatarul nu a putut fi eliminat din listă. Te rog să încerci din nou.\n\nEroarea a fost: „%s”"
],
"The sync target cannot be changed for the following reason: %s\n\nIf the issue cannot be resolved, you may need to clear your data first by following these instructions:\n\n%s": [
"Ținta sincronizării nu poate fi schimbată din următorul motiv: %s\n\nDacă problema nu poate fi rezolvată, va trebui să cureți datele mai întîi, urmînd următoarele instrucțiuni:\n\n%s"
"Destinația de sincronizare nu poate fi schimbată din următorul motiv: %s\n\nDacă problema nu poate fi rezolvată, va trebui să cureți datele mai întîi, urmînd următoarele instrucțiuni:\n\n%s"
],
"The sync target needs to be upgraded before Joplin can sync. The operation may take a few minutes to complete and the app needs to be restarted. To proceed please click on the link.": [
"Destinația de sincronizare trebuie să fie actualizată înainte ca Joplin să se poată sincroniza. Este posibil ca operațiunea să dureze cîteva minute pentru a fi finalizată, iar aplicația trebuie repornită. Pentru a continua, te rog să faci clic pe legătură."
],
"The sync target needs to be upgraded. Press this banner to proceed.": [
"Destinația de sincronizare trebuie să fie actualizată. Apăsați acest banner pentru a continua."
"Destinația de sincronizare trebuie să fie actualizată. Apasă pe acest banner pentru a continua."
],
"The synchronisation password is missing.": [
"Lipsește parola de sincronizare."
],
"The tag \"%s\" already exists. Please choose a different name.": [
"Eticheta „%s” există deja. Te rog să alegi un alt nume."
"Eticheta „%s” există deja. Te rog să alegi un alt nume."
],
"The target to synchronise to. Each sync target may have additional parameters which are named as `sync.NUM.NAME` (all documented below).": [
"Ținta la care se sincronizează. Fiecare țintă de sincronizare poate avea parametri suplimentari care sînt numiți `sync.NUM.NAME` (toți documentați mai jos)."
"Destinația la care se sincronizează. Fiecare destinație de sincronizare poate avea parametri suplimentari care sînt numiți `sync.NUM.NAME` (toți documentați mai jos)."
],
"The web client does not support accepting encrypted shared notebooks. Please switch to the desktop or mobile app before accepting the share.\n\nError: \"%s\"": [
"Acceptarea caietelor partajate criptate din clientul web nu este suportată . Te rog comută la aplicația Desktop sau mobilă înainte de a accepta caietul partajat.\n\nEroare: „%s”"
@@ -3570,7 +3616,7 @@
"Serviciul web clipper nu este activat."
],
"The WebDAV implementation of %s is incompatible with Joplin, and as such is no longer supported. Please use a different sync method.": [
"Implementarea WebDAV a lui %s este incompatibilă cu Joplin și, ca atare, nu mai este susținută. Te rog să folosi o altă metodă de sincronizare."
"Implementarea WebDAV a lui %s este incompatibilă cu Joplin și, ca atare, nu mai este suportată. Te rog să folosești o altă metodă de sincronizare."
],
"Theme": [
"Temă"
@@ -3600,7 +3646,7 @@
"Sincronizarea acestor elemente a eșuat și au fost marcate ca „ignorate”. Astfel ele nu vor mai cauza apariția atenționărilor de sincronizare, dar nici nu vor fi sincronizate. Pentru a nu le marca ca ignorate, apară pe „reîncearcă”."
],
"These items will remain on the device but will not be uploaded to the sync target. In order to find these items, either search for the title or the ID (which is displayed in brackets above).": [
"Aceste elemente vor rămîne pe dispozitiv, dar nu vor fi încărcate pe obiectivul de sincronizare. Pentru a găsi aceste elemente, căutați fie titlul, fie ID-ul (care este afișat în paranteze mai sus)."
"Aceste elemente vor rămîne pe dispozitiv, dar nu vor fi încărcate în destinația de sincronizare. Pentru a găsi aceste elemente, caută fie titlul, fie ID-ul (care este afișat în paranteze mai sus)."
],
"These plugins enhance the Markdown renderer with additional features. Please note that, while these features might be useful, they are not standard Markdown and thus most of them will only work in Joplin. Additionally, some of them are *incompatible* with the WYSIWYG editor. If you open a note that uses one of these plugins in that editor, you will lose the plugin formatting. It is indicated below which plugins are compatible or not with the WYSIWYG editor.": [
"Aceste plugin-uri îmbunătățesc funcția de redare Markdown cu caracteristici suplimentare. Te rog să reții că, deși aceste caracteristici ar putea fi utile, ele nu sînt Markdown standard și, prin urmare, cele mai multe dintre ele vor funcționa numai în Joplin. În plus, unele dintre ele sînt *incompatibile* cu editorul WYSIWYG. Dacă deschizi o notiță care utilizează unul dintre aceste plugin-uri în acel editor, vei pierde formatarea plugin-ului. Mai jos este indicat ce plugin-uri sînt compatibile sau nu cu editorul WYSIWYG."
@@ -3621,22 +3667,22 @@
"Acest desen poate avea modificări nesalvate."
],
"This is an advanced tool to show the attachments that are linked to your notes. Please be careful when deleting one of them as they cannot be restored afterwards.": [
"Acesta este un instrument avansat pentru a afișa atașamentele care sînt legate de notele dumnevoastră. Te rog să fiți atenți la ștergerea uneia dintre ele, deoarece acestea nu pot fi restaurate ulterior."
"Acesta este un instrument avansat pentru a afișa atașamentele care sînt legate de notele dumnevoastră. Te rog să fii atent la ștergerea uneia dintre ele, deoarece acestea nu pot fi restaurate ulterior."
],
"This note could not be deleted: %s": [
"Acest fișier nu a putut fi deschis: %s",
"Acest fișier nu a putut fi deschis: %s",
"Această notiță nu a putut fi ștearsă: %s"
"Această notiță nu a putut fi ștearsă: %s",
"Aceste notiție nu au putut fi șterse: %s",
"Aceste notițe nu au putut fi șterse: %s"
],
"This note could not be duplicated: %s": [
"Aceste notițe nu pot fi duplicate: %s",
"Caietul de notițe nu a puut fi salvat: %s",
"Caietul de notițe nu a puut fi salvat: %s"
"Această notiță nu a putut fi duplicată: %s",
"Aceste notițe nu au putut fi duplicate: %s",
"Aceste notițe nu au putut fi duplicate: %s"
],
"This note could not be moved: %s": [
"Aceste notițe nu pot fi mutate: %s",
"Caietul de notițe nu a puut fi salvat: %s",
"Caietul de notițe nu a puut fi salvat: %s"
"Această notiță nu a putut fi mutată: %s",
"Aceste notițe nu au putut fi mutate: %s",
"Aceste notițe nu au putut fi mutate: %s"
],
"This note does not have geolocation information.": [
"Această notă nu conține informații despre geolocalizare."
@@ -3654,7 +3700,7 @@
"Acest plugin nu suportă %s."
],
"This Rich Text editor has a number of limitations and it is recommended to be aware of them before using it.": [
"Acest editor Rich Text are o serie de limitări și este recomandat să le cunoaști înainte de a-l utiliza."
"Acest editor de text îmbogățit are o serie de limitări și este recomandat să le cunoști înainte de a-l utiliza."
],
"This service allows the browser extension to communicate with Joplin. When enabling it your firewall may ask you to give permission to Joplin to listen to a particular port.": [
"Acest serviciu permite extensia browserul-ui pentru a comunica cu Joplin. Atunci cînd se permite firewall poate cere să dea permisiunea Joplin pentru a asculta un anumit port."
@@ -3666,7 +3712,7 @@
"Acest lucru va permite ca Joplin să ruleze în fundal. Se recomandă să această setare pentru ca notele dvs. să fie sincronizate în mod constant, reducînd astfel numărul de conflicte."
],
"This will open a new screen. Save your current changes?": [
"Se va deschide un nou ecran. Dori să salvi modificările dumnevoastră actuale?"
"Se va deschide un nou ecran. Dorești să îți salvezi modificările actuale?"
],
"This will permanently delete all items in the trash. Continue?": [
"Acest lucru va șterge permanent toate elementele din coșul de gunoi. Continui?"
@@ -3702,7 +3748,7 @@
"Pentru a intra în linia de comandă, tastează „:”"
],
"To exit command line mode, press ESCAPE": [
"Pentru a ieși din modul linie de comandă, apăsați ESCAPE"
"Pentru a ieși din modul linie de comandă, apasă ESCAPE"
],
"To manually sort the notes, the sort order must be changed to \"%s\" in the menu \"%s\" > \"%s\"": [
"Pentru a sorta notițele manual, ordinea trebuie sa fie schimbată în „%s” în meniu „%s” > „%s”"
@@ -3711,10 +3757,10 @@
"Pentru a maximiza/minimiza consola, tastează „tc”."
],
"To move from one pane to another, press Tab or Shift+Tab.": [
"Pentru a muta dintr-un panou în altul, apăsați Tab ori Shift+Tab."
"Pentru a te muta dintr-un panou în altul, apasă Tab sau Shift+Tab."
],
"To retry decryption of these items. Run `e2ee decrypt --retry-failed-items`": [
"Pentru a reîncerca decriptarea acestor elemente. Rulați `e2ee decrypt --retry-failed-items`"
"Pentru a reîncerca decriptarea acestor elemente. Rulează `e2ee decrypt --retry-failed-items`"
],
"To switch the profile, the app is going to close and you will need to restart it.": [
"Pentru a schimba profilul, aplicația se va închide și va trebui să o reporniți."
@@ -3804,13 +3850,13 @@
"Încearcă acum"
],
"Type `help [command]` for more information about a command; or type `help all` for the complete usage information.": [
"Tastați `help [command]` pentru mai multe informații despre o comandă; sau tastați „help all\" pentru informații complete de utilizare."
"Tastează `help [command]` pentru mai multe informații despre o comandă; sau tastează `help all` pentru informații complete de utilizare."
],
"Type `joplin help` for usage information.": [
"Tastați `joplin help` pentru informații de utilizare."
"Tastează `joplin help` pentru informații de utilizare."
],
"Type a note title or part of its content to jump to it. Or type # followed by a tag name, or @ followed by a notebook name. Or type : to search for commands.": [
"Tastați titlul unei notițe sau o parte din conținutul acesteia pentru a trece la ea. Sau tastați # urmat de numele unei etichete sau @ urmat de numele unui caiet. Sau tastați : pentru a căuta comenzi."
"Tastează titlul unei notițe sau o parte din conținutul acesteia pentru a trece la ea. Sau tastează # urmat de numele unei etichete sau @ urmat de numele unui caiet. Sau tastează : pentru a căuta comenzi."
],
"Type a note title to search for it.": [
"Tastează un titlu de notiță pentru a-l căuta."
@@ -3849,7 +3895,7 @@
"Unknown flag: %s"
],
"Unknown item type downloaded - please upgrade Joplin to the latest version": [
"Tip de element necunoscut descărcat - te rog să actualizi Joplin la cea mai recentă versiune"
"Tip de element necunoscut descărcat - te rog să actualizezi Joplin la cea mai recentă versiune"
],
"Unknown platform": [
"Platformă necunoscută"
@@ -3921,7 +3967,7 @@
"Actualizare majoră"
],
"Upgrade the sync target to the latest version.": [
"Actualizează ținta de sincronizare la cea mai recentă versiune."
"Actualizează destinația de sincronizare la cea mai recentă versiune."
],
"URL": [
"URL"
@@ -3942,7 +3988,7 @@
"Folosește săgețile și tastele „page up/down” pentru a derula listele și zonele de text (inclusiv această consolă)."
],
"Use the arrows to move the layout items. Press \"Escape\" to exit.": [
"Folosiți săgețile pentru a muta elementele de prezentare. Apăsați “Escape” pentru a ieși."
"Folosește săgețile pentru a muta elementele de aspect. Apasă „Escape” pentru a ieși."
],
"Use the legacy Markdown editor": [
"Folosește editorul Markdown învechit"
@@ -3951,7 +3997,7 @@
"Folosește această opțiune pentru a reconstrui indexul de căutare dacă există o problemă cu căutarea. Poate dura mult timp, în funcție de numărul de notițe."
],
"Use your biometrics to secure access to your application. You can always set it up later in Settings.": [
"Folosiți datele biometrice pentru a securiza accesul la aplicația dvs. Puteți oricînd să o configuri mai tîrziu în Setări."
"Folosește datele biometrice pentru a securiza accesul la aplicație. Poți oricînd să le configurezi mai tîrziu în Setări."
],
"Used for most text in the markdown editor. If not found, a generic proportional (variable width) font is used.": [
"Folosit pentru majoritatea textului din editorul markdown. Dacă nu se găsește, se utilizează un font generic proporțional (cu lățime variabilă)."
@@ -3969,7 +4015,7 @@
"Valid"
],
"Verify your identity": [
"Verificați identitatea dumneavoastră"
"Verifică-ți identitatea"
],
"View": [
"Vizualizează"
@@ -4059,7 +4105,7 @@
"Cînd este creată o nouă listă de făcut:"
],
"When enabled, the application will scan your attachments and extract the text from it. This will allow you to search for text in these attachments.": [
"Atunci cînd este activată, aplicația va scana atașamentele și va extrage textul din ele. Acest lucru va permite să căutați text în aceste atașamente."
"Atunci cînd este activată, aplicația va scana atașamentele și va extrage textul din ele. Acest lucru îți va permite să cauți text în atașamente."
],
"Whisper": [
"Whisper"
@@ -4083,7 +4129,7 @@
"Da"
],
"You are about to attach a large image (%dx%d pixels). Would you like to resize it down to %d pixels before attaching it?": [
"Ești pe cale să atașezi o imagine mare (%dx%d pixeli). Dori să îl redimensionați pînă la %d pixeli înainte de a-l atașa?"
"Ești pe cale să atașezi o imagine mare (%dx%d pixeli). Dorești să o redimensionezi la %d pixeli înainte de a o atașa?"
],
"You are logged in into Joplin Cloud, you can leave this screen now.": [
"Ești autentificat la Joplin Cloud, poți acum să părăsești acest ecran."
@@ -4092,16 +4138,16 @@
"Rulezi versiunea Intel a Joplin pe un procesor cu siliciu Apple. Descarcă versiunea pentru procesoare Apple pentru o performanță mai mare."
],
"You currently have no notebooks.": [
"Nu aveți niciun caiet de notițe activ."
"Nu ai niciun caiet de notițe."
],
"You do not have any installed plugin.": [
"Nu aveți niciun plugin instalat."
"Nu ai niciun plugin instalat."
],
"You may also type `status` for more information.": [
"De asemenea, poți tasta `status` pentru mai multe informații."
],
"You may use the tool below to re-encrypt your data, for example if you know that some of your notes are encrypted with an obsolete encryption method.": [
"Puteți utiliza instrumentul de mai jos pentru a cripta din nou datele, de exemplu, dacă știți că unele note sînt criptate cu o metodă de criptare învechită."
"Poți utiliza instrumentul de mai jos pentru a îți cripta din nou datele, de exemplu, dacă știi că unele note sînt criptate cu o metodă de criptare învechită."
],
"You were unable to connect to Joplin Cloud. Please check your credentials and try again. Error:": [
"Nu ai putut să te conectezi la Joplin Cloud. Te rog verifică-ți datele de conectare și încearcă din nou. Eroare:"

View File

@@ -2,18 +2,43 @@
"\"%s\" is missing the required \"%s\" property.": [
"„%s” nu are proprietatea necesară „%s”."
],
"%d day": [
"%d zi",
"%d zile",
"%d de zile"
],
"%d GB": [
"%d GO"
],
"%d GB storage space": [
"spațiu de stocare %d GO"
],
"%d hour": [
"%d oră",
"%d ore",
"%d de ore"
],
"%d MB": [
"%d MO"
],
"%d MB per note or attachment": [
"%d MO per notiță sau atașament"
],
"%d minute": [
"%d minut",
"%d minute",
"%d de minute"
],
"%d note matches this pattern. Delete it?": [
"%d notiță se potrivește acestui șablon. Dorești să o ștergi?",
"%d notițe se potrivesc acestui șablon. Dorești să le ștergi?",
"%d de notițe se potrivesc acestui șablon. Dorești să le ștergi?"
],
"%d note will be permanently deleted. Continue?": [
"%d notiță va fi ștearsă permanent. Continui?",
"%d notițe vor fi șterse permanent. Continui?",
"%d de notițe vor fi șterse permanent. Continui?"
],
"%s": [
"%s"
],
@@ -65,6 +90,11 @@
"%s: %d": [
"%s: %d"
],
"%s: %d note": [
"%s: %d notiță",
"%s: %d notițe",
"%s: %d de notițe"
],
"%s: %d/%d": [
"%s: %d/%d"
],
@@ -114,7 +144,7 @@
"(wysiwyg: %s)"
],
"(You may disable this prompt in the options)": [
"(Puteți dezactiva această solicitare în opțiuni)"
"(Poți dezactiva această solicitare în opțiuni)"
],
"- Camera: to allow taking a picture and attaching it to a note.": [
"- Aparat foto: pentru a permite realizarea unei fotografii și atașarea acesteia la o notă."
@@ -165,7 +195,7 @@
"Invitații acceptate"
],
"Access denied: Please check your username and password": [
"Acces refuzat: Te rog să verifici numele de utilizator și parola"
"Acces refuzat: Te rog să îți verifici numele de utilizator și parola"
],
"Access denied: Please re-enter your password and/or username": [
"Acces refuzat: Te rog să reintroduci parola și/sau numele de utilizator"
@@ -351,7 +381,7 @@
"Acest fișier nu a putut fi descărcat: %s"
],
"Attention: If you change this location, make sure you copy all your content to it before syncing, otherwise all files will be removed! See the FAQ for more details: %s": [
"Atenție: dacă modifici această locație, asigurați-vă că copii tot conținutul pe ea înainte de sincronizare, altfel toate fișierele vor fi eliminate! Consultați FAQ pentru mai multe detalii: %s"
"Atenție: dacă modifici această locație, asigură-te că copiezi tot conținutul în ea înainte de sincronizare, altfel toate fișierele vor fi șterse! Consultă FAQ pentru mai multe detalii: %s"
],
"Authentication was not completed (did not receive an authentication token).": [
"Autentificarea nu a fost finalizată (nu a primit un token de autentificare)."
@@ -399,7 +429,7 @@
"Aldin"
],
"Browse all plugins": [
"Navigați toate plugin-urile"
"Răsfoiește toate plugin-urile"
],
"Browse...": [
"Răsfoiește..."
@@ -414,7 +444,7 @@
"după %s"
],
"by word": [
"după cuvânt"
"cuvânt întreg"
],
"Camera": [
"Aparat foto"
@@ -519,7 +549,7 @@
"Verifică pentru actualizări..."
],
"Check synchronisation configuration": [
"Verificați configurația de sincronizare"
"Verifică configurația de sincronizare"
],
"Checkbox": [
"Căsuțe de selecție"
@@ -570,7 +600,7 @@
"Închide dialogul"
],
"Close dropdown": [
"Închideți meniul derulant"
"Închide meniul derulant"
],
"Close side menu": [
"Închide meniul lateral"
@@ -615,7 +645,7 @@
"Alarmele următoare"
],
"Comma-separated list of paths to directories to load the certificates from, or path to individual cert files. For example: /my/cert_dir, /other/custom.pem. Note that if you make changes to the TLS settings, you must save your changes before clicking on \"Check synchronisation configuration\".": [
"Listă de căi de acces la directoare din care se încarcă certificatele sau calea de acces la fișierele de certificate individuale. De exemplu: /my/cert_dir, /other/custom.pem. Rețineți că, dacă efectuați modificări la setările TLS, trebuie să salvi modificările înainte de a face clic pe “Check synchronisation configuration” (Verificați configurația de sincronizare)."
"Listă separată de virgule de căi de acces la dosare din care se încarcă certificatele sau calea de acces la fișierele de certificate individuale. De exemplu: /my/cert_dir, /other/custom.pem. Reține că, dacă faci modificări la setările TLS, trebuie să salvezi modificările înainte de a face clic pe Verifică configurația de sincronizare."
],
"command": [
"command"
@@ -722,7 +752,7 @@
"Copiază link-ul extern"
],
"Copy image": [
"Copie imagine"
"Copiază imaginea"
],
"Copy Link Address": [
"Copiază adresa link-ului"
@@ -737,9 +767,9 @@
"Copiază locația în clipboard"
],
"Copy Shareable Link": [
"Copiază linkul care se poate partaja",
"Distribuie",
"Distribuie"
"Copiază legătura partajabilă",
"Copiază legăturile partajabile",
"Copiază legăturile partajabile"
],
"Copy to clipboard": [
"Copiază locația în clipboard"
@@ -754,7 +784,7 @@
"Nu s-a putut autoriza aplicația:\n\n%s\n\nTe rog să încerci din nou."
],
"Could not connect to Joplin Server. Please check the Synchronisation options in the config screen. Full error was:\n\n%s": [
"Nu s-a putut conecta la serverul Joplin. Te rog să verifici opțiunile de sincronizare din ecranul de configurare. Eroarea completă a fost:\n\n%s"
"Nu s-a putut conecta la serverul Joplin. Te rog să verifici opțiunile de sincronizare din ecranul de configurare. Eroarea completă a fost:\n\n%s"
],
"Could not connect to plugin repository.": [
"Nu s-a putut conecta la repozitoriul de plugin-uri."
@@ -784,7 +814,7 @@
"Create"
],
"Create a new notebook under a parent notebook.": [
"Creează o nouă secțiune într-un caiet."
"Creează un nou sub-caiet într-un caiet."
],
"Create a notebook": [
"Creează un caiet"
@@ -874,7 +904,7 @@
"Certificate TLS cusomizate"
],
"Customise the note publishing banner": [
"Personalizați bannerul de publicare a notițelor"
"Personalizează banner-ul de publicare a notițelor"
],
"Cut": [
"Decupează"
@@ -895,7 +925,7 @@
"zile"
],
"Decrease indent level": [
"Reduceți nivelul de indentare"
"Micșorează nivelul de indentare"
],
"Decrypted items: %d": [
"Elemente decriptate: %d"
@@ -1024,16 +1054,16 @@
"Taste dezactivate"
],
"Disabling encryption means *all* your notes and attachments are going to be re-synchronised and sent unencrypted to the sync target. Do you wish to continue?": [
"Dezactivarea criptării înseamnă că *toate* notele și atașamentele dvs. vor fi resincronizate și trimise necriptate către ținta de sincronizare. Dori să continui?"
"Dezactivarea criptării înseamnă că *toate* notele și atașamentele tale vor fi resincronizate și trimise necriptate către destinația de sincronizare. Dorești să continui?"
],
"Discard": [
"Renunțați"
"Renunță"
],
"Discard changes": [
"Renunțați la schimbări"
"Renunță la schimbări"
],
"Dismiss": [
"Respingeți"
"Respinge"
],
"Displays a geolocation URL for the note.": [
"Afișează o adresă URL de geolocație pentru notiță."
@@ -1057,7 +1087,7 @@
"Afișează notițele din caietul curent. Folosește 'ls /' pentru a afișa lista de caiete."
],
"Displays usage information.": [
"Afișați informațiile de utilizare."
"Afișează informațiile de utilizare."
],
"Displays version information": [
"Afișează informații despre versiune"
@@ -1108,13 +1138,13 @@
"Dracula"
],
"Draw picture": [
"Desenați imaginea"
"Desenează imagine"
],
"Drawing": [
"Desen"
],
"Drop notes or files here": [
"Plasați notițe sau fișiere aici"
"Plasează notițe sau fișiere aici"
],
"Dropbox": [
"Dropbox"
@@ -1315,13 +1345,13 @@
"Activează înlocuire cu șablon Markdown în editorul de text îmbogățit. De exemplu, dacă este activat, tastând **aldin** va crea text aldin."
],
"Enabling encryption means *all* your notes and attachments are going to be re-synchronised and sent encrypted to the sync target.": [
"Activarea criptării înseamnă că *toate* notele și atașamentele dvs. vor fi resincronizate și trimise criptate către ținta de sincronizare."
"Activarea criptării înseamnă că *toate* notele și atașamentele dvs. vor fi resincronizate și trimise criptate către destinația de sincronizare."
],
"Encrypted": [
"Criptat"
],
"Encrypted items cannot be modified": [
"Itemii criptați nu pot fi editați"
"Elementele criptate nu pot fi editate"
],
"Encryption": [
"Criptare"
@@ -1369,7 +1399,7 @@
"Eroare deschidere notiță în editor: %s"
],
"Error. Please check that URL, username, password, etc. are correct and that the sync target is accessible. The reported error was:": [
"Eroare. Te rog să verifici dacă adresa URL, numele de utilizator, parola etc. sunt corecte și că ținta de sincronizare este accesibilă. Eroarea raportată a fost:"
"Eroare. Te rog să verifici dacă adresa URL, numele de utilizator, parola etc. sunt corecte și că destinația de sincronizare este accesibilă. Eroarea raportată a fost:"
],
"Error: %s": [
"Eroare: %s"
@@ -1447,10 +1477,10 @@
"Fail-safe"
],
"Fail-safe: Do not wipe out local data when sync target is empty (often the result of a misconfiguration or bug)": [
"Fail-safe: Nu șterge datele locale atunci când ținta de sincronizare este goală (adesea rezultatul unei configurații greșite sau al unei erori)."
"Fail-safe: Nu șterge datele locale atunci când destinația de sincronizare este goală (adesea rezultatul unei configurații greșite sau al unei erori)."
],
"Fail-safe: Sync was interrupted to prevent data loss, because the sync target is empty or damaged. To override this behaviour disable the fail-safe in the sync settings.": [
"Fail-safe: Sincronizarea a fost întreruptă pentru a preveni pierderea de date, deoarece ținta sincronizării este goală sau eronată. Pentru a anula acest comportament, dezactivează mecanismul de fail-safe din setările de sincronizare."
"Fail-safe: Sincronizarea a fost întreruptă pentru a preveni pierderea de date, deoarece destinația sincronizării este goală sau eronată. Pentru a anula acest comportament, dezactivează mecanismul de fail-safe din setările de sincronizare."
],
"Fatal error:": [
"Eroare fatală:"
@@ -1480,7 +1510,7 @@
"Găsește"
],
"Find: ": [
"Găsiți: "
"Găsește: "
],
"Finishes recording": [
"Finalizează înregistrarea"
@@ -1507,22 +1537,22 @@
"Urmează legătura"
],
"For debugging purpose only: export your profile to an external SD card.": [
"Numai în scop de depanare: exportați profilul pe un card SD extern."
"Numai în scop de depanare: exportă profilul pe un card SD extern."
],
"For example \"%s\"": [
"De exemplu, „%s”"
],
"For information on how to customise the shortcuts please visit %s": [
"Pentru informații despre cum să personalizi comenzile rapide, vizitați %s"
"Pentru informații despre cum să personalizezi comenzile rapide, vizitează %s"
],
"For more information about End-To-End Encryption (E2EE) and advice on how to enable it please check the documentation:": [
"Pentru mai multe informații despre criptarea de la un capăt la altul (E2EE) și sfaturi despre cum să o , te rog să consultați documentația:"
"Pentru mai multe informații despre criptarea de la un capăt la altul (E2EE) și sfaturi despre cum să o activezi, te rog să consulți documentația:"
],
"For the list of keyboard shortcuts and config options, type `help keymap`": [
"Pentru lista de scurtături de la tastatură și opțiuni de configurare, tastează `help keymap`"
],
"Force path style": [
"Forțați path style"
"Forțează stil cale"
],
"Forward": [
"Înainte"
@@ -1546,9 +1576,9 @@
"Generate"
],
"Generating link...": [
"Se creează link...",
"Se crează un %s...",
"Se crează un %s..."
"Se generează legătura...",
"Se generează legăturile...",
"Se generează legăturile..."
],
"Geolocation, spellcheck, editor toolbar, image resize": [
"Geolocație, verificare ortografică, bara de instrumente a editorului, redimensionare imagine"
@@ -1575,7 +1605,7 @@
"Mergi la linia"
],
"Go to source URL": [
"Accesați sursa URL"
"Mergi la URL-ul sursă"
],
"Goto Anything...": [
"Mergi la..."
@@ -1602,22 +1632,22 @@
"Hermes activat: %d"
],
"Hide %s": [
"Ascundeți %s"
"Ascunde %s"
],
"Hide advanced": [
"Ascundeți avansat"
"Ascunde avansat"
],
"Hide disabled": [
"Ascundeți dezactivat"
"Ascunde dezactivat"
],
"Hide disabled keys": [
"Ascundeți cheile dezactivate"
"Ascunde cheile dezactivate"
],
"Hide Joplin": [
"Ascundeți Joplin"
"Ascunde Joplin"
],
"Hide keyboard": [
"Ascundeți tastatura"
"Ascunde tastatura"
],
"Hide password": [
"Ascunde parola"
@@ -1698,7 +1728,7 @@
"Se importă..."
],
"Imports data into Joplin.": [
"Importați date în Joplin."
"Importă date în Joplin."
],
"In \"Manual\" mode, attachments are downloaded only when you click on them. In \"Auto\", they are downloaded when you open the note. In \"Always\", all the attachments are downloaded whether you open the note or not.": [
"În modul „Manual”, atașamentele sunt descărcate numai atunci când faci clic pe ele. În modul „Auto”, acestea sunt descărcate când deschizi notița. În modul „Mereu”, toate atașamentele sunt descărcate indiferent dacă deschizi notița sau nu."
@@ -1707,7 +1737,7 @@
"În orice comandă, se poate face referire la o notă sau la un caiet de notițe prin titlu sau ID, sau folosind comenzile rapide `$n` sau `$b` pentru nota sau caietul selectat în acel moment. Se poate utiliza `$c` pentru a se referi la elementul selectat în mod curent."
],
"In order to associate a geo-location with the note, the app needs your permission to access your location.\n\nYou may turn off this option at any time in the Configuration screen.": [
"Pentru a asocia o geolocație cu nota, aplicația are nevoie de permisiunea dvs. de a accesa locația.\n\nPuteți dezactiva această opțiune în orice moment în ecranul de configurare."
"Pentru a asocia o geolocație cu nota, aplicația are nevoie de permisiunea de a îți accesa locația.\n\nPoți dezactiva această opțiune în orice moment din ecranul de configurare."
],
"In order to do so, your entire data set will have to be encrypted and synchronised, so it is best to run it overnight.\n\nTo start, please follow these instructions:\n\n1. Synchronise all your devices.\n2. Click \"%s\".\n3. Let it run to completion. While it runs, avoid changing any note on your other devices, to avoid conflicts.\n4. Once sync is done on this device, sync all your other devices and let it run to completion.\n\nImportant: you only need to run this ONCE on one device.": [
"Pentru a face acest lucru, întregul set de date va trebui să fie criptat și sincronizat, așa că cel mai bine este să îl execuți peste noapte.\n\nPentru a începe, te rog să urmezi aceste instrucțiuni:\n\n1. Sincronizează-ți toate dispozitivele.\n2. Fă clic pe „%s”.\n3. Lasă-l să se execute până la finalizare. În timp ce se execută, evită să modifici orice notiță pe celelalte dispozitive, pentru a evita conflictele.\n4. Odată ce sincronizarea este finalizată pe acest dispozitiv, sincronizează toate celelalte dispozitive și las-o să se execute până la finalizare.\n\nImportant: nu trebuie să execuți acest lucru decât O SINGURĂ dată pe un singur dispozitiv."
@@ -1737,7 +1767,7 @@
"Sarcini de făcut incomplete"
],
"Increase indent level": [
"Creșteți nivelul de indentare"
"rește nivelul de indentare"
],
"Indent less": [
"Indentează la stânga"
@@ -1755,7 +1785,7 @@
"Inline Cod"
],
"Insert": [
"Inserați"
"Inserează"
],
"Insert Hyperlink": [
"Inserează hyperlink"
@@ -1815,7 +1845,7 @@
"Elemente care nu pot fi decriptate"
],
"Items that cannot be synchronised": [
"Elementele nu pot fi sincronizați"
"Elementele nu pot fi sincronizate"
],
"Items with error: %s": [
"Elemente cu eroarea: %s"
@@ -1959,9 +1989,9 @@
"Descriere legătură"
],
"Link has been copied to clipboard!": [
"Legătura a fost copiată în clipboard!",
"Legăturile au fost copiate în clipboard!",
"Legăturile au fost copiate în clipboard!"
"Legătura a fost copiată în Clipboard!",
"Legăturile au fost copiate în Clipboard!",
"Legăturile au fost copiate în Clipboard!"
],
"Link text": [
"Text legătură"
@@ -2045,10 +2075,10 @@
"Editor Markdown"
],
"Marks a to-do as done.": [
"Marcați o sarcină ca fiind terminată."
"Marchează o sarcină ca fiind terminată."
],
"Marks a to-do as non-completed.": [
"Marcați o sarcină ca fiind necompletă."
"Marchează o sarcină ca fiind neterminată."
],
"Markup": [
"Markup"
@@ -2063,7 +2093,7 @@
"Parola principală:"
],
"match case": [
"potrivește mărimea"
"sensibil la verzale"
],
"Math": [
"Matematică"
@@ -2117,11 +2147,16 @@
"Informații suplimentare"
],
"More than one item match \"%s\". Please narrow down your query.": [
"Mai multe elemente se potrivesc cu „%s\". Te rog să restrângi interogarea."
"Mai multe elemente se potrivesc cu „%s\". Te rog să restrângi interogarea."
],
"Most plugins have source code available for review on the plugin website.": [
"Majoritatea plugin-urilor au codul sursă disponibil pentru revizuire pe website-ul plugin-ului."
],
"Move %d note to notebook \"%s\"?": [
"Muți %d notiță în caietul „%s”?",
"Muți %d notițe în caietul „%s”?",
"Muți %d de notițe în caietul „%s”?"
],
"Move down": [
"Mută în jos"
],
@@ -2189,7 +2224,7 @@
"Profil nou"
],
"New sub-notebook": [
"Secțiune nouă"
"Sub-caiet nou"
],
"New tags:": [
"Etichete noi:"
@@ -2204,7 +2239,7 @@
"următoarea"
],
"Next match": [
"Next match"
"Următoarea potrivire"
],
"Nextcloud": [
"Nextcloud"
@@ -2399,7 +2434,7 @@
"Una dintre cheile dvs. master utilizează o metodă de criptare învechită."
],
"One or more items are currently encrypted and you may need to supply a master password. To do so please type `e2ee decrypt`. If you have already supplied the password, the encrypted items are being decrypted in the background and will be available soon.": [
"Unul sau mai multe elemente sunt criptate în prezent și este posibil să fie necesar să furnizi o parolă master. Pentru a face acest lucru, te rog să tasti `e2ee decriptare`. Dacă ați furnizat deja parola, elementele criptate sunt decriptate în fundal și vor fi disponibile în curând."
"Unul sau mai multe elemente sunt criptate și este posibil să fie necesar să furnizezi o parolă master. Pentru a face acest lucru, te rog să tastezi `e2ee decrypt`. Dacă ai furnizat deja parola, elementele criptate sunt decriptate în fundal și vor fi disponibile în curând."
],
"One or more master keys need a password.": [
"Una sau mai multe chei master au nevoie de o parolă."
@@ -2518,6 +2553,9 @@
"PDF File": [
"Fișier PDF"
],
"Per user. Minimum of 2 users.": [
"Per utilizator. Minim 2 utilizatori."
],
"Permanently delete note": [
"Șterge notița permanent"
],
@@ -2527,6 +2565,11 @@
"Permanently delete notebook \"%s\"?\n\nAll notes and sub-notebooks within this notebook will be permanently deleted.": [
"Ștergi caietul „%s” permanent?\n\nToate notițele și secțiunile din acest caiet vor fi șterse permanent."
],
"Permanently delete this note?": [
"Ștergi permanent această notiță?",
"Ștergi permanent aceste %d notițe?",
"Ștergi permanent aceste %d de notițe?"
],
"Permanently deletes the notebook, skipping the trash.": [
"Șterge permanent caietul, omițând coșul."
],
@@ -2633,19 +2676,19 @@
"Păstrează culorile la lipirea textului în editorul de text îmbogățit"
],
"Press Ctrl+D or type \"exit\" to exit the application": [
"Apăsați Ctrl+D ori scrieți \"exit\" pentru a ieși din aplicație"
"Apasă Ctrl+D sau tastează „exit pentru a ieși din aplicație"
],
"Press the shortcut": [
"Apăsați comanda rapidă"
"Apasă scurtătura"
],
"Press the shortcut and then press ENTER. Or, press BACKSPACE to clear the shortcut.": [
"Apăsați comanda rapidă și apoi apăsați ENTER. Sau apăsați BACKSPACE pentru a șterge comanda rapidă."
"Apasă scurtătura și apoi apasă ENTER. Sau apasă BACKSPACE pentru a șterge scurtătura."
],
"Press to set the decryption password.": [
"Apăsați pentru a seta parola de decriptare."
"Apasă pentru a seta parola de decriptare."
],
"previous": [
"anterior"
"anterioara"
],
"Previous match": [
"Potrivirea anterioară"
@@ -2729,7 +2772,7 @@
"Descarcă din nou modelul"
],
"Re-encrypt data": [
"Re-criptați datele"
"Re-criptează datele"
],
"Re-encryption": [
"Re-criptare"
@@ -2741,7 +2784,7 @@
"Reîncărcarea datelor locale către destinația de sincronizare"
],
"Read more about it": [
"Citiți mai multe despre aceasta"
"Citește mai multe despre acestea"
],
"Read time: %s min": [
"Durata lecturii: %s min"
@@ -2819,10 +2862,10 @@
"Înlocuiește"
],
"replace all": [
"înlocuiește tot"
"înlocuiește toate"
],
"Replace all": [
"Înlocuiește tot"
"Înlocuiește toate"
],
"Replace with...": [
"Înlocuiește cu…"
@@ -2906,7 +2949,7 @@
"Afișează fișierul în dosar"
],
"Reverse sort order": [
"Inversați ordinea sortării"
"Inversează ordinea sortării"
],
"Reverses the sorting order.": [
"Inversează ordinea sortării."
@@ -3008,7 +3051,7 @@
"Vezi lista de schimbări"
],
"See the pre-release page for more details: %s": [
"Pentru mai multe detalii, consultați pagina de pre-reluase: %s"
"Pentru mai multe detalii, consultă pagina de pre-release: %s"
],
"Select": [
"Selectează"
@@ -3032,7 +3075,7 @@
"Selectează un caiet"
],
"Send bug report": [
"Trimiteți un raport de eroare"
"Trimite un raport de eroare"
],
"Server is already running on port %d": [
"Serverul rulează deja pe portul %d"
@@ -3065,7 +3108,7 @@
"Distribuie"
],
"Share a copy of all notes in a file format that can be imported by Joplin on a computer.": [
"Partajați o copie a tuturor notițelor într-un format de fișier care poate fi importat de Joplin pe un computer."
"Partajează o copie a tuturor notițelor într-un format de fișier care poate fi importat de Joplin pe un calculator."
],
"Share a notebook with others": [
"Partajează un caiet cu alții"
@@ -3148,6 +3191,9 @@
"Sidebar": [
"Panou lateral"
],
"Sign up to Joplin Cloud": [
"Creează cont Joplin Cloud"
],
"Size": [
"Mărime"
],
@@ -3182,7 +3228,7 @@
"Unele elemente nu pot fi sincronizate."
],
"Some items cannot be synchronised. Press for more info.": [
"Unele elemente nu pot fi sincronizate. Apăsați pentru mai multe informații."
"Unele elemente nu pot fi sincronizate. Apasă pentru mai multe informații."
],
"Some items could not be synchronised. Please try to synchronise them first.": [
"Unele elemente nu au putut fi sincronizate. Te rog încearcă să le sincronizezi mai întâi."
@@ -3242,7 +3288,7 @@
"Se începe sincronizarea..."
],
"Starting to edit note. Close the editor to get back to the prompt.": [
"Începere să editeze nota. Închideți editorul pentru a reveni la prompt."
"Se începe editarea notiței. Închide editorul pentru a reveni la prompt."
],
"Statistics": [
"Statistici"
@@ -3263,7 +3309,7 @@
"Pasul 1: Activează clipper service"
],
"Step 1: Open this URL in your browser to authorise the application:": [
"Pasul 1: Deschideți adresa URL în navigatorul dumneavoastră web pentru a autoriza aplicația:"
"Pasul 1: Deschide adresa URL în navigatorul tău web pentru a autoriza aplicația:"
],
"Step 2: Enter the code provided by Dropbox:": [
"Pasul 2: Introdu codul oferit de Dropbox:"
@@ -3323,10 +3369,10 @@
"Comută la camera din față"
],
"Switch to note type": [
"Comută la tipul de notiță"
"Comută la tipul notiță"
],
"Switch to profile %d": [
"Treceți la profilul %d"
"Comută la profilul %d"
],
"Switch to the %s Editor": [
"Comută la editorul %s"
@@ -3335,13 +3381,13 @@
"Comută la editorul învechit"
],
"Switch to to-do type": [
"Treceți la tipul to-do"
"Comută la tipul „de făcut”"
],
"Switches to [notebook] - all further operations will happen within this notebook.": [
"Comută la [notebook] - toate operațiunile ulterioare vor avea loc în acest caiet."
],
"Sync as many devices as you want": [
"Sincronizați cât de multe dispozitive dori"
"Sincronizează cât de multe dispozitive dorești"
],
"Sync Status": [
"Sync Status"
@@ -3350,13 +3396,13 @@
"Starea de sincronizare (elemente sincronizate / total elemente)"
],
"Sync target must be upgraded! Run `%s` to proceed.": [
"Obiectivul de sincronizare trebuie să fie actualizat! Rulați `%s` pentru a continua."
"Destinația de sincronizare trebuie să fie actualizată! Rulează `%s` pentru a continua."
],
"Sync Target Upgrade": [
"Sync Target Upgrade"
],
"Sync to provided target (defaults to sync.target config value)": [
"Sincronizarea cu o ținta specificată (presetat la valoare de configurare sync.target)"
"Sincronizarea cu o destinație specificată (presetat la valoarea de configurare sync.target)"
],
"Sync Version: %s": [
"Versiunea de sincronizare: %s"
@@ -3380,10 +3426,10 @@
"Starea sincronizării"
],
"Synchronisation target": [
"Țintă de sincronizare"
"Destinație sincronizare"
],
"Synchronisation target: %s (%s)": [
"Țintă sincronizare: %s (%s)"
"Destinație sincronizare: %s (%s)"
],
"Synchronise": [
"Sincronizează"
@@ -3443,13 +3489,13 @@
"[Web Clipper](%s) este o extensie pentru navigatorul web care îți permite să salvezi pagini web și capturi de ecran direct din acesta."
],
"The active profile cannot be deleted. Switch to a different profile and try again.": [
"Profilul activ nu poate fi șters. Treceți la un alt profil și încercați din nou."
"Profilul activ nu poate fi șters. Comută la un alt profil și încearcă din nou."
],
"The app is now going to close. Please relaunch it to complete the process.": [
"Aplicația se va închide acum. Te rog să o relansați pentru a finaliza procesul."
"Aplicația se va închide acum. Te rog să o lansezi din nou pentru a finaliza procesul."
],
"The application did not close properly. Would you like to start in safe mode?": [
"Aplicația nu s-a închis corect. Dori să porni în modul sigur?"
"Aplicația nu s-a închis corect. Dorești să o pornești în modul sigur?"
],
"The application has been authorised - you may now close this browser tab.": [
"Aplicația a fost autorizată - acum poți închide această fereastră browserului."
@@ -3464,7 +3510,7 @@
"Aplicația trebuie repornită pentru ca aceste modificări să intre în vigoare."
],
"The attachments will no longer be watched when you switch to a different note.": [
"Atașamentele nu vor mai fi urmărite atunci când treci la o altă notă."
"Atașamentele nu vor mai fi urmărite atunci când treci la o altă notă."
],
"The command \"%s\" is only available in GUI mode": [
"Comanda „%s” este disponibilă doar în modul GUI"
@@ -3473,10 +3519,10 @@
"Parola implicită a administratorului este nesigură și nu a fost schimbată! [Change it now](%s)"
],
"The default encryption method has been changed to a more secure one and it is recommended that you apply it to your data.": [
"Metoda implicită de criptare a fost schimbată într-una mai sigură și se recomandă să o aplici datelor dumnevoastră."
"Metoda implicită de criptare a fost schimbată într-una mai sigură și se recomandă să o aplici datelor tale."
],
"The default encryption method has been changed, you should re-encrypt your data.": [
"Metoda implicită de criptare a fost modificată, ar trebui să cripti din nou datele."
"Metoda implicită de criptare a fost modificată, ar trebui să îți criptezi din nou datele."
],
"The default profile cannot be deleted": [
"Profilul implicit nu poate fi șters"
@@ -3485,12 +3531,12 @@
"Comanda editorului (poate include argumente) care va fi utilizată pentru a deschide o notă. Dacă nu este furnizat niciunul, se va încerca să se detecteze automat editorul implicit."
],
"The factor property sets how the item will grow or shrink to fit the available space in its container with respect to the other items. Thus an item with a factor of 2 will take twice as much space as an item with a factor of 1.Restart app to see changes.": [
"Proprietatea factor stabilește modul în care elementul va crește sau se va micșora pentru a se potrivi spațiului disponibil în containerul său în raport cu celelalte elemente. Astfel, un element cu un factor de 2 va ocupa de două ori mai mult spațiu decât un element cu un factor de 1. Reporniți aplicația pentru a vedea modificările."
"Proprietatea factor stabilește modul în care elementul va crește sau se va micșora pentru a se potrivi spațiului disponibil în containerul său în raport cu celelalte elemente. Astfel, un element cu un factor de 2 va ocupa de două ori mai mult spațiu decât un element cu un factor de 1. Repornește aplicația pentru a vedea modificările."
],
"The following attachment matches your search query:": [
"Următorul atașament corespunde căutării dumneavoastră:",
"Următoarele atașamente corespund căutării dumneavoastră:",
"Următoarele atașamente corespund căutării dumneavoastră:"
"Următorul atașament corespunde căutării tale:",
"Următoarele atașamente corespund căutării tale:",
"Următoarele atașamente corespund căutării tale:"
],
"The following attachments are being watched for changes:": [
"Următoarele atașamente sunt urmărite pentru modificări:"
@@ -3534,25 +3580,25 @@
"Comenzile posibile sunt:"
],
"The recipient could not be removed from the list. Please try again.\n\nThe error was: \"%s\"": [
"Destinatarul nu a putut fi eliminat din listă. Te rog să încerci din nou.\n\nEroarea a fost: „%s”"
"Destinatarul nu a putut fi eliminat din listă. Te rog să încerci din nou.\n\nEroarea a fost: „%s”"
],
"The sync target cannot be changed for the following reason: %s\n\nIf the issue cannot be resolved, you may need to clear your data first by following these instructions:\n\n%s": [
"Ținta sincronizării nu poate fi schimbată din următorul motiv: %s\n\nDacă problema nu poate fi rezolvată, va trebui să cureți datele mai întâi, urmând următoarele instrucțiuni:\n\n%s"
"Destinația de sincronizare nu poate fi schimbată din următorul motiv: %s\n\nDacă problema nu poate fi rezolvată, va trebui să cureți datele mai întâi, urmând următoarele instrucțiuni:\n\n%s"
],
"The sync target needs to be upgraded before Joplin can sync. The operation may take a few minutes to complete and the app needs to be restarted. To proceed please click on the link.": [
"Destinația de sincronizare trebuie să fie actualizată înainte ca Joplin să se poată sincroniza. Este posibil ca operațiunea să dureze câteva minute pentru a fi finalizată, iar aplicația trebuie repornită. Pentru a continua, te rog să faci clic pe legătură."
],
"The sync target needs to be upgraded. Press this banner to proceed.": [
"Destinația de sincronizare trebuie să fie actualizată. Apăsați acest banner pentru a continua."
"Destinația de sincronizare trebuie să fie actualizată. Apasă pe acest banner pentru a continua."
],
"The synchronisation password is missing.": [
"Lipsește parola de sincronizare."
],
"The tag \"%s\" already exists. Please choose a different name.": [
"Eticheta „%s” există deja. Te rog să alegi un alt nume."
"Eticheta „%s” există deja. Te rog să alegi un alt nume."
],
"The target to synchronise to. Each sync target may have additional parameters which are named as `sync.NUM.NAME` (all documented below).": [
"Ținta la care se sincronizează. Fiecare țintă de sincronizare poate avea parametri suplimentari care sunt numiți `sync.NUM.NAME` (toți documentați mai jos)."
"Destinația la care se sincronizează. Fiecare destinație de sincronizare poate avea parametri suplimentari care sunt numiți `sync.NUM.NAME` (toți documentați mai jos)."
],
"The web client does not support accepting encrypted shared notebooks. Please switch to the desktop or mobile app before accepting the share.\n\nError: \"%s\"": [
"Acceptarea caietelor partajate criptate din clientul web nu este suportată . Te rog comută la aplicația Desktop sau mobilă înainte de a accepta caietul partajat.\n\nEroare: „%s”"
@@ -3570,7 +3616,7 @@
"Serviciul web clipper nu este activat."
],
"The WebDAV implementation of %s is incompatible with Joplin, and as such is no longer supported. Please use a different sync method.": [
"Implementarea WebDAV a lui %s este incompatibilă cu Joplin și, ca atare, nu mai este susținută. Te rog să folosi o altă metodă de sincronizare."
"Implementarea WebDAV a lui %s este incompatibilă cu Joplin și, ca atare, nu mai este suportată. Te rog să folosești o altă metodă de sincronizare."
],
"Theme": [
"Temă"
@@ -3600,7 +3646,7 @@
"Sincronizarea acestor elemente a eșuat și au fost marcate ca „ignorate”. Astfel ele nu vor mai cauza apariția atenționărilor de sincronizare, dar nici nu vor fi sincronizate. Pentru a nu le marca ca ignorate, apară pe „reîncearcă”."
],
"These items will remain on the device but will not be uploaded to the sync target. In order to find these items, either search for the title or the ID (which is displayed in brackets above).": [
"Aceste elemente vor rămâne pe dispozitiv, dar nu vor fi încărcate pe obiectivul de sincronizare. Pentru a găsi aceste elemente, căutați fie titlul, fie ID-ul (care este afișat în paranteze mai sus)."
"Aceste elemente vor rămâne pe dispozitiv, dar nu vor fi încărcate în destinația de sincronizare. Pentru a găsi aceste elemente, caută fie titlul, fie ID-ul (care este afișat în paranteze mai sus)."
],
"These plugins enhance the Markdown renderer with additional features. Please note that, while these features might be useful, they are not standard Markdown and thus most of them will only work in Joplin. Additionally, some of them are *incompatible* with the WYSIWYG editor. If you open a note that uses one of these plugins in that editor, you will lose the plugin formatting. It is indicated below which plugins are compatible or not with the WYSIWYG editor.": [
"Aceste plugin-uri îmbunătățesc funcția de redare Markdown cu caracteristici suplimentare. Te rog să reții că, deși aceste caracteristici ar putea fi utile, ele nu sunt Markdown standard și, prin urmare, cele mai multe dintre ele vor funcționa numai în Joplin. În plus, unele dintre ele sunt *incompatibile* cu editorul WYSIWYG. Dacă deschizi o notiță care utilizează unul dintre aceste plugin-uri în acel editor, vei pierde formatarea plugin-ului. Mai jos este indicat ce plugin-uri sunt compatibile sau nu cu editorul WYSIWYG."
@@ -3621,22 +3667,22 @@
"Acest desen poate avea modificări nesalvate."
],
"This is an advanced tool to show the attachments that are linked to your notes. Please be careful when deleting one of them as they cannot be restored afterwards.": [
"Acesta este un instrument avansat pentru a afișa atașamentele care sunt legate de notele dumnevoastră. Te rog să fiți atenți la ștergerea uneia dintre ele, deoarece acestea nu pot fi restaurate ulterior."
"Acesta este un instrument avansat pentru a afișa atașamentele care sunt legate de notele dumnevoastră. Te rog să fii atent la ștergerea uneia dintre ele, deoarece acestea nu pot fi restaurate ulterior."
],
"This note could not be deleted: %s": [
"Acest fișier nu a putut fi deschis: %s",
"Acest fișier nu a putut fi deschis: %s",
"Această notiță nu a putut fi ștearsă: %s"
"Această notiță nu a putut fi ștearsă: %s",
"Aceste notiție nu au putut fi șterse: %s",
"Aceste notițe nu au putut fi șterse: %s"
],
"This note could not be duplicated: %s": [
"Aceste notițe nu pot fi duplicate: %s",
"Caietul de notițe nu a puut fi salvat: %s",
"Caietul de notițe nu a puut fi salvat: %s"
"Această notiță nu a putut fi duplicată: %s",
"Aceste notițe nu au putut fi duplicate: %s",
"Aceste notițe nu au putut fi duplicate: %s"
],
"This note could not be moved: %s": [
"Aceste notițe nu pot fi mutate: %s",
"Caietul de notițe nu a puut fi salvat: %s",
"Caietul de notițe nu a puut fi salvat: %s"
"Această notiță nu a putut fi mutată: %s",
"Aceste notițe nu au putut fi mutate: %s",
"Aceste notițe nu au putut fi mutate: %s"
],
"This note does not have geolocation information.": [
"Această notă nu conține informații despre geolocalizare."
@@ -3654,7 +3700,7 @@
"Acest plugin nu suportă %s."
],
"This Rich Text editor has a number of limitations and it is recommended to be aware of them before using it.": [
"Acest editor Rich Text are o serie de limitări și este recomandat să le cunoaști înainte de a-l utiliza."
"Acest editor de text îmbogățit are o serie de limitări și este recomandat să le cunoști înainte de a-l utiliza."
],
"This service allows the browser extension to communicate with Joplin. When enabling it your firewall may ask you to give permission to Joplin to listen to a particular port.": [
"Acest serviciu permite extensia browserul-ui pentru a comunica cu Joplin. Atunci când se permite firewall poate cere să dea permisiunea Joplin pentru a asculta un anumit port."
@@ -3666,7 +3712,7 @@
"Acest lucru va permite ca Joplin să ruleze în fundal. Se recomandă să această setare pentru ca notele dvs. să fie sincronizate în mod constant, reducând astfel numărul de conflicte."
],
"This will open a new screen. Save your current changes?": [
"Se va deschide un nou ecran. Dori să salvi modificările dumnevoastră actuale?"
"Se va deschide un nou ecran. Dorești să îți salvezi modificările actuale?"
],
"This will permanently delete all items in the trash. Continue?": [
"Acest lucru va șterge permanent toate elementele din coșul de gunoi. Continui?"
@@ -3702,7 +3748,7 @@
"Pentru a intra în linia de comandă, tastează „:”"
],
"To exit command line mode, press ESCAPE": [
"Pentru a ieși din modul linie de comandă, apăsați ESCAPE"
"Pentru a ieși din modul linie de comandă, apasă ESCAPE"
],
"To manually sort the notes, the sort order must be changed to \"%s\" in the menu \"%s\" > \"%s\"": [
"Pentru a sorta notițele manual, ordinea trebuie sa fie schimbată în „%s” în meniu „%s” > „%s”"
@@ -3711,10 +3757,10 @@
"Pentru a maximiza/minimiza consola, tastează „tc”."
],
"To move from one pane to another, press Tab or Shift+Tab.": [
"Pentru a muta dintr-un panou în altul, apăsați Tab ori Shift+Tab."
"Pentru a te muta dintr-un panou în altul, apasă Tab sau Shift+Tab."
],
"To retry decryption of these items. Run `e2ee decrypt --retry-failed-items`": [
"Pentru a reîncerca decriptarea acestor elemente. Rulați `e2ee decrypt --retry-failed-items`"
"Pentru a reîncerca decriptarea acestor elemente. Rulează `e2ee decrypt --retry-failed-items`"
],
"To switch the profile, the app is going to close and you will need to restart it.": [
"Pentru a schimba profilul, aplicația se va închide și va trebui să o reporniți."
@@ -3804,13 +3850,13 @@
"Încearcă acum"
],
"Type `help [command]` for more information about a command; or type `help all` for the complete usage information.": [
"Tastați `help [command]` pentru mai multe informații despre o comandă; sau tastați „help all\" pentru informații complete de utilizare."
"Tastează `help [command]` pentru mai multe informații despre o comandă; sau tastează `help all` pentru informații complete de utilizare."
],
"Type `joplin help` for usage information.": [
"Tastați `joplin help` pentru informații de utilizare."
"Tastează `joplin help` pentru informații de utilizare."
],
"Type a note title or part of its content to jump to it. Or type # followed by a tag name, or @ followed by a notebook name. Or type : to search for commands.": [
"Tastați titlul unei notițe sau o parte din conținutul acesteia pentru a trece la ea. Sau tastați # urmat de numele unei etichete sau @ urmat de numele unui caiet. Sau tastați : pentru a căuta comenzi."
"Tastează titlul unei notițe sau o parte din conținutul acesteia pentru a trece la ea. Sau tastează # urmat de numele unei etichete sau @ urmat de numele unui caiet. Sau tastează : pentru a căuta comenzi."
],
"Type a note title to search for it.": [
"Tastează un titlu de notiță pentru a-l căuta."
@@ -3849,7 +3895,7 @@
"Unknown flag: %s"
],
"Unknown item type downloaded - please upgrade Joplin to the latest version": [
"Tip de element necunoscut descărcat - te rog să actualizi Joplin la cea mai recentă versiune"
"Tip de element necunoscut descărcat - te rog să actualizezi Joplin la cea mai recentă versiune"
],
"Unknown platform": [
"Platformă necunoscută"
@@ -3921,7 +3967,7 @@
"Actualizare majoră"
],
"Upgrade the sync target to the latest version.": [
"Actualizează ținta de sincronizare la cea mai recentă versiune."
"Actualizează destinația de sincronizare la cea mai recentă versiune."
],
"URL": [
"URL"
@@ -3942,7 +3988,7 @@
"Folosește săgețile și tastele „page up/down” pentru a derula listele și zonele de text (inclusiv această consolă)."
],
"Use the arrows to move the layout items. Press \"Escape\" to exit.": [
"Folosiți săgețile pentru a muta elementele de prezentare. Apăsați “Escape” pentru a ieși."
"Folosește săgețile pentru a muta elementele de aspect. Apasă „Escape” pentru a ieși."
],
"Use the legacy Markdown editor": [
"Folosește editorul Markdown învechit"
@@ -3951,7 +3997,7 @@
"Folosește această opțiune pentru a reconstrui indexul de căutare dacă există o problemă cu căutarea. Poate dura mult timp, în funcție de numărul de notițe."
],
"Use your biometrics to secure access to your application. You can always set it up later in Settings.": [
"Folosiți datele biometrice pentru a securiza accesul la aplicația dvs. Puteți oricând să o configuri mai târziu în Setări."
"Folosește datele biometrice pentru a securiza accesul la aplicație. Poți oricând să le configurezi mai târziu în Setări."
],
"Used for most text in the markdown editor. If not found, a generic proportional (variable width) font is used.": [
"Folosit pentru majoritatea textului din editorul markdown. Dacă nu se găsește, se utilizează un font generic proporțional (cu lățime variabilă)."
@@ -3969,7 +4015,7 @@
"Valid"
],
"Verify your identity": [
"Verificați identitatea dumneavoastră"
"Verifică-ți identitatea"
],
"View": [
"Vizualizează"
@@ -4059,7 +4105,7 @@
"Când este creată o nouă listă de făcut:"
],
"When enabled, the application will scan your attachments and extract the text from it. This will allow you to search for text in these attachments.": [
"Atunci când este activată, aplicația va scana atașamentele și va extrage textul din ele. Acest lucru va permite să căutați text în aceste atașamente."
"Atunci când este activată, aplicația va scana atașamentele și va extrage textul din ele. Acest lucru îți va permite să cauți text în atașamente."
],
"Whisper": [
"Whisper"
@@ -4083,7 +4129,7 @@
"Da"
],
"You are about to attach a large image (%dx%d pixels). Would you like to resize it down to %d pixels before attaching it?": [
"Ești pe cale să atașezi o imagine mare (%dx%d pixeli). Dori să îl redimensionați până la %d pixeli înainte de a-l atașa?"
"Ești pe cale să atașezi o imagine mare (%dx%d pixeli). Dorești să o redimensionezi la %d pixeli înainte de a o atașa?"
],
"You are logged in into Joplin Cloud, you can leave this screen now.": [
"Ești autentificat la Joplin Cloud, poți acum să părăsești acest ecran."
@@ -4092,16 +4138,16 @@
"Rulezi versiunea Intel a Joplin pe un procesor cu siliciu Apple. Descarcă versiunea pentru procesoare Apple pentru o performanță mai mare."
],
"You currently have no notebooks.": [
"Nu aveți niciun caiet de notițe activ."
"Nu ai niciun caiet de notițe."
],
"You do not have any installed plugin.": [
"Nu aveți niciun plugin instalat."
"Nu ai niciun plugin instalat."
],
"You may also type `status` for more information.": [
"De asemenea, poți tasta `status` pentru mai multe informații."
],
"You may use the tool below to re-encrypt your data, for example if you know that some of your notes are encrypted with an obsolete encryption method.": [
"Puteți utiliza instrumentul de mai jos pentru a cripta din nou datele, de exemplu, dacă știți că unele note sunt criptate cu o metodă de criptare învechită."
"Poți utiliza instrumentul de mai jos pentru a îți cripta din nou datele, de exemplu, dacă știi că unele note sunt criptate cu o metodă de criptare învechită."
],
"You were unable to connect to Joplin Cloud. Please check your credentials and try again. Error:": [
"Nu ai putut să te conectezi la Joplin Cloud. Te rog verifică-ți datele de conectare și încearcă din nou. Eroare:"

View File

@@ -2,18 +2,43 @@
"\"%s\" is missing the required \"%s\" property.": [
"\"%s\" chýba požadovaná vlastnosť \"%s\"."
],
"%d day": [
"%d deň",
"%d dni",
"%d dní"
],
"%d GB": [
"%d GB"
],
"%d GB storage space": [
"%d GB úložného priestoru"
],
"%d hour": [
"%d hodina",
"%d hodiny",
"%d hodín"
],
"%d MB": [
"%d MB"
],
"%d MB per note or attachment": [
"%d MB na poznámku alebo prílohu"
],
"%d minute": [
"%d minúta",
"%d minúty",
"%d minút"
],
"%d note matches this pattern. Delete it?": [
"%d poznámka zodpovedá tomuto vzoru. Vymazať ju?",
"%d poznámky zodpovedajú tomuto vzoru. Vymazať ich?",
"%d poznámok zodpovedá tomuto vzoru. Vymazať ich?"
],
"%d note will be permanently deleted. Continue?": [
"%d poznámka bude natrvalo vymazaná. Pokračovať?",
"%d poznámky budú natrvalo vymazané. Pokračovať?",
"%d poznámok bude natrvalo vymazaných. Pokračovať?"
],
"%s": [
"%s"
],
@@ -65,6 +90,11 @@
"%s: %d": [
"%s: %d"
],
"%s: %d note": [
"%s: %d poznámka",
"%s: %d poznámky",
"%s: %d poznámok"
],
"%s: %d/%d": [
"%s: %d/%d"
],
@@ -1234,7 +1264,7 @@
"Povoliť biometrické overenie?"
],
"Enable deflist syntax": [
"Povolenie syntax deflist"
"Povol syntax deflist"
],
"Enable encryption": [
"Povoliť šifrovanie"
@@ -2122,6 +2152,11 @@
"Most plugins have source code available for review on the plugin website.": [
"Väčšina doplnkov má zdrojový kód k dispozícii na kontrolu na webovej stránke doplnku."
],
"Move %d note to notebook \"%s\"?": [
"Presunúť %d poznámku do zápisníka „%s“?",
"Presunúť %d poznámky do zápisníka „%s“?",
"Presunúť %d poznámok do zápisníka „%s“?"
],
"Move down": [
"Presunúť nadol"
],
@@ -2518,6 +2553,9 @@
"PDF File": [
"Súbor PDF"
],
"Per user. Minimum of 2 users.": [
"Na používateľa. Minimálne 2 používatelia."
],
"Permanently delete note": [
"Natrvalo odstrániť poznámku"
],
@@ -2527,6 +2565,11 @@
"Permanently delete notebook \"%s\"?\n\nAll notes and sub-notebooks within this notebook will be permanently deleted.": [
"Trvalo odstrániť zápisník „%s“?\n\nVšetky poznámky a podradené zápisníky v rámci tohto zápisníka budú natrvalo vymazané."
],
"Permanently delete this note?": [
"Natrvalo odstrániť túto poznámku?",
"Natrvalo odstrániť tieto %d poznámky?",
"Natrvalo odstrániť týchto %d poznámok?"
],
"Permanently deletes the notebook, skipping the trash.": [
"Trvalo odstráni zápisník, pričom vynechá kôš."
],

View File

@@ -1,6 +1,6 @@
{
"name": "@joplin/lib",
"version": "3.3.0",
"version": "3.3.1",
"description": "Joplin Core library",
"author": "Laurent Cozic",
"homepage": "",
@@ -43,15 +43,15 @@
"@adobe/css-tools": "4.4.1",
"@aws-sdk/client-s3": "3.296.0",
"@aws-sdk/s3-request-presigner": "3.296.0",
"@joplin/fork-htmlparser2": "^4.1.57",
"@joplin/fork-sax": "^1.2.61",
"@joplin/fork-uslug": "^2.0.0",
"@joplin/htmlpack": "~3.3",
"@joplin/onenote-converter": "~3.3",
"@joplin/renderer": "~3.3",
"@joplin/turndown": "^4.0.79",
"@joplin/turndown-plugin-gfm": "^1.0.61",
"@joplin/utils": "~3.3",
"@joplin/fork-htmlparser2": "^4.1.58",
"@joplin/fork-sax": "^1.2.62",
"@joplin/fork-uslug": "^2.0.1",
"@joplin/htmlpack": "^3.3.1",
"@joplin/onenote-converter": "^3.3.1",
"@joplin/renderer": "^3.3.1",
"@joplin/turndown": "^4.0.80",
"@joplin/turndown-plugin-gfm": "^1.0.62",
"@joplin/utils": "^3.3.1",
"@types/nanoid": "3.0.0",
"adm-zip": "0.5.16",
"async-mutex": "0.5.0",

View File

@@ -337,4 +337,9 @@ describe('services_KeymapService', () => {
}
});
});
it('getAriaKeyShortcuts should return undefined if there is no associated shortcut', () => {
keymapService.registerCommandAccelerator('some-command', null);
expect(keymapService.getAriaKeyShortcuts('some-command')).toBe(undefined);
});
});

View File

@@ -427,9 +427,9 @@ export default class KeymapService extends BaseService {
// Electron and aria-keyshortcuts have slightly different formats for accelerators.
// See https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-keyshortcuts
public getAriaKeyShortcuts(commandName: string) {
public getAriaKeyShortcuts(commandName: string): string|undefined {
const electronAccelerator = this.getAccelerator(commandName);
return electronAccelerator.replace('Ctrl', 'Control');
return electronAccelerator?.replace('Ctrl', 'Control');
}
public on<Name extends EventName>(eventName: Name, callback: EventListenerCallback<Name>) {

View File

@@ -159,9 +159,11 @@ export default class JoplinSettings {
}
/**
* @deprecated Use joplin.settings.values()
* Gets a setting value (only applies to setting you registered from your plugin).
*
* Gets a setting value (only applies to setting you registered from your plugin)
* Note: If you want to retrieve all your plugin settings, for example when the plugin starts,
* it is recommended to use the `values()` function instead - it will be much faster than
* calling `value()` multiple times.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
public async value(key: string): Promise<any> {

View File

@@ -19,7 +19,7 @@ import FileApiDriverLocal from './file-api-driver-local';
import * as mimeUtils from './mime-utils';
import BaseItem from './models/BaseItem';
import { Size } from '@joplin/utils/types';
import { arch } from 'os';
import { cpus } from 'os';
const { _ } = require('./locale');
const http = require('http');
const https = require('https');
@@ -112,6 +112,7 @@ interface ShimInitOptions {
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
nodeSqlite: any;
pdfJs: typeof pdfJsNamespace;
isAppleSilicon?: ()=> boolean;
}
function shimInit(options: ShimInitOptions = null) {
@@ -123,6 +124,7 @@ function shimInit(options: ShimInitOptions = null) {
electronBridge: null,
nodeSqlite: null,
pdfJs: null,
isAppleSilicon: () => false,
...options,
};
@@ -172,11 +174,13 @@ function shimInit(options: ShimInitOptions = null) {
};
shim.isAppleSilicon = () => {
return shim.isMac() && arch() === 'arm64';
return options.isAppleSilicon ? options.isAppleSilicon() : false;
};
shim.platformArch = () => {
return arch();
const c = cpus();
if (!c.length) return '';
return c[0].model;
};
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied

View File

@@ -4,7 +4,7 @@
"access": "public"
},
"description": "Used to import a OneNote archive into Joplin",
"version": "3.3.0",
"version": "3.3.1",
"license": "AGPL-3.0-or-later",
"repository": "https://github.com/laurent22/joplin/tree/dev/packages/onenote-converter",
"main": "./pkg/onenote_converter.js",

View File

@@ -1,6 +1,6 @@
{
"name": "@joplin/plugin-repo-cli",
"version": "3.3.0",
"version": "3.3.1",
"description": "",
"main": "index.js",
"bin": "./dist/index.js",
@@ -18,9 +18,9 @@
"author": "",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@joplin/lib": "~3.3",
"@joplin/tools": "~3.3",
"@joplin/utils": "~3.3",
"@joplin/lib": "^3.3.1",
"@joplin/tools": "^3.3.1",
"@joplin/utils": "^3.3.1",
"fs-extra": "11.2.0",
"gh-release-assets": "2.0.1",
"node-fetch": "2.6.7",

View File

@@ -1,6 +1,6 @@
{
"name": "@joplin/react-native-saf-x",
"version": "3.3.0",
"version": "3.3.1",
"description": "a module to help work with scoped storages on android easily",
"main": "src/index",
"react-native": "src/index",

View File

@@ -1,6 +1,6 @@
{
"name": "@joplin/renderer",
"version": "3.3.0",
"version": "3.3.1",
"description": "The Joplin note renderer, used the mobile and desktop application",
"repository": "https://github.com/laurent22/joplin/tree/dev/packages/renderer",
"main": "index.js",
@@ -30,9 +30,9 @@
"typescript": "5.4.5"
},
"dependencies": {
"@joplin/fork-htmlparser2": "^4.1.57",
"@joplin/fork-uslug": "^2.0.0",
"@joplin/utils": "~3.3",
"@joplin/fork-htmlparser2": "^4.1.58",
"@joplin/fork-uslug": "^2.0.1",
"@joplin/utils": "^3.3.1",
"font-awesome-filetypes": "2.1.0",
"fs-extra": "11.2.0",
"highlight.js": "11.10.0",

View File

@@ -59,7 +59,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -241,7 +241,7 @@ msgstr "ينشئ ملاحظة جديدة."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -413,7 +413,7 @@ msgid "Add body"
msgstr "أضف الجسم"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "إضافة جديدة"
@@ -542,7 +542,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -636,7 +636,7 @@ msgstr "يرفق الملف المعطى بالملاحظة."
msgid "attachment"
msgstr "المرفق"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "المرفقات"
@@ -677,7 +677,7 @@ msgstr "لم تكتمل المصادقة (لم أستلم الرمز الممي
msgid "Authorisation token:"
msgstr "الرمز المميز للتصريح:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -765,7 +765,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -810,7 +810,7 @@ msgstr "يمكن العرض و التعديل"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "إلغاء"
@@ -833,7 +833,7 @@ msgstr "الإلغاء جارٍ..."
msgid "Cancelling... Please wait."
msgstr "الإلغاء جارٍ... فضلاً انتظر."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "لا يمكن الوصول إلى"
@@ -959,7 +959,7 @@ msgstr "أحرف"
msgid "Characters excluding spaces"
msgstr "الأحرف بإستثناء المسافات"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "خانة اختيار"
@@ -1049,7 +1049,7 @@ msgstr "إغلاق"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1114,7 +1114,7 @@ msgstr "عرض بلغة البرمجة"
msgid "Collaborate on a notebook with others"
msgstr "تعاون مع الآخرين على دفاتر الملاحظات"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "تعاون مع الآخرين على دفاتر الملاحظات"
@@ -1152,7 +1152,7 @@ msgstr "أمر"
msgid "Command"
msgstr "أمر"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "لوحة الأوامر"
@@ -1316,7 +1316,7 @@ msgstr "نسخ الصورة"
msgid "Copy Link Address"
msgstr "نسخ عنوان الرابط"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1383,7 +1383,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "تعذر الاتصال بمستودع المكونات الإضافية."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "تعذر تصدير الملاحظات: %s"
@@ -1480,7 +1480,7 @@ msgstr "تم إنشاؤها: %d."
msgid "Created: %s"
msgstr "الإنشاء في: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "إنشاء دفتر جديد داخل الفتر الأب."
@@ -1939,7 +1939,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2447,7 +2447,7 @@ msgstr "تم التصدير بنجاح"
msgid "Exporting profile..."
msgstr "جارٍ تصدير ملف التعريف..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "التصدير إلى \"%s\" بتنسيق \"%s\". فضلاً انتظر..."
@@ -2693,7 +2693,7 @@ msgid "Go to source URL"
msgstr "الذهاب إلى عنوان URL المصدر"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "اذهب إلى أي شيء..."
@@ -2813,7 +2813,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3120,7 +3120,7 @@ msgstr "آخر خطأ: %s"
msgid "Join us on %s"
msgstr "انضم إلينا على Twitter"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3694,8 +3694,8 @@ msgstr "يتوفر تحديث ، هل تريد تنزيله الآن؟"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "ملاحظة جديدة"
@@ -3735,8 +3735,8 @@ msgstr "وسوم جديدة:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "قائمة جديدة للمهام"
@@ -3775,7 +3775,7 @@ msgstr "كلّا"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "لا"
@@ -3849,7 +3849,7 @@ msgstr ""
"لا يمكن المصادقة باستخدام %s. يرجى التزويد بأي من بيانات اعتماد الدخول "
"المفقودة."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3960,7 +3960,7 @@ msgstr "ملاحظة: عند مشاركة ملاحظة ، لن يتم تشفير
msgid "Note&book"
msgstr "دفتر &ملاحظات"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "دفتر ملاحظات"
@@ -4025,6 +4025,7 @@ msgstr "تنسيق التاريخ"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4117,6 +4118,11 @@ msgstr ""
msgid "Open it"
msgstr "فتح"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "افتح %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "فتح عارض PDF"
@@ -4580,7 +4586,7 @@ msgstr "نشر الملاحظة..."
msgid "Publish Notes"
msgstr "نشر الملاحظات"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "أنشر الملاحظات على الإنترنت"
@@ -4591,7 +4597,7 @@ msgid "QR Code"
msgstr "رمز"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4656,7 +4662,7 @@ msgstr "أمر"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "ترويسة"
@@ -4812,7 +4818,7 @@ msgstr "الموارد: %d."
msgid "Restart and upgrade"
msgstr "أعد التشغيل ورقّي"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "أعد التشغيل ورقّي"
@@ -5024,7 +5030,7 @@ msgstr "البحث في كل الملاحظات"
msgid "Search in current note"
msgstr "البحث في الملاحظة الحاليّة"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "لا نتائج"
@@ -5059,7 +5065,7 @@ msgstr "سجل التغيير بكامله"
msgid "See the pre-release page for more details: %s"
msgstr "أنظر صفحة نسخ ما قبل الإصدار للمزيد من المعلومات: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "اختر"
@@ -5288,6 +5294,11 @@ msgstr ""
msgid "Sidebar"
msgstr "الشريط الجانبي"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "حجم"
@@ -5621,7 +5632,7 @@ msgstr "يزامن مع الوجهة المذكورة (قيمة الإعداد
msgid "Sync Version: %s"
msgstr "النسخة المتزامنة: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "زامِن ملاحظاتك"
@@ -5754,7 +5765,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr "سيتم إغلاق التطبيق الآن. يرجى إعادة تشغيله لإكمال العملية."
@@ -6251,7 +6262,7 @@ msgid ""
msgstr "يرجى اتباع الخطوات التالية للسماح لـ Joplin بالمزامنة مع Dropbox:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6453,7 +6464,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "أكتب `joplin help` لمعلومات الاستخدام."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6462,7 +6473,7 @@ msgstr ""
"اكتب عنوان ملاحظة أو جزء من محتواه للانتقال إليه. أو اكتب # متبوعاً بإسم وسم، "
"أو @ متبوعاً باسم دفتر ملاحظات. أو اكتب : للبحث عن الأوامر."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "أكتب وسوماً جديدة أو اخترها من القائمة"
@@ -6894,7 +6905,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6917,12 +6928,12 @@ msgstr "نعم"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "نعم"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -61,7 +61,7 @@ msgid "(wysiwyg: %s)"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -226,7 +226,7 @@ msgstr "Създава нова бележка."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -394,7 +394,7 @@ msgid "Add body"
msgstr ""
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "заглавие"
@@ -525,7 +525,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -617,7 +617,7 @@ msgstr "Прикачва зададения файл към бележката."
msgid "attachment"
msgstr "Прикачи файл"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Прикачи файл"
@@ -662,7 +662,7 @@ msgstr "Оторизирането не беше завършено (не пол
msgid "Authorisation token:"
msgstr "Оторизационен жетон:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -751,7 +751,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -797,7 +797,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Отмени"
@@ -820,7 +820,7 @@ msgstr "Отменям..."
msgid "Cancelling... Please wait."
msgstr "Отменям... Моля изчакайте."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Няма достъп до %s"
@@ -950,7 +950,7 @@ msgstr ""
msgid "Characters excluding spaces"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Поле за отметка"
@@ -1044,7 +1044,7 @@ msgstr ""
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1111,7 +1111,7 @@ msgstr "Код"
msgid "Collaborate on a notebook with others"
msgstr "Моля първо създайте тетрадка"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
#, fuzzy
msgid "Collaborate on notebooks with others"
msgstr "Моля първо създайте тетрадка"
@@ -1150,7 +1150,7 @@ msgstr ""
msgid "Command"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr ""
@@ -1320,7 +1320,7 @@ msgstr "Копирай жетона"
msgid "Copy Link Address"
msgstr "Копирай адреса на линка"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1383,7 +1383,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr ""
@@ -1487,7 +1487,7 @@ msgstr "Създадени: %d."
msgid "Created: %s"
msgstr "Създаден: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Създава нова тетрадка."
@@ -1964,7 +1964,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2500,7 +2500,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Импортирам на бележки..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Експортирам към \"%s\" във формат \"%s\". Моля изчакайте..."
@@ -2742,7 +2742,7 @@ msgid "Go to source URL"
msgstr "Иди на уеб адреса (URL)"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Отиди на нещо..."
@@ -2866,7 +2866,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3160,7 +3160,7 @@ msgstr "Последна грешка: %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3743,8 +3743,8 @@ msgstr "Има обновление, искате ли да го свалите
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Нова бележка"
@@ -3787,8 +3787,8 @@ msgstr "Нови тагове:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Нова задача"
@@ -3828,7 +3828,7 @@ msgstr "н"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Не"
@@ -3903,7 +3903,7 @@ msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr ""
"Не сме оторизирани за %s. Моля въведете липсващите оторизационни данни."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -4019,7 +4019,7 @@ msgstr ""
msgid "Note&book"
msgstr "Тетрадки"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
#, fuzzy
msgid "Notebook"
@@ -4086,6 +4086,7 @@ msgstr "Формат за дати"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4185,6 +4186,11 @@ msgstr ""
msgid "Open it"
msgstr "Отвори..."
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Отвори %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr ""
@@ -4650,7 +4656,7 @@ msgstr "Възстановени бележки"
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4661,7 +4667,7 @@ msgid "QR Code"
msgstr "Код"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4726,7 +4732,7 @@ msgstr ""
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Заглавие"
@@ -4880,7 +4886,7 @@ msgstr "Ресурси: %d."
msgid "Restart and upgrade"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Страничен панел"
@@ -5089,7 +5095,7 @@ msgstr "Търсене във всички бележки"
msgid "Search in current note"
msgstr "Търсене в настоящата бележка"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Търсене..."
@@ -5124,7 +5130,7 @@ msgstr "Запази промените"
msgid "See the pre-release page for more details: %s"
msgstr "Вижте страницата за експерименталните версии за повече подробности: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
#, fuzzy
msgid "Select"
@@ -5359,6 +5365,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Страничен панел"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin експорт файл"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr ""
@@ -5696,7 +5707,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Нова версия: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#, fuzzy
msgid "Sync your notes"
msgstr "Сортирай бележките по"
@@ -5833,7 +5844,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6293,7 +6304,7 @@ msgstr ""
"стъпки:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6498,7 +6509,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Въведете `joplin help` за информация за употребата."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
#, fuzzy
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
@@ -6508,7 +6519,7 @@ msgstr ""
"Напишете заглавие на бележка на която да идем. Или напишете # следвано от "
"име на таг, или @ следване от име на тетрадка."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Напишете нови тагове или изберете от списъка"
@@ -6945,7 +6956,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6969,12 +6980,12 @@ msgstr "Да"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Да"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -62,7 +62,7 @@ msgid "(wysiwyg: %s)"
msgstr "(dosljedan izgled: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -233,7 +233,7 @@ msgstr "Kreira novu bilješku."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -403,7 +403,7 @@ msgid "Add body"
msgstr "Dodaj tekst"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "Dodaj naziv"
@@ -533,7 +533,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -624,7 +624,7 @@ msgstr "Prilaže datu datoteku bilješci."
msgid "attachment"
msgstr "Prilozi"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Prilozi"
@@ -669,7 +669,7 @@ msgstr "Ovjera nije završena (nije primljena potvrda /token/)."
msgid "Authorisation token:"
msgstr "Token za ovjeru:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -758,7 +758,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -804,7 +804,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Otkaži"
@@ -827,7 +827,7 @@ msgstr "Prekidam..."
msgid "Cancelling... Please wait."
msgstr "Prekidam... Pričekajte."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Ne mogu pristupiti %s"
@@ -957,7 +957,7 @@ msgstr "Znakova"
msgid "Characters excluding spaces"
msgstr "Znakova bez razmaka"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Polje za kvačicu"
@@ -1050,7 +1050,7 @@ msgstr "Zatvori"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1117,7 +1117,7 @@ msgstr "Kōd"
msgid "Collaborate on a notebook with others"
msgstr "Prvo kreirajte bilježnicu"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
#, fuzzy
msgid "Collaborate on notebooks with others"
msgstr "Prvo kreirajte bilježnicu"
@@ -1156,7 +1156,7 @@ msgstr ""
msgid "Command"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr ""
@@ -1328,7 +1328,7 @@ msgstr "Kopiraj token"
msgid "Copy Link Address"
msgstr "Kopiraj adresu veze"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1398,7 +1398,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Neuspjelo prenošenje bilješki: %s"
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
#, fuzzy
msgid "Could not export notes: %s"
msgstr "Neuspjelo prenošenje bilješki: %s"
@@ -1504,7 +1504,7 @@ msgstr "Kreirano: %d."
msgid "Created: %s"
msgstr "Kreirano: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Kreira novu bilježnicu."
@@ -1981,7 +1981,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2510,7 +2510,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Prenosim profil..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
#, fuzzy
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Prenosim na \"%s\" u \"%s\" formatu. Pričekajte..."
@@ -2755,7 +2755,7 @@ msgid "Go to source URL"
msgstr "Idi do izvornog URL-a"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Pronađite bilo šta..."
@@ -2877,7 +2877,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3191,7 +3191,7 @@ msgstr "Zadnja greška: %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3780,8 +3780,8 @@ msgstr "Nova je verzija dostupna. Želite li je preuzeti?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nova bilješka"
@@ -3823,8 +3823,8 @@ msgstr "Nove oznake:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Novi zadatak"
@@ -3864,7 +3864,7 @@ msgstr "Ne"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Ne"
@@ -3938,7 +3938,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Nije ovjereno sa %s. Molimo unesite podatke koji nedostaju."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -4060,7 +4060,7 @@ msgstr ""
msgid "Note&book"
msgstr "Bilježnice"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
#, fuzzy
msgid "Notebook"
@@ -4126,6 +4126,7 @@ msgstr "Oblik datuma"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4223,6 +4224,11 @@ msgstr ""
msgid "Open it"
msgstr "Otvori..."
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Otvori %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
#, fuzzy
msgid "Open PDF viewer"
@@ -4694,7 +4700,7 @@ msgstr "Podijeli bilješku..."
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4705,7 +4711,7 @@ msgid "QR Code"
msgstr "Kōd"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4770,7 +4776,7 @@ msgstr ""
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Naslov"
@@ -4925,7 +4931,7 @@ msgstr "Resursi: %d."
msgid "Restart and upgrade"
msgstr "Glavni ključevi koje treba nadograditi"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Glavni ključevi koje treba nadograditi"
@@ -5135,7 +5141,7 @@ msgstr "Pretraži sve bilješke"
msgid "Search in current note"
msgstr "Potraži u trenutnoj bilješci"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Nema resursa!"
@@ -5171,7 +5177,7 @@ msgid "See the pre-release page for more details: %s"
msgstr ""
"Za više informacija vidjeti stranicu sa verzijama pred objavljivanje: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
#, fuzzy
msgid "Select"
@@ -5405,6 +5411,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Bočni meni"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin forum"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Veličina"
@@ -5746,7 +5757,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Verzija sinhronizacije: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#, fuzzy
msgid "Sync your notes"
msgstr "Sortiraj bilješke"
@@ -5883,7 +5894,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6378,7 +6389,7 @@ msgstr ""
"Slijedite ove korake da dopustite Joplinu sinhronizovanje sa Dropboxom:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6588,7 +6599,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Kucajte `joplin help` za informacije o korištenju."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
#, fuzzy
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
@@ -6598,7 +6609,7 @@ msgstr ""
"Unesite naziv bilješke ili neke riječi koje ona sadržava da je otvorite. Ili "
"kucajte # i naziv oznake, odnosno @ i naziv bilježnice."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Unesite nove oznake ili odaberite iz popisa"
@@ -7033,7 +7044,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -7057,12 +7068,12 @@ msgstr "Da"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Da"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -64,7 +64,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -225,7 +225,7 @@ msgstr "No pot crear una nova nota: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -395,7 +395,7 @@ msgid "Add body"
msgstr "Afegeix contingut"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Afegeix-ne un"
@@ -526,7 +526,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -616,7 +616,7 @@ msgstr "Adjunta el fitxer indicat a la nota."
msgid "attachment"
msgstr "fitxer adjunt"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Adjunts"
@@ -659,7 +659,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr "Testimoni d'autorització:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -747,7 +747,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -792,7 +792,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Cancel·la"
@@ -815,7 +815,7 @@ msgstr "S'està cancel·lant..."
msgid "Cancelling... Please wait."
msgstr "S'està cancel·lant... Espereu."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "No es pot accedir a %s"
@@ -944,7 +944,7 @@ msgstr "Caràcters"
msgid "Characters excluding spaces"
msgstr "Caràcters excloent espais"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Casella de verificació"
@@ -1034,7 +1034,7 @@ msgstr "Tanca"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1099,7 +1099,7 @@ msgstr "Vista de codi"
msgid "Collaborate on a notebook with others"
msgstr "Col·laboreu en blocs de notes amb altres"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Col·laboreu en blocs de notes amb altres"
@@ -1137,7 +1137,7 @@ msgstr "ordre"
msgid "Command"
msgstr "Ordre"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Paleta d'ordres"
@@ -1297,7 +1297,7 @@ msgstr "Copia la imatge"
msgid "Copy Link Address"
msgstr "Copia l'adreça de l'enllaç"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1360,7 +1360,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "No s'ha pogut connectar al repositori d'extensions"
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "No s'han pogut exportar les notes: %s"
@@ -1460,7 +1460,7 @@ msgstr "Creades: %d."
msgid "Created: %s"
msgstr "Creació: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Crea un bloc de notes nou sota un bloc de notes pare."
@@ -1922,7 +1922,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2427,7 +2427,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Exportant el perfil..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "S'està exportant a «%s» com a format «%s». Espereu..."
@@ -2671,7 +2671,7 @@ msgid "Go to source URL"
msgstr "Anar a URL origen"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Anar a qualsevol cosa..."
@@ -2786,7 +2786,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3093,7 +3093,7 @@ msgstr "Últim error: %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3656,8 +3656,8 @@ msgstr "Hi ha disponible una actualització. Voleu descarregar-la ara?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nota nova"
@@ -3697,8 +3697,8 @@ msgstr "Etiquetes noves:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Llistat de tasques pendents nou"
@@ -3737,7 +3737,7 @@ msgstr "no"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "No"
@@ -3811,7 +3811,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "No esteu autenticats amb %s. Proporcioneu les credencials que falten."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3922,7 +3922,7 @@ msgstr "Nota: quan es comparteix una nota, deixa d'estar xifrada al servidor."
msgid "Note&book"
msgstr "&Blocs de notes"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Bloc de notes"
@@ -3986,6 +3986,7 @@ msgstr "Format de data"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4080,6 +4081,11 @@ msgstr ""
msgid "Open it"
msgstr "Obre"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Obre %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Obre el visor de PDF"
@@ -4539,7 +4545,7 @@ msgstr "Publica la nota..."
msgid "Publish Notes"
msgstr "Publica notes"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Publica les notes a internet"
@@ -4550,7 +4556,7 @@ msgid "QR Code"
msgstr "Codi"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4615,7 +4621,7 @@ msgstr "ordre"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Capçalera"
@@ -4766,7 +4772,7 @@ msgstr "Recursos: %d."
msgid "Restart and upgrade"
msgstr "Reinicia i actualitza"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Reinicia i actualitza"
@@ -4974,7 +4980,7 @@ msgstr "Cerca a totes les notes"
msgid "Search in current note"
msgstr "Cerca en la nota actual"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "No hi ha resultats"
@@ -5009,7 +5015,7 @@ msgstr "Registre complet de canvis"
msgid "See the pre-release page for more details: %s"
msgstr "Consulta la pàgina de prellançament per a més detalls: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Selecciona"
@@ -5233,6 +5239,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Barra lateral"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Mida"
@@ -5569,7 +5580,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Versió de la sincronització: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Sincronitzeu les notes"
@@ -5702,7 +5713,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6203,7 +6214,7 @@ msgstr ""
"següents:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6403,7 +6414,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Escriviu «joplin help» per a obtenir informació d'ús."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6413,7 +6424,7 @@ msgstr ""
"escriviu # seguit d'un nom d'etiqueta, o @ seguit d'un nom de bloc de notes. "
"O escriviu \":\" per a cercar entre les ordres."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Escriviu etiquetes noves o seleccioneu-ne de la llista"
@@ -6847,7 +6858,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6870,12 +6881,12 @@ msgstr "sí"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Sí"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -66,7 +66,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -232,7 +232,7 @@ msgstr "Vytvoří novou poznámku."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -402,7 +402,7 @@ msgid "Add body"
msgstr "Přidat tělo"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Přidat nový"
@@ -536,7 +536,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -630,7 +630,7 @@ msgstr "Přiloží soubor k poznámce."
msgid "attachment"
msgstr "příloha"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Přílohy"
@@ -672,7 +672,7 @@ msgstr "Autentizace nebyla dokončena (nedostali jsme autentizační token)."
msgid "Authorisation token:"
msgstr "Autorizační token:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -760,7 +760,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -805,7 +805,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Zrušit"
@@ -828,7 +828,7 @@ msgstr "Zastavování..."
msgid "Cancelling... Please wait."
msgstr "Zastavuji, chvíli strpení."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Nelze otevřít %s"
@@ -957,7 +957,7 @@ msgstr "Znaky"
msgid "Characters excluding spaces"
msgstr "Znaky bez mezer"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Zaškrtávací pole"
@@ -1047,7 +1047,7 @@ msgstr "Zavřít"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1112,7 +1112,7 @@ msgstr "Zobrazit kód"
msgid "Collaborate on a notebook with others"
msgstr "Spolupracujte na zápisnících s ostatními"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Spolupracujte na zápisnících s ostatními"
@@ -1150,7 +1150,7 @@ msgstr "příkaz"
msgid "Command"
msgstr "Příkaz"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Nabídka příkazů"
@@ -1312,7 +1312,7 @@ msgstr "Kopírovat obrázek"
msgid "Copy Link Address"
msgstr "Kopírovat adresu odkazu"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1379,7 +1379,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Nepodařilo se připojit k úložišti zásuvných pluginů."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Nelze exportovat poznámky: %s"
@@ -1480,7 +1480,7 @@ msgstr "Vytvořeno: %d."
msgid "Created: %s"
msgstr "Vytvořeno: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Vytvoření nového zápisníku pod nadřazeným zápisníkem."
@@ -1941,7 +1941,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2451,7 +2451,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Probíhá export profilu..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Probíhá export do \"%s\" ve formátu \"%s\". Počkejte prosím..."
@@ -2692,7 +2692,7 @@ msgid "Go to source URL"
msgstr "Jít na zdrojovou URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Přejít na..."
@@ -2808,7 +2808,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3114,7 +3114,7 @@ msgstr "Poslední chyba: %s"
msgid "Join us on %s"
msgstr "Připojte se k nám na Twitteru"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3679,8 +3679,8 @@ msgstr "Je k dispozici aktualizace, chcete ji stáhnout?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nová poznámka"
@@ -3720,8 +3720,8 @@ msgstr "Nové štítky:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nový úkol"
@@ -3760,7 +3760,7 @@ msgstr "nekompatibilní"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Ne"
@@ -3834,7 +3834,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Nepřihlášeno k %s. Prosím vyplňte chybějící přihlašovací údaje."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3945,7 +3945,7 @@ msgstr "Poznámka: pokud je poznámka sdílena, už nebude na serveru šifrován
msgid "Note&book"
msgstr "&Zápisník"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Zápisníky"
@@ -4009,6 +4009,7 @@ msgstr "Formát data"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4101,6 +4102,11 @@ msgstr ""
msgid "Open it"
msgstr "Otevřít"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Otevřít %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Otevřít prohlížeč PDF"
@@ -4561,7 +4567,7 @@ msgstr "Zveřejněte poznámku..."
msgid "Publish Notes"
msgstr "Zveřejnit poznámky"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Zveřejnění poznámek na internetu"
@@ -4572,7 +4578,7 @@ msgid "QR Code"
msgstr "Kód"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4637,7 +4643,7 @@ msgstr "příkaz"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Nadpis"
@@ -4787,7 +4793,7 @@ msgstr "Zdroje: %d."
msgid "Restart and upgrade"
msgstr "Restartovat a upgradovat"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Restartovat a upgradovat"
@@ -4995,7 +5001,7 @@ msgstr "Hledat ve všech poznámkách"
msgid "Search in current note"
msgstr "Hledat v aktuální poznámce"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Žádné výsledky"
@@ -5030,7 +5036,7 @@ msgstr "Úplný seznam změn"
msgid "See the pre-release page for more details: %s"
msgstr "Pro náhled beta verzí navštivte stránku: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Vybrat"
@@ -5255,6 +5261,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Postranní lišta"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Velikost"
@@ -5590,7 +5601,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Verze synchronizace: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synchronizace poznámek"
@@ -5724,7 +5735,7 @@ msgid ""
msgstr ""
"Aktivní profil nelze odstranit. Přepněte na jiný profil a zkuste to znovu."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr "Aplikace se nyní vypne. Pro dokončení procesu ji znovu spusťte."
@@ -6220,7 +6231,7 @@ msgstr ""
"následujících kroků:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6420,7 +6431,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Zadejte `joplin help` pro nápovědu."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6430,7 +6441,7 @@ msgstr ""
"Nebo zadejte # následovaný názvem štítku, @ následovaný názvem poznámky, "
"nebo : pro vyhledávání příkazů."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Zadejte nové štítky, nebo vyberte existující ze seznamu"
@@ -6868,7 +6879,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6891,12 +6902,12 @@ msgstr "kompatibilní"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Ano"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -59,7 +59,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Du kan deaktivere denne prompt i indstillingerne)"
@@ -219,7 +219,7 @@ msgstr "Kan ikke oprette en ny note: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -385,7 +385,7 @@ msgid "Add body"
msgstr "Tilføj brødtekst"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Tilføj ny"
@@ -516,7 +516,7 @@ msgstr ""
"Der blev fundet en automatisk gemt tegning. Vedhæfter en kopi af den til "
"noten?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Der opstod en fejl: %s"
@@ -613,7 +613,7 @@ msgstr "Vedhæfter valgt fil til noten."
msgid "attachment"
msgstr "vedhæftning"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Vedhæftninger"
@@ -655,7 +655,7 @@ msgstr "Godkendelse blev ikke fuldført (modtog ikke autorisationstoken)."
msgid "Authorisation token:"
msgstr "Autoriseringstoken:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Autorisér"
@@ -742,7 +742,7 @@ msgstr "af %s"
msgid "by word"
msgstr "efter ord"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -787,7 +787,7 @@ msgstr "Kan se og redigere"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Annullér"
@@ -810,7 +810,7 @@ msgstr "Annullerer..."
msgid "Cancelling... Please wait."
msgstr "Annullerer... Vent venligst."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Kan ikke tilgå %s"
@@ -938,7 +938,7 @@ msgstr "Tegn"
msgid "Characters excluding spaces"
msgstr "Tegn eksklusiv mellemrum"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Afkrydsningsfelt"
@@ -1027,7 +1027,7 @@ msgstr "luk"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1094,7 +1094,7 @@ msgstr "Kodevisning"
msgid "Collaborate on a notebook with others"
msgstr "Samarbejd med andre om en notesbog"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Samarbejd med andre om notesbøger"
@@ -1133,7 +1133,7 @@ msgstr "kommando"
msgid "Command"
msgstr "Kommando"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Kommando-udvalg"
@@ -1288,7 +1288,7 @@ msgstr "Kopier billede"
msgid "Copy Link Address"
msgstr "Kopier linkadresse"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Kopiér link til hjemmeside"
@@ -1352,7 +1352,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Kunne ikke forbinde til plugin-lager."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Kunne ikke eksportere noterne: %s"
@@ -1452,7 +1452,7 @@ msgstr "Oprettet: %d."
msgid "Created: %s"
msgstr "Oprettet: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Opret en ny notesbog under en overordnet notesbog."
@@ -1905,7 +1905,7 @@ msgid "Draw picture"
msgstr "Tegn billede"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Tegner"
@@ -2402,7 +2402,7 @@ msgstr "Eksporteret med succes!"
msgid "Exporting profile..."
msgstr "Eksporterer profil..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Eksporterer til \"%s\" som \"%s\"-format. Vent venligst..."
@@ -2642,7 +2642,7 @@ msgid "Go to source URL"
msgstr "Gå til kilde-URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Gå til tilfældig..."
@@ -2758,7 +2758,7 @@ msgstr ""
"Hvis du allerede har godkendt, skal du vente på, at applikationen "
"synkroniseres med Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3057,7 +3057,7 @@ msgstr "Sidste fejl: %s"
msgid "Join us on %s"
msgstr "Følg os på %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3607,8 +3607,8 @@ msgstr "Opdatering er tilgængelig, vil du hente den nu?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Ny note"
@@ -3647,8 +3647,8 @@ msgstr "Nye etiketter:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Ny opgave"
@@ -3687,7 +3687,7 @@ msgstr "nej"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Nej"
@@ -3760,7 +3760,7 @@ msgstr ""
"Ikke godkendt med %s. Angiv venligst eventuelle manglende "
"legitimationsoplysninger."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3872,7 +3872,7 @@ msgstr ""
msgid "Note&book"
msgstr "Note&bog"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Notesbog"
@@ -3934,6 +3934,7 @@ msgstr "OCR: URL eller sti til sprogdata"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4026,6 +4027,11 @@ msgstr "Redigér i nyt vindue"
msgid "Open it"
msgstr "Åbn den"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Åbn %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Åbn PDF-viser"
@@ -4473,7 +4479,7 @@ msgstr "Publicer note..."
msgid "Publish Notes"
msgstr "Publicer noter"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Udgiv noter til internettet"
@@ -4483,7 +4489,7 @@ msgid "QR Code"
msgstr "QR-kode"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4545,7 +4551,7 @@ msgstr "Anbefalede plugins"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Overskrift"
@@ -4690,7 +4696,7 @@ msgstr "Ressourcer: %d."
msgid "Restart and upgrade"
msgstr "Genstart og upgradér"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Genstart i fejlsikret tilstand"
@@ -4889,7 +4895,7 @@ msgstr "Søg i alle noterne"
msgid "Search in current note"
msgstr "Søg i denne note"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Søgeresultater"
@@ -4921,7 +4927,7 @@ msgstr "Se ændringslog"
msgid "See the pre-release page for more details: %s"
msgstr "Se for-udgivelsessiden for yderligere information: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Vælg"
@@ -5135,6 +5141,11 @@ msgstr "Sidemenu åbnet"
msgid "Sidebar"
msgstr "Sidebjælke"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Log ind på Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Størrelse"
@@ -5466,7 +5477,7 @@ msgstr "Synk til valgt mål (standard er sync.target config.value)"
msgid "Sync Version: %s"
msgstr "Synk-version: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synk dine noter"
@@ -5597,7 +5608,7 @@ msgid ""
msgstr ""
"Den aktive profil kan ikke slettes. Skift til en anden profil, og prøv igen."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr "Appen lukker nu. Genstart den for at fuldføre processen."
@@ -6103,7 +6114,7 @@ msgstr ""
"nedenstående trin:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6297,7 +6308,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Tast `Joplin help` for alm. info."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6307,7 +6318,7 @@ msgstr ""
"Eller skriv # efterfulgt af et etikettenavn, eller @ efterfulgt af en "
"notesbogs navn. Eller skriv: for at søge efter kommandoer."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Indtast nye etiketter eller vælg fra listen"
@@ -6745,7 +6756,7 @@ msgstr ""
msgid "Whisper"
msgstr "Whisper"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Vinduet reagerer ikke."
@@ -6769,12 +6780,12 @@ msgstr "ja"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Ja"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -62,7 +62,7 @@ msgid "(wysiwyg: %s)"
msgstr "(WYSIWYG: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Diese Meldung kann in den Einstellungen deaktiviert werden)"
@@ -222,7 +222,7 @@ msgstr "Konnte neue Notiz nicht erstellen: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -389,7 +389,7 @@ msgid "Add body"
msgstr "Text hinzufügen"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Neu hinzufügen"
@@ -524,7 +524,7 @@ msgstr ""
"Es wurde eine automatisch gespeicherte Zeichnung gefunden. Eine Kopie davon "
"an die Notiz anhängen?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Ein Fehler trat auf: %s"
@@ -625,7 +625,7 @@ msgstr "Hängt die ausgewählte Datei an die Notiz an."
msgid "attachment"
msgstr "Anhang"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Anhänge"
@@ -669,7 +669,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr "Autorisierungstoken:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Autorisieren"
@@ -766,7 +766,7 @@ msgstr "von %s"
msgid "by word"
msgstr "nach Wort"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -811,7 +811,7 @@ msgstr "Lesen und Bearbeiten möglich"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Abbrechen"
@@ -834,7 +834,7 @@ msgstr "Abbrechen..."
msgid "Cancelling... Please wait."
msgstr "Abbrechen... Bitte warten."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Kann nicht auf %s zugreifen"
@@ -967,7 +967,7 @@ msgstr "Zeichen"
msgid "Characters excluding spaces"
msgstr "Zeichen ohne Leerzeichen"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Kontrollkästchen"
@@ -1056,7 +1056,7 @@ msgstr "schließen"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1123,7 +1123,7 @@ msgstr "Code-Ansicht"
msgid "Collaborate on a notebook with others"
msgstr "Gemeinsam mit anderen an einem Notizbuch arbeiten"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Gemeinsam mit anderen an Notizbüchern arbeiten"
@@ -1162,7 +1162,7 @@ msgstr "Befehl"
msgid "Command"
msgstr "Befehl"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Befehlspalette"
@@ -1317,7 +1317,7 @@ msgstr "Bild kopieren"
msgid "Copy Link Address"
msgstr "Link-Adresse kopieren"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Link zu Website kopieren"
@@ -1381,7 +1381,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Konnte keine Verbindung zum Plugin-Repository herstellen."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Konnte Notizen nicht exportieren: %s"
@@ -1482,7 +1482,7 @@ msgstr "Erstellt: %d."
msgid "Created: %s"
msgstr "Erstellt: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Erstelle ein neues Notizbuch unter einem übergeordneten Notizbuch."
@@ -1941,7 +1941,7 @@ msgid "Draw picture"
msgstr "Bild zeichnen"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Zeichnen"
@@ -2440,7 +2440,7 @@ msgstr "Exportieren erfolgreich!"
msgid "Exporting profile..."
msgstr "Profil exportieren..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Exportieren nach \"%s\" im \"%s\"-Format. Bitte warten..."
@@ -2684,7 +2684,7 @@ msgid "Go to source URL"
msgstr "Gehe zur Quell-URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Gehe zu..."
@@ -2800,7 +2800,7 @@ msgstr ""
"Wenn du bereits autorisiert bist, warte bitte bis sich die Anwendung mit "
"Joplin Cloud synchronisiert hat."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3102,7 +3102,7 @@ msgstr "Letzte Fehlermeldung: %s"
msgid "Join us on %s"
msgstr "Folge uns auf %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3661,8 +3661,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Neue Notiz"
@@ -3703,8 +3703,8 @@ msgstr "Neue Schlagwörter:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Neue Aufgabe"
@@ -3743,7 +3743,7 @@ msgstr "nein"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Nein"
@@ -3816,7 +3816,7 @@ msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr ""
"Keine Authentifizierung mit %s. Gib bitte alle fehlenden Zugangsdaten an."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3929,7 +3929,7 @@ msgstr ""
msgid "Note&book"
msgstr "Notiz&bücher"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Notizbuch"
@@ -3994,6 +3994,7 @@ msgstr "OCR: Sprachdaten-URL oder -Pfad"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4087,6 +4088,11 @@ msgstr "Bearbeiten in neuem Fenster"
msgid "Open it"
msgstr "Öffne es"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Öffne %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "PDF-Betrachter öffnen"
@@ -4549,7 +4555,7 @@ msgstr "Notiz veröffentlichen..."
msgid "Publish Notes"
msgstr "Notizen veröffentlichen"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Notizen im Internet veröffentlichen"
@@ -4559,7 +4565,7 @@ msgid "QR Code"
msgstr "QR-Code"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4621,7 +4627,7 @@ msgstr "Empfohlene Erweiterungen"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Überschrift"
@@ -4767,7 +4773,7 @@ msgstr "Anhänge: %d."
msgid "Restart and upgrade"
msgstr "Neustarten und aktualisieren"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Neustart im abgesicherten Modus"
@@ -4970,7 +4976,7 @@ msgstr "Alle Notizen durchsuchen"
msgid "Search in current note"
msgstr "Aktuelle Notiz durchsuchen"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Ergebnisse durchsuchen"
@@ -5002,7 +5008,7 @@ msgstr "Änderungsprotokoll anschauen"
msgid "See the pre-release page for more details: %s"
msgstr "Weitere Informationen findest Du auf der Vorabversionsseite: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Auswählen"
@@ -5216,6 +5222,11 @@ msgstr "Seitenmenü geöffnet"
msgid "Sidebar"
msgstr "Seitenleiste"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Mit Joplin Cloud verbinden."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Größe"
@@ -5561,7 +5572,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Sync-Version: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synchronisiere deine Notizen"
@@ -5694,7 +5705,7 @@ msgstr ""
"Das aktive Profil kann nicht gelöscht werden. Bitte wechsle in ein anderes "
"Profil und versuche es erneut."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6226,7 +6237,7 @@ msgstr ""
"folgenden Schritten:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6428,7 +6439,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Gib `joplin help` für Informationen zur Benutzung ein."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6438,7 +6449,7 @@ msgstr ""
"springen. Oder gib # gefolgt von einem Schlagwort oder @ gefolgt vom Namen "
"eines Notizbuchs ein. Oder gib : für eine Suche nach Befehlen ein."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Neues Schlagwort eingeben oder aus der Liste auswählen"
@@ -6875,7 +6886,7 @@ msgstr ""
msgid "Whisper"
msgstr "Whisper"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Fenster antwortet nicht."
@@ -6899,12 +6910,12 @@ msgstr "ja"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Ja"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -63,7 +63,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
"(μπορείτε να απενεργοποιήσετε αυτό το παράθυρο διαλόγου στις ρυθμίσεις)"
@@ -224,7 +224,7 @@ msgstr "Δεν είναι δυνατή η δημιουργία νέας σημε
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -395,7 +395,7 @@ msgid "Add body"
msgstr "Προσθήκη σώματος κειμένου"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Προσθήκη νέου"
@@ -532,7 +532,7 @@ msgstr ""
"Βρέθηκε ένα αυτόματα αποθηκευμένο σχέδιο. Να επισυναφθεί αντίγραφό του στην "
"σημείωση;"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Συνέβη ένα σφάλμα: %s"
@@ -629,7 +629,7 @@ msgstr "Προσθέτει το καθορισμένο αρχείο στη ση
msgid "attachment"
msgstr "συνημμένο"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Συνημμένα"
@@ -673,7 +673,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr "Token εξουσιοδότησης:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Εξουσιοδότηση"
@@ -760,7 +760,7 @@ msgstr "από %s"
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -805,7 +805,7 @@ msgstr "Μπορεί να προβάλει και να επεξεργαστεί"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Ακύρωση"
@@ -828,7 +828,7 @@ msgstr "Ακύρωση..."
msgid "Cancelling... Please wait."
msgstr "Ακύρωση... Παρακαλώ περιμένετε."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Δεν είναι δυνατή η πρόσβαση στο %s"
@@ -962,7 +962,7 @@ msgstr "Χαρακτήρες"
msgid "Characters excluding spaces"
msgstr "Χαρακτήρες χωρίς τα κενά"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Checkbox"
@@ -1052,7 +1052,7 @@ msgstr "Κλείσιμο"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1119,7 +1119,7 @@ msgstr "Προβολή κώδικα"
msgid "Collaborate on a notebook with others"
msgstr "Συνεργασία σε σημειωματάριο με άλλους"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Συνεργασία σε σημειωματάρια με άλλους"
@@ -1158,7 +1158,7 @@ msgstr "εντολή"
msgid "Command"
msgstr "Εντολή"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Παλέτα εντολών"
@@ -1317,7 +1317,7 @@ msgstr "Αντιγραφή εικόνας"
msgid "Copy Link Address"
msgstr "Αντιγραφή διεύθυνσης σύνδεσης"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Αντιγραφή συνδέσμου ιστοσελίδας"
@@ -1380,7 +1380,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Δεν ήταν δυνατή η σύνδεση στο plugin repository."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Δεν ήταν δυνατή η εξαγωγή σημειώσεων: %s"
@@ -1480,7 +1480,7 @@ msgstr "Δημιουργήθηκε: %d."
msgid "Created: %s"
msgstr "Δημιουργήθηκε: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Δημιουργήστε ένα νέο σημειωματάριο κάτω από ένα γονικό σημειωματάριο."
@@ -1944,7 +1944,7 @@ msgid "Draw picture"
msgstr "Σχεδίαση"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Σχέδιο"
@@ -2446,7 +2446,7 @@ msgstr "Επιτυχής εξαγωγή!"
msgid "Exporting profile..."
msgstr "Γίνεται εξαγωγή προφίλ..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Γίνεται εξαγωγή στο \"%s\" με μορφή \"%s\". Παρακαλώ περιμένετε..."
@@ -2692,7 +2692,7 @@ msgid "Go to source URL"
msgstr "Μεταβείτε στη διεύθυνση URL προέλευσης"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Γρήγορη Μετακίνηση..."
@@ -2809,7 +2809,7 @@ msgstr ""
"Αν έχετε ήδη εξουσιοδοτήσει την εφαρμογή, παρακαλώ περιμένετε για τον "
"συγχρονισμό με το Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3118,7 +3118,7 @@ msgstr "Τελευταίο σφάλμα: %s"
msgid "Join us on %s"
msgstr "Ακολουθήστε μας στο Twitter"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3679,8 +3679,8 @@ msgstr "Υπάρχει διαθέσιμη μια ενημέρωση, θέλετ
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Νέα σημείωση"
@@ -3721,8 +3721,8 @@ msgstr "Νέες ετικέτες:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Νέα υπόμνηση"
@@ -3761,7 +3761,7 @@ msgstr "όχι"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Όχι"
@@ -3838,7 +3838,7 @@ msgstr ""
"Δεν έγινε επαλήθευση με το %s. Παρακαλώ καταχωρίστε τα διαπιστευτήρια που "
"λείπουν."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3950,7 +3950,7 @@ msgstr ""
msgid "Note&book"
msgstr "Note&book"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Σημειωματάριo"
@@ -4015,6 +4015,7 @@ msgstr "Γλώσσα, μορφή ημερομηνίας"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4108,6 +4109,11 @@ msgstr ""
msgid "Open it"
msgstr "Ανοίξτε το"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Άνοιγμα %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Άνοιγμα προγράμματος προβολής PDF"
@@ -4570,7 +4576,7 @@ msgstr "Δημοσίευση σημείωσης..."
msgid "Publish Notes"
msgstr "Δημοσίευση σημειώσεων"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Δημοσίευση σημειώσεων στο διαδίκτυο"
@@ -4581,7 +4587,7 @@ msgid "QR Code"
msgstr "Κώδικας"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4644,7 +4650,7 @@ msgstr "Προτεινόμενα πρόσθετα"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Επικεφαλίδα"
@@ -4793,7 +4799,7 @@ msgstr "Πόροι: %d."
msgid "Restart and upgrade"
msgstr "Επανεκκίνηση και αναβάθμιση"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Επανεκκίνηση σε ασφαλή λειτουργία"
@@ -4994,7 +5000,7 @@ msgstr "Αναζήτηση σε όλες τις σημειώσεις"
msgid "Search in current note"
msgstr "Αναζήτηση στην τρέχουσα σημείωση"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Κανένα αποτέλεσμα"
@@ -5028,7 +5034,7 @@ msgstr "Πλήρες αρχείο αλλαγών"
msgid "See the pre-release page for more details: %s"
msgstr "Δείτε τη σελίδα προέκδοσης για περισσότερες λεπτομέρειες: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Επιλογή"
@@ -5248,6 +5254,11 @@ msgstr "Ανοιχτό πλευρικό μενού"
msgid "Sidebar"
msgstr "Πλευρική μπάρα"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Σύνδεση σε Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Μέγεθος"
@@ -5596,7 +5607,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Έκδοση συγχρονισμού: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Συγχρονισμός των σημειώσεών σας"
@@ -5728,7 +5739,7 @@ msgstr ""
"Το ενεργό προφίλ δεν μπορεί να διαγραφεί. Μεταβείτε σε ένα άλλο προφίλ και "
"δοκιμάστε ξανά."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6257,7 +6268,7 @@ msgstr ""
"παρακάτω βήματα:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6457,7 +6468,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Πληκτρολογήστε `joplin help` για πληροφορίες χρήσης."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6468,7 +6479,7 @@ msgstr ""
"ή @ ακολουθούμενο από ένα σημειωματάριο. Ή πληκτρολογίστε : για να ψάξετε "
"για εντολές."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Πληκτρολογήστε καινούρια ετικέτα ή επιλέξτε από την λίστα"
@@ -6911,7 +6922,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Το παράθυρο δεν αποκρίνεται."
@@ -6934,12 +6945,12 @@ msgstr "ναι"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Ναι"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -42,7 +42,7 @@ msgid "(wysiwyg: %s)"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -196,7 +196,7 @@ msgstr ""
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid "%s is not optimised for synchronising many small files so your initial synchronisation will be slow."
msgstr ""
@@ -336,7 +336,7 @@ msgid "Add body"
msgstr ""
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr ""
@@ -452,7 +452,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -535,7 +535,7 @@ msgstr ""
msgid "attachment"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
msgid "Attachment"
msgstr ""
@@ -569,7 +569,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr ""
@@ -656,7 +656,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -702,7 +702,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr ""
@@ -723,7 +723,7 @@ msgstr ""
msgid "Cancelling... Please wait."
msgstr ""
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr ""
@@ -839,7 +839,7 @@ msgstr ""
msgid "Characters excluding spaces"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Check"
msgstr ""
@@ -921,7 +921,7 @@ msgstr ""
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -981,7 +981,7 @@ msgstr ""
msgid "Collaborate on a notebook with others"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr ""
@@ -1009,7 +1009,7 @@ msgstr ""
msgid "Command"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr ""
@@ -1162,7 +1162,7 @@ msgstr ""
msgid "Copy Link Address"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr ""
@@ -1215,7 +1215,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr ""
@@ -1306,7 +1306,7 @@ msgstr ""
msgid "Created: %s"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
msgid "Creates a new note with an attachment of type %s"
msgstr ""
@@ -1726,7 +1726,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2203,7 +2203,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr ""
@@ -2416,7 +2416,7 @@ msgid "Go to source URL"
msgstr ""
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr ""
@@ -2529,7 +2529,7 @@ msgstr ""
msgid "If you have already authorised, please wait for the application to sync to Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -2788,7 +2788,7 @@ msgstr ""
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid "Joplin can synchronise your notes using various providers. Select one from the list below."
msgstr ""
@@ -3291,8 +3291,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr ""
@@ -3329,8 +3329,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr ""
@@ -3369,7 +3369,7 @@ msgstr ""
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
#: packages/lib/versionInfo.ts:92
msgid "No"
msgstr ""
@@ -3438,7 +3438,7 @@ msgstr ""
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3546,7 +3546,7 @@ msgstr ""
msgid "Note&book"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr ""
@@ -3609,6 +3609,7 @@ msgstr ""
#: packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399
#: packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -3691,6 +3692,10 @@ msgstr ""
msgid "Open it"
msgstr ""
#: packages/app-desktop/bridge.ts:537
msgid "Open log"
msgstr ""
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr ""
@@ -4099,7 +4104,7 @@ msgstr ""
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4109,7 +4114,7 @@ msgid "QR Code"
msgstr ""
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4171,7 +4176,7 @@ msgstr ""
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
msgid "Recording"
msgstr ""
@@ -4314,7 +4319,7 @@ msgstr ""
msgid "Restart and upgrade"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr ""
@@ -4506,7 +4511,7 @@ msgstr ""
msgid "Search in current note"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr ""
@@ -4538,7 +4543,7 @@ msgstr ""
msgid "See the pre-release page for more details: %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr ""
@@ -4739,6 +4744,10 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
msgid "Sign up to Joplin Cloud"
msgstr ""
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr ""
@@ -5041,7 +5050,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr ""
@@ -5165,7 +5174,7 @@ msgstr ""
msgid "The active profile cannot be deleted. Switch to a different profile and try again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid "The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -5512,7 +5521,7 @@ msgid "To allow Joplin to synchronise with Dropbox, please follow the steps belo
msgstr ""
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid "To allow Joplin to synchronise with Joplin Cloud, please login using this URL:"
msgstr ""
@@ -5681,11 +5690,11 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid "Type a note title or part of its content to jump to it. Or type # followed by a tag name, or @ followed by a notebook name. Or type : to search for commands."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
msgid "Type a note title to search for it."
msgstr ""
@@ -6063,7 +6072,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6086,13 +6095,13 @@ msgstr ""
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
#: packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "You are about to attach a large image (%dx%d pixels). Would you like to resize it down to %d pixels before attaching it?"
msgstr ""

View File

@@ -59,7 +59,7 @@ msgid "(wysiwyg: %s)"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -213,7 +213,7 @@ msgstr ""
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -365,7 +365,7 @@ msgid "Add body"
msgstr ""
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -576,7 +576,7 @@ msgstr ""
msgid "attachment"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
msgid "Attachment"
msgstr ""
@@ -614,7 +614,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr "Authorization token:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -702,7 +702,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -747,7 +747,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr ""
@@ -770,7 +770,7 @@ msgstr ""
msgid "Cancelling... Please wait."
msgstr ""
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr ""
@@ -893,7 +893,7 @@ msgstr ""
msgid "Characters excluding spaces"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Check"
msgstr ""
@@ -977,7 +977,7 @@ msgstr ""
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1040,7 +1040,7 @@ msgstr ""
msgid "Collaborate on a notebook with others"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr ""
@@ -1076,7 +1076,7 @@ msgstr ""
msgid "Command"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr ""
@@ -1229,7 +1229,7 @@ msgstr ""
msgid "Copy Link Address"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr ""
@@ -1292,7 +1292,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr ""
@@ -1386,7 +1386,7 @@ msgstr ""
msgid "Created: %s"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
msgid "Creates a new note with an attachment of type %s"
msgstr ""
@@ -1827,7 +1827,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2315,7 +2315,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr ""
@@ -2541,7 +2541,7 @@ msgid "Go to source URL"
msgstr ""
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr ""
@@ -2655,7 +2655,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -2942,7 +2942,7 @@ msgstr ""
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3469,8 +3469,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr ""
@@ -3508,8 +3508,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr ""
@@ -3548,7 +3548,7 @@ msgstr ""
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr ""
@@ -3617,7 +3617,7 @@ msgstr ""
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Not authenticated with %s. Please provide any missing credentials."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3726,7 +3726,7 @@ msgstr ""
msgid "Note&book"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr ""
@@ -3787,6 +3787,7 @@ msgstr ""
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -3873,6 +3874,10 @@ msgstr ""
msgid "Open it"
msgstr ""
#: packages/app-desktop/bridge.ts:537
msgid "Open log"
msgstr ""
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr ""
@@ -4299,7 +4304,7 @@ msgstr ""
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4309,7 +4314,7 @@ msgid "QR Code"
msgstr ""
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4371,7 +4376,7 @@ msgstr ""
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
msgid "Recording"
msgstr ""
@@ -4514,7 +4519,7 @@ msgstr ""
msgid "Restart and upgrade"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr ""
@@ -4710,7 +4715,7 @@ msgstr "Search in all notes"
msgid "Search in current note"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr ""
@@ -4742,7 +4747,7 @@ msgstr ""
msgid "See the pre-release page for more details: %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr ""
@@ -4948,6 +4953,10 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
msgid "Sign up to Joplin Cloud"
msgstr ""
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr ""
@@ -5263,7 +5272,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr ""
@@ -5391,7 +5400,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -5824,7 +5833,7 @@ msgstr ""
"To allow Joplin to synchronize with Dropbox, please follow the steps below:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6006,14 +6015,14 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
"commands."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
msgid "Type a note title to search for it."
msgstr ""
@@ -6412,7 +6421,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6435,12 +6444,12 @@ msgstr ""
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -57,7 +57,7 @@ msgid "(wysiwyg: %s)"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -222,7 +222,7 @@ msgstr "Kreas novan noton."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -381,7 +381,7 @@ msgid "Add body"
msgstr "Aldoni korpon"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "Aldoni titolon"
@@ -510,7 +510,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -601,7 +601,7 @@ msgstr ""
msgid "attachment"
msgstr "Aldoni dosieron"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Aldoni dosieron"
@@ -642,7 +642,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr ""
@@ -730,7 +730,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -776,7 +776,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Nuligi"
@@ -800,7 +800,7 @@ msgstr "Nuligante..."
msgid "Cancelling... Please wait."
msgstr "Nuligante... Atendu."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Ne eblas atingi %s"
@@ -926,7 +926,7 @@ msgstr ""
msgid "Characters excluding spaces"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Markobutono"
@@ -1016,7 +1016,7 @@ msgstr ""
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1083,7 +1083,7 @@ msgstr "Kodo"
msgid "Collaborate on a notebook with others"
msgstr "Bonvolu krei notlibron unue"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
#, fuzzy
msgid "Collaborate on notebooks with others"
msgstr "Bonvolu krei notlibron unue"
@@ -1117,7 +1117,7 @@ msgstr ""
msgid "Command"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr ""
@@ -1284,7 +1284,7 @@ msgstr "Kopii ĵetonon"
msgid "Copy Link Address"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1341,7 +1341,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr ""
@@ -1444,7 +1444,7 @@ msgstr "Kreita: %d."
msgid "Created: %s"
msgstr "Kreita: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Kreas novan notlibron."
@@ -1905,7 +1905,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2415,7 +2415,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Importante notojn..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr ""
@@ -2650,7 +2650,7 @@ msgid "Go to source URL"
msgstr "Iri al URL-fonto"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr ""
@@ -2771,7 +2771,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3055,7 +3055,7 @@ msgstr "Lasta eraro: %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3617,8 +3617,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nova noto"
@@ -3659,8 +3659,8 @@ msgstr "Novaj etikedoj:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nova tasko"
@@ -3700,7 +3700,7 @@ msgstr "n"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Ne"
@@ -3772,7 +3772,7 @@ msgstr ""
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3892,7 +3892,7 @@ msgstr ""
msgid "Note&book"
msgstr "Notlibroj"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
#, fuzzy
msgid "Notebook"
@@ -3958,6 +3958,7 @@ msgstr "Data formato"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4050,6 +4051,11 @@ msgstr ""
msgid "Open it"
msgstr "Malfermi..."
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Malfermi %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr ""
@@ -4507,7 +4513,7 @@ msgstr "Restaŭritaj Notoj"
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4518,7 +4524,7 @@ msgid "QR Code"
msgstr "Kodo"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4583,7 +4589,7 @@ msgstr ""
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
msgid "Recording"
msgstr ""
@@ -4735,7 +4741,7 @@ msgstr ""
msgid "Restart and upgrade"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Akiri ĝin nun:"
@@ -4944,7 +4950,7 @@ msgstr "Ŝerci en ĉiuj notoj"
msgid "Search in current note"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Serĉi..."
@@ -4979,7 +4985,7 @@ msgstr "Konservi la ŝanĝojn"
msgid "See the pre-release page for more details: %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
#, fuzzy
msgid "Select"
@@ -5205,6 +5211,11 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin-forumo"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr ""
@@ -5527,7 +5538,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Nova versio: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#, fuzzy
msgid "Sync your notes"
msgstr "Ordigi notojn laŭ"
@@ -5660,7 +5671,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6080,7 +6091,7 @@ msgid ""
msgstr ""
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6279,14 +6290,14 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
"commands."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Tajpu novan etikedon aŭ elektu el la listo"
@@ -6705,7 +6716,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6729,12 +6740,12 @@ msgstr "Jes"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Jes"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -69,7 +69,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Puede desactivar este aviso en las opciones)"
@@ -229,7 +229,7 @@ msgstr "No se puede crear una nueva nota: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -398,7 +398,7 @@ msgid "Add body"
msgstr "Añadir cuerpo"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Añadir nuevo"
@@ -531,7 +531,7 @@ msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
"Se ha encontrado un dibujo autoguardado. ¿Adjuntar una copia a la nota?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Se ha producido un error: %s"
@@ -630,7 +630,7 @@ msgstr "Adjuntar archivo dado a la nota."
msgid "attachment"
msgstr "adjunto"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Adjuntos"
@@ -672,7 +672,7 @@ msgstr "Autenticación no completada (no se recibió token de autenticación)."
msgid "Authorisation token:"
msgstr "Token de autorización:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Autorizar"
@@ -760,7 +760,7 @@ msgstr "por %s"
msgid "by word"
msgstr "por palabra"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -805,7 +805,7 @@ msgstr "Puede ver y editar"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Cancelar"
@@ -828,7 +828,7 @@ msgstr "Cancelando..."
msgid "Cancelling... Please wait."
msgstr "Cancelando... Por favor espere."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "No se ha podido acceder a %s"
@@ -960,7 +960,7 @@ msgstr "Caracteres"
msgid "Characters excluding spaces"
msgstr "Caracteres excluyendo espacios"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Casilla"
@@ -1049,7 +1049,7 @@ msgstr "cerrar"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1116,7 +1116,7 @@ msgstr "Código"
msgid "Collaborate on a notebook with others"
msgstr "Colaborar en un cuaderno con otros usuarios"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Colaborar en los cuadernos con otros"
@@ -1155,7 +1155,7 @@ msgstr "comando"
msgid "Command"
msgstr "Comando"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Paleta de comandos"
@@ -1310,7 +1310,7 @@ msgstr "Copiar imagen"
msgid "Copy Link Address"
msgstr "Copiar Enlace"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Copiar enlace al sitio web"
@@ -1373,7 +1373,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "No se ha podido conectar con el repositorio de plugins."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "No se pudo exportar las notas: %s"
@@ -1473,7 +1473,7 @@ msgstr "Creado: %d."
msgid "Created: %s"
msgstr "Creado: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Cree una nueva libreta en una libreta principal."
@@ -1929,7 +1929,7 @@ msgid "Draw picture"
msgstr "Dibujo"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Dibujar"
@@ -2427,7 +2427,7 @@ msgstr "¡Exportado con éxito!"
msgid "Exporting profile..."
msgstr "Exportando perfil..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Exportando a «%s» como formato «%s». Por favor espere..."
@@ -2667,7 +2667,7 @@ msgid "Go to source URL"
msgstr "Ir a URL de origen"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Ir a..."
@@ -2784,7 +2784,7 @@ msgstr ""
"Si ya lo ha autorizado, espere a que la aplicación se sincronice con Joplin "
"Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3087,7 +3087,7 @@ msgstr "Último error: %s"
msgid "Join us on %s"
msgstr "Únete a nosotros en %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3642,8 +3642,8 @@ msgstr "Está disponible una actualización. ¿Quiere descargarla ahora?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nueva nota"
@@ -3682,8 +3682,8 @@ msgstr "Nuevas etiquetas:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nueva tarea"
@@ -3722,7 +3722,7 @@ msgstr "no"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "No"
@@ -3793,7 +3793,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "No autenticado con %s. Por favor provea las credenciales faltantes."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3904,7 +3904,7 @@ msgstr ""
msgid "Note&book"
msgstr "Li&breta"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Libreta"
@@ -3967,6 +3967,7 @@ msgstr "OCR: URL o ruta de datos de idioma"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4059,6 +4060,11 @@ msgstr "Editar en ventana nueva"
msgid "Open it"
msgstr "Ábrela"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Abrir %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Abrir visor de PDF"
@@ -4511,7 +4517,7 @@ msgstr "Publicar nota..."
msgid "Publish Notes"
msgstr "Publicar notas"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Publicar notas en Internet"
@@ -4521,7 +4527,7 @@ msgid "QR Code"
msgstr "Código QR"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4583,7 +4589,7 @@ msgstr "Plugins recomendados"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Título"
@@ -4728,7 +4734,7 @@ msgstr "Recursos: %d."
msgid "Restart and upgrade"
msgstr "Reiniciar y actualizar"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Reiniciar en modo seguro"
@@ -4931,7 +4937,7 @@ msgstr "Buscar en todas las notas"
msgid "Search in current note"
msgstr "Buscar en la nota actual"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Resultados de la búsqueda"
@@ -4963,7 +4969,7 @@ msgstr "Historial de cambios"
msgid "See the pre-release page for more details: %s"
msgstr "Ver la página de prelanzamientos para más detalles: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Seleccione"
@@ -5177,6 +5183,11 @@ msgstr "Menú lateral abierto"
msgid "Sidebar"
msgstr "Barra lateral"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Acceder con Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Tamaño"
@@ -5521,7 +5532,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Versión de la Sincronización: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Sincroniza tus notas"
@@ -5652,7 +5663,7 @@ msgid ""
msgstr ""
"El perfil activo no puede eliminarse. Cambie de perfil e intente de nuevo."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6172,7 +6183,7 @@ msgstr ""
"pasos:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6370,7 +6381,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Escriba `joplin help` para mostrar información de uso."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6380,7 +6391,7 @@ msgstr ""
"escriba # seguido del nombre de una etiqueta, o @ seguido del nombre de una "
"libreta. O escriba : para buscar comandos."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Escriba nuevas etiquetas o selecciónelas de la lista"
@@ -6820,7 +6831,7 @@ msgstr ""
msgid "Whisper"
msgstr "Susurro"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "La ventana no responde."
@@ -6843,12 +6854,12 @@ msgstr "sí"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Sí"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -60,7 +60,7 @@ msgid "(wysiwyg: %s)"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -225,7 +225,7 @@ msgstr "Loob uue märkme."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -393,7 +393,7 @@ msgid "Add body"
msgstr "Lisa keha"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "Pealkirja lisamine"
@@ -522,7 +522,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -613,7 +613,7 @@ msgstr "Manustab antud faili märkmele."
msgid "attachment"
msgstr "Manused"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Manused"
@@ -658,7 +658,7 @@ msgstr "Autentimine on lõpule viidud (ei saanud autentimise luba)."
msgid "Authorisation token:"
msgstr "Autoriseerimis token:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -747,7 +747,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -793,7 +793,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Tühista"
@@ -816,7 +816,7 @@ msgstr "Tühistamine..."
msgid "Cancelling... Please wait."
msgstr "Tühistamine... Oota."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
#, fuzzy
msgid "Cannot access %s"
msgstr "%s ei pääse juurde"
@@ -950,7 +950,7 @@ msgstr ""
msgid "Characters excluding spaces"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Märkekast"
@@ -1044,7 +1044,7 @@ msgstr "Sulge"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1111,7 +1111,7 @@ msgstr "Kood"
msgid "Collaborate on a notebook with others"
msgstr "Palun looge esmalt märkmik"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
#, fuzzy
msgid "Collaborate on notebooks with others"
msgstr "Palun looge esmalt märkmik"
@@ -1151,7 +1151,7 @@ msgstr ""
msgid "Command"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr ""
@@ -1319,7 +1319,7 @@ msgstr "Kopeeri token"
msgid "Copy Link Address"
msgstr "Kopeeri lingi aadress"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1386,7 +1386,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr ""
@@ -1489,7 +1489,7 @@ msgstr "Loodud: %d."
msgid "Created: %s"
msgstr "Loodud: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Loob uue märkmiku."
@@ -1969,7 +1969,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2515,7 +2515,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Profiili eksportimine..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr ""
@@ -2766,7 +2766,7 @@ msgid "Go to source URL"
msgstr "Mine Allika URL-ile"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
#, fuzzy
msgid "Goto Anything..."
msgstr "Ükskõik mida..."
@@ -2887,7 +2887,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3181,7 +3181,7 @@ msgstr "Viimane tõrge: %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3772,8 +3772,8 @@ msgstr "Saadaval on värskendus, kas soovite selle kohe alla laadida?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Uus Märkus"
@@ -3814,8 +3814,8 @@ msgstr "Uued sildid:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
#, fuzzy
msgid "New to-do"
@@ -3856,7 +3856,7 @@ msgstr "n"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Ei"
@@ -3930,7 +3930,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Pole %s-ga seostatud. Palun esitage puuduv mandaat."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -4052,7 +4052,7 @@ msgstr ""
msgid "Note&book"
msgstr "Sülearvutid"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
#, fuzzy
msgid "Notebook"
@@ -4118,6 +4118,7 @@ msgstr "Kuupäeva formaat"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4214,6 +4215,11 @@ msgstr ""
msgid "Open it"
msgstr "Avatud..."
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Ava %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr ""
@@ -4679,7 +4685,7 @@ msgstr "Jaga märkust..."
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4690,7 +4696,7 @@ msgid "QR Code"
msgstr "Kood"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4755,7 +4761,7 @@ msgstr ""
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Pealkiri"
@@ -4909,7 +4915,7 @@ msgstr "Ressursid: %d."
msgid "Restart and upgrade"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Võta nüüd:"
@@ -5120,7 +5126,7 @@ msgstr "Otsi kõigist märkmetest"
msgid "Search in current note"
msgstr "Otsi praeguses märkuses"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Otsi..."
@@ -5156,7 +5162,7 @@ msgstr "Salvesta muudatused"
msgid "See the pre-release page for more details: %s"
msgstr "Lisateavet väljalaske-eelse lehe kohta leiate teemast: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
#, fuzzy
msgid "Select"
@@ -5389,6 +5395,11 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplini Foorum"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr ""
@@ -5730,7 +5741,7 @@ msgstr "Sync esitatud Target (vaikimisi sünkroonimine. Target config väärtus)
msgid "Sync Version: %s"
msgstr "Uus versioon: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#, fuzzy
msgid "Sync your notes"
msgstr "Märkmete sortimine"
@@ -5872,7 +5883,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6333,7 +6344,7 @@ msgid ""
msgstr "Et lubada Joplin sünkroniseerida Dropbox, järgige alltoodud juhiseid:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6536,7 +6547,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Sisestage `joplin help` kasutusteabe jaoks ."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
#, fuzzy
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
@@ -6546,7 +6557,7 @@ msgstr ""
"Tippige sellele hüppamiseks märkme tiitel. Või tippige #, millele järgneb "
"sildi nimi või @, millele järgneb märkmiku nimi."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Tippige uued sildid või valige loendist"
@@ -6982,7 +6993,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -7006,12 +7017,12 @@ msgstr "Jah"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Jah"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -57,7 +57,7 @@ msgid "(wysiwyg: %s)"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -225,7 +225,7 @@ msgstr "Ohar berria sortzen du."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -393,7 +393,7 @@ msgid "Add body"
msgstr ""
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "Titulu gabekoa"
@@ -523,7 +523,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -616,7 +616,7 @@ msgstr "Erantsi fitxategia notan"
msgid "attachment"
msgstr "Erantsi fitxategia"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Erantsi fitxategia"
@@ -658,7 +658,7 @@ msgstr "Autentifikazioa ez da egin osorik (ez du token-ik hartu)."
msgid "Authorisation token:"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr ""
@@ -745,7 +745,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -790,7 +790,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Utzi"
@@ -813,7 +813,7 @@ msgstr "Bertan behera uzten..."
msgid "Cancelling... Please wait."
msgstr "Bertan behera uzten... itxaron, mesedez."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Ezin atzituta %s"
@@ -942,7 +942,7 @@ msgstr ""
msgid "Characters excluding spaces"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Bertan behera uzten..."
@@ -1033,7 +1033,7 @@ msgstr ""
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1099,7 +1099,7 @@ msgstr ""
msgid "Collaborate on a notebook with others"
msgstr "Aurretik sortu koadernoa, mesedez"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
#, fuzzy
msgid "Collaborate on notebooks with others"
msgstr "Aurretik sortu koadernoa, mesedez"
@@ -1133,7 +1133,7 @@ msgstr ""
msgid "Command"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr ""
@@ -1301,7 +1301,7 @@ msgstr ""
msgid "Copy Link Address"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr ""
@@ -1356,7 +1356,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr ""
@@ -1461,7 +1461,7 @@ msgstr "Sortuta: %d."
msgid "Created: %s"
msgstr "Sortuta: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Koaderno berria sortzen du."
@@ -1935,7 +1935,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2467,7 +2467,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Oharrak inportatzen..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr ""
@@ -2707,7 +2707,7 @@ msgid "Go to source URL"
msgstr ""
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr ""
@@ -2829,7 +2829,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3121,7 +3121,7 @@ msgstr "Aio! Agur! :_( "
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3697,8 +3697,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Ohar berria"
@@ -3742,8 +3742,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Zeregin berria"
@@ -3784,7 +3784,7 @@ msgstr "e"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
#, fuzzy
msgid "No"
msgstr "E"
@@ -3858,7 +3858,7 @@ msgstr ""
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Ez da autentifikatu %s -rekin. Eman galdutako kredentzialak."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3980,7 +3980,7 @@ msgstr ""
msgid "Note&book"
msgstr "Koadernoak"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
#, fuzzy
msgid "Notebook"
@@ -4048,6 +4048,7 @@ msgstr "Data-formatua"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4147,6 +4148,11 @@ msgstr ""
msgid "Open it"
msgstr "On %s: %s"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "On %s: %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr ""
@@ -4604,7 +4610,7 @@ msgstr ""
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4614,7 +4620,7 @@ msgid "QR Code"
msgstr ""
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4679,7 +4685,7 @@ msgstr ""
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
msgid "Recording"
msgstr ""
@@ -4836,7 +4842,7 @@ msgstr "Baliabideak: %d."
msgid "Restart and upgrade"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Zifratua gaitu"
@@ -5049,7 +5055,7 @@ msgstr "Bilatu ohar guztietan"
msgid "Search in current note"
msgstr "Bilatu ohar guztietan"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Bilatu"
@@ -5085,7 +5091,7 @@ msgstr "Gorde aldaketak"
msgid "See the pre-release page for more details: %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
#, fuzzy
msgid "Select"
@@ -5318,6 +5324,11 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Evernotetik esportatutako fitxategiak"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr ""
@@ -5658,7 +5669,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Zifratzea da: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr ""
@@ -5794,7 +5805,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6228,7 +6239,7 @@ msgid ""
msgstr ""
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6432,14 +6443,14 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Erakutsi erabilera datuak."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
"commands."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
msgid "Type a note title to search for it."
msgstr ""
@@ -6875,7 +6886,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6898,12 +6909,12 @@ msgstr ""
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -59,7 +59,7 @@ msgid "(wysiwyg: %s)"
msgstr "(چیزی که بدست خواهی آورد: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(شما می توانید این درخواست را در گزینه ها غیرفعال کنید)"
@@ -219,7 +219,7 @@ msgstr "نمی‌توان یادداشت جدید ایجاد نمود: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -386,7 +386,7 @@ msgid "Add body"
msgstr "افزودن بدنه"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "افزودن جدید"
@@ -521,7 +521,7 @@ msgstr ""
"یک طراحی ذخیره شده خودکار پیدا شد. آیا می‌خواهید یک کپی از آن را به یادداشت "
"پیوست کنید؟"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "خطایی روی داده است: %s"
@@ -617,7 +617,7 @@ msgstr "فایل مشخص شده را به یادداشت پیوست کن."
msgid "attachment"
msgstr "پیوست"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "پیوست‌ها"
@@ -659,7 +659,7 @@ msgstr "احراز هویت انجام نشد (توکن احراز هویت در
msgid "Authorisation token:"
msgstr "توکن مجوز:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "ایجاد مجوز"
@@ -746,7 +746,7 @@ msgstr "توسط %s"
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -791,7 +791,7 @@ msgstr "امکان مشاهده و ویرایش"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "لغو"
@@ -814,7 +814,7 @@ msgstr "در حال لغو..."
msgid "Cancelling... Please wait."
msgstr "در حال لغو... لطفا صبور باشید."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "عدم دسترسی به %s"
@@ -943,7 +943,7 @@ msgstr "کاراکترها"
msgid "Characters excluding spaces"
msgstr "کاراکترها به غیر از فاصله‌ها"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "چک‌باکس"
@@ -1032,7 +1032,7 @@ msgstr "بستن"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1099,7 +1099,7 @@ msgstr "نمای کد"
msgid "Collaborate on a notebook with others"
msgstr "همکاری با دیگران در یک دفترچه"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "همکاری با دیگران در دفترچه‌ها"
@@ -1137,7 +1137,7 @@ msgstr "فرمان"
msgid "Command"
msgstr "فرمان"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "پالت فرمان"
@@ -1296,7 +1296,7 @@ msgstr "کپی تصویر"
msgid "Copy Link Address"
msgstr "کپی کردن آدرس پیوند"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "کپی کردن لینک برای وبسایت"
@@ -1359,7 +1359,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "نمی توان به مخزن افزونه متصل شد."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "یادداشت‌ها صادر نشدند: %s"
@@ -1459,7 +1459,7 @@ msgstr "ایجاد شده: %d."
msgid "Created: %s"
msgstr "ایجاد شده: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "یک دفترچه‌ جدید در زیر دفترچه والد ایجاد نمایید."
@@ -1920,7 +1920,7 @@ msgid "Draw picture"
msgstr "رسم تصویر"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "طراحی"
@@ -2420,7 +2420,7 @@ msgstr "صدور با موفقیت انجام شد!"
msgid "Exporting profile..."
msgstr "در حال صدور حساب‌کاربری..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "در حال صدور «%s» با فرمت «%s». لطفاً صبور باشید..."
@@ -2661,7 +2661,7 @@ msgid "Go to source URL"
msgstr "رفتن به آدرس منبع"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "به هر چیزی بروید..."
@@ -2778,7 +2778,7 @@ msgstr ""
"اگر قبلاً احراز هویت شده‌اید، لطفاً منتظر بمانید تا برنامه با سرویس ابری Joplin "
"همگام شود."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3081,7 +3081,7 @@ msgstr "آخرین خطا: %s"
msgid "Join us on %s"
msgstr "به توئیتر ما بپیوندید"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3636,8 +3636,8 @@ msgstr "یک بروزرسانی موجود است، آیا میخواهید ال
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "یادداشت جدید"
@@ -3677,8 +3677,8 @@ msgstr "برچسب جدید:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "فهرست کار جدید"
@@ -3717,7 +3717,7 @@ msgstr "خیر"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "خیر"
@@ -3790,7 +3790,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "با %s تایید نشد. لطفا هر گواهی‌نامه‌ی ناموجود را ارائه نمایید."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3902,7 +3902,7 @@ msgstr ""
msgid "Note&book"
msgstr "دفترچه"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "دفترچه"
@@ -3965,6 +3965,7 @@ msgstr "زبان، فرمت تاریخ"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4057,6 +4058,11 @@ msgstr ""
msgid "Open it"
msgstr "باز کن"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "بازکردن %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "بازکردن مشاهده‌کننده PDF"
@@ -4515,7 +4521,7 @@ msgstr "اشتراک‌گذاری یادداشت..."
msgid "Publish Notes"
msgstr "اشتراک‌گذاری یادداشت‌ها"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "اشتراک‌گذاری یادداشت‌ها در اینترنت"
@@ -4526,7 +4532,7 @@ msgid "QR Code"
msgstr "کد"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4589,7 +4595,7 @@ msgstr "افزونه های پیشنهادی"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "سرفصل"
@@ -4737,7 +4743,7 @@ msgstr "منابع: %d."
msgid "Restart and upgrade"
msgstr "راه اندازی مجدد و ارتقا"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "راه اندازی مجدد در حالت امن"
@@ -4938,7 +4944,7 @@ msgstr "جستجو در تمام یادداشت‌ها"
msgid "Search in current note"
msgstr "جستجو در یادداشت جاری"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "بدون نتیجه"
@@ -4972,7 +4978,7 @@ msgstr "تغییرات کامل"
msgid "See the pre-release page for more details: %s"
msgstr "برای جزئیات بیشتر به صفحه پیش از انتشار مراجعه کنید: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "انتخاب"
@@ -5191,6 +5197,11 @@ msgstr "منوی کناری باز شد"
msgid "Sidebar"
msgstr "نوار کناری"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "اتصال به سرویس ابری joplin"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "اندازه"
@@ -5527,7 +5538,7 @@ msgstr "همگام‌سازی با هدف داده شده (به طور پیش ف
msgid "Sync Version: %s"
msgstr "نسخه همگام‌سازی: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "یادداشت‌های خود را همگام‌سازی کنید"
@@ -5659,7 +5670,7 @@ msgstr ""
"حساب‌کاربری فعال را نمی توان حذف کرد. به حساب‌کاربری دیگری بروید و دوباره "
"امتحان کنید."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6160,7 +6171,7 @@ msgstr ""
"نمایید:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6356,7 +6367,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "`joplin help` را برای راهنمای استفاده تایپ کنید."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6366,7 +6377,7 @@ msgstr ""
"دنبال نام برچسب یا @ و به دنبال آن نام دفترچه را تایپ کنید. یا برای جستجوی "
"دستورات، دستور «:» تایپ نمایید."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "برچسب‌های جدید را تایپ کنید یا از لیست انتخاب کنید"
@@ -6802,7 +6813,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "صفحه پاسخگو نیست."
@@ -6825,12 +6836,12 @@ msgstr "بله"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "بله"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -59,7 +59,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -220,7 +220,7 @@ msgstr "Luo uuden muistiinpanon."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -389,7 +389,7 @@ msgid "Add body"
msgstr "Lisää runko"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Lisää uusi"
@@ -524,7 +524,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -618,7 +618,7 @@ msgstr "Liittää annetun tiedoston muistiinpanoon."
msgid "attachment"
msgstr "liite"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Liitteet"
@@ -660,7 +660,7 @@ msgstr "Todennusta ei suoritettu loppuun (todennustunnusta ei saatu)."
msgid "Authorisation token:"
msgstr "Valtuutuksen tunnus:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -748,7 +748,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -793,7 +793,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Peruuta"
@@ -816,7 +816,7 @@ msgstr "Peruutetaan..."
msgid "Cancelling... Please wait."
msgstr "Peruutetaan ... Odota hetki."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Ei voi käyttää %s"
@@ -947,7 +947,7 @@ msgstr "Merkit"
msgid "Characters excluding spaces"
msgstr "Merkit välilyöntejä lukuun ottamatta"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Valintaruutu"
@@ -1037,7 +1037,7 @@ msgstr "Sulkea"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1102,7 +1102,7 @@ msgstr "Koodinäkymä"
msgid "Collaborate on a notebook with others"
msgstr "Muistikirjojen yhteiskäyttö muiden kanssa"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Muistikirjojen yhteiskäyttö muiden kanssa"
@@ -1141,7 +1141,7 @@ msgstr "komento"
msgid "Command"
msgstr "Komento"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Komentovalikoima"
@@ -1302,7 +1302,7 @@ msgstr "Kopioi kuva"
msgid "Copy Link Address"
msgstr "Kopioi linkin osoite"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1368,7 +1368,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Yhteyden muodostaminen laajennusten arkistoon epäonnistui."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Muistiinpanoja ei voitu viedä: %s"
@@ -1469,7 +1469,7 @@ msgstr "Luotu: %d."
msgid "Created: %s"
msgstr "Luotu: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Luo uusi muistikirja päämuistikirjan alle."
@@ -1933,7 +1933,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2444,7 +2444,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Viedään profiili..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Viedään tiedostoon \"%s\" muodossa \"%s\". Odota..."
@@ -2684,7 +2684,7 @@ msgid "Go to source URL"
msgstr "Siirry lähteen URL osoitteeseen"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Siirry mihin tahansa..."
@@ -2800,7 +2800,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3107,7 +3107,7 @@ msgstr "Viimeinen virhe: %s"
msgid "Join us on %s"
msgstr "Liity meihin Twitterissä"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3669,8 +3669,8 @@ msgstr "Päivitys on saatavilla. Haluatko ladata sen nyt?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Uusi muistiinpano"
@@ -3710,8 +3710,8 @@ msgstr "Uudet tunnisteet:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Uusi tehtävä"
@@ -3750,7 +3750,7 @@ msgstr "ei"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Ei"
@@ -3824,7 +3824,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Ei todennettu %s. Anna puuttuvat tunnistetiedot."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3936,7 +3936,7 @@ msgstr ""
msgid "Note&book"
msgstr "&Muistikirjat"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Muistikirja"
@@ -4000,6 +4000,7 @@ msgstr "Päivämäärän muoto"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4093,6 +4094,11 @@ msgstr ""
msgid "Open it"
msgstr "Avaa"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Avaa %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Avaa PDF katseluohjelma"
@@ -4553,7 +4559,7 @@ msgstr "Muistiinpanon julkaiseminen..."
msgid "Publish Notes"
msgstr "Julkaise muistiinpanot"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Julkaise muistiinpanot Internetissä"
@@ -4564,7 +4570,7 @@ msgid "QR Code"
msgstr "Koodi"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4629,7 +4635,7 @@ msgstr "komento"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Otsikko"
@@ -4780,7 +4786,7 @@ msgstr "Resursseja: %d."
msgid "Restart and upgrade"
msgstr "Käynnistä uudelleen ja päivitä"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Käynnistä uudelleen ja päivitä"
@@ -4987,7 +4993,7 @@ msgstr "Etsi kaikista muistiinpanoista"
msgid "Search in current note"
msgstr "Etsi nykyisestä muistiinpanosta"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Ei tuloksia"
@@ -5022,7 +5028,7 @@ msgstr "Täysi muutosloki"
msgid "See the pre-release page for more details: %s"
msgstr "Lisätietoja on ennakkojulkaisusivulla: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Valitse"
@@ -5247,6 +5253,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Sivupalkki"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Koko"
@@ -5582,7 +5593,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Synkronoi versio: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synkronoi muistiinpanosi"
@@ -5717,7 +5728,7 @@ msgstr ""
"Aktiivista profiilia ei voi poistaa. Vaihda toiseen profiiliin ja yritä "
"uudelleen."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6216,7 +6227,7 @@ msgstr ""
"Jos haluat, että Joplin voi synkronoida Dropboxin kanssa, toimi seuraavasti:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6417,7 +6428,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Valitse `joplin help` saadaksesi käytöstä lisätietoja."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6427,7 +6438,7 @@ msgstr ""
"kirjoittaa # ja sen jälkeen tunnisteen nimen tai @ ja sen jälkeen "
"muistikirjan nimen. Voit myös etsiä komentoja kirjoittamalla : ."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Kirjoita uudet tunnisteet tai valitse luettelosta"
@@ -6856,7 +6867,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6879,12 +6890,12 @@ msgstr "kyllä"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Kyllä"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -60,7 +60,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg : %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Vous pouvez désactiver ce message dans les options)"
@@ -214,7 +214,7 @@ msgstr "%s ne peut pas être supérieur à %s"
msgid "%s cannot be less than %s"
msgstr "%s ne peut pas être inférieur à %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -383,7 +383,7 @@ msgid "Add body"
msgstr "Ajoutez le contenu"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Ajouter"
@@ -503,8 +503,8 @@ msgstr ""
#: packages/app-cli/app/command-mkbook.ts:33
#: packages/app-cli/app/command-mv.ts:30
msgid ""
"Ambiguous notebook \"%s\". Please use short notebook id instead - press \"ti"
"\" to see the short notebook id"
"Ambiguous notebook \"%s\". Please use short notebook id instead - press "
"\"ti\" to see the short notebook id"
msgstr ""
"Carnet ambigu \"%s\". Veuillez utiliser l’identifiant abrégé du carnet – "
"pressez \"ti\" pour afficher l’identifiant abrégé"
@@ -514,7 +514,7 @@ msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
"Un dessin automatiquement sauvegardé a été trouvé. Le joindre à la note ?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Une erreur est survenue : %s"
@@ -613,7 +613,7 @@ msgstr "Joindre le fichier fourni à la note."
msgid "attachment"
msgstr "pièce jointe"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
msgid "Attachment"
msgstr "Pièce jointe"
@@ -655,7 +655,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr "Jeton d'authentification :"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Autoriser"
@@ -743,7 +743,7 @@ msgstr "par %s"
msgid "by word"
msgstr "par mot"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr "Photo"
@@ -788,7 +788,7 @@ msgstr "Lecture et édition"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Annuler"
@@ -813,7 +813,7 @@ msgstr "Annulation…"
msgid "Cancelling... Please wait."
msgstr "Annulation… Veuillez attendre."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Impossible d'accéder à %s"
@@ -947,7 +947,7 @@ msgstr "Caractères"
msgid "Characters excluding spaces"
msgstr "Caractères sans espaces"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Check"
msgstr "Cocher"
@@ -1034,7 +1034,7 @@ msgstr "fermer"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1100,7 +1100,7 @@ msgstr "Code"
msgid "Collaborate on a notebook with others"
msgstr "Collaborer sur des carnets avec d'autres personnes"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Collaborer sur des carnets avec d'autres personnes"
@@ -1119,9 +1119,9 @@ msgstr "Alarmes à venir"
#: packages/lib/models/settings/builtInMetadata.ts:1434
msgid ""
"Comma-separated list of paths to directories to load the certificates from, "
"or path to individual cert files. For example: /my/cert_dir, /other/custom."
"pem. Note that if you make changes to the TLS settings, you must save your "
"changes before clicking on \"Check synchronisation configuration\"."
"or path to individual cert files. For example: /my/cert_dir, /other/"
"custom.pem. Note that if you make changes to the TLS settings, you must save "
"your changes before clicking on \"Check synchronisation configuration\"."
msgstr ""
"Liste séparée par des virgules contenant les chemins des répertoires "
"contenants des certificats, ou les chemins de certificats individuels. Par "
@@ -1137,7 +1137,7 @@ msgstr "commande"
msgid "Command"
msgstr "Commande"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Palette de commandes"
@@ -1293,7 +1293,7 @@ msgstr "Copier image"
msgid "Copy Link Address"
msgstr "Copier l'adresse du lien"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Copier le lien vers le site Web"
@@ -1356,7 +1356,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Impossible de télécharger la liste des modules."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Impossible d'exporter les notes : %s"
@@ -1456,7 +1456,7 @@ msgstr "Créés : %d."
msgid "Created: %s"
msgstr "Créé : %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
msgid "Creates a new note with an attachment of type %s"
msgstr "Crée une nouvelle note avec une pièce jointe de type %s"
@@ -1911,7 +1911,7 @@ msgid "Draw picture"
msgstr "Dessiner une image"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Dessin"
@@ -2408,7 +2408,7 @@ msgstr "Exporté avec succès !"
msgid "Exporting profile..."
msgstr "Exportation du profil…"
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Exportation en cours vers \"%s\" au format \"%s\". Veuillez patienter…"
@@ -2652,7 +2652,7 @@ msgid "Go to source URL"
msgstr "Aller à l'URL source"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Navigation rapide…"
@@ -2769,7 +2769,7 @@ msgstr ""
"Si vous avez déjà autorisé, veuillez attendre que l'application se "
"synchronise avec Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3073,7 +3073,7 @@ msgstr "Éléments avec erreur : %s"
msgid "Join us on %s"
msgstr "Rejoignez-nous sur %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3624,8 +3624,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nouvelle note"
@@ -3665,8 +3665,8 @@ msgstr "Nouvelles étiquettes :"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nouvelle tâche"
@@ -3705,7 +3705,7 @@ msgstr "non"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Non"
@@ -3779,7 +3779,7 @@ msgstr ""
"Non‑connecté à %s. Veuillez fournir les identifiants et mots de passe "
"manquants."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr "Non coché"
@@ -3890,7 +3890,7 @@ msgstr ""
msgid "Note&book"
msgstr "Carnet"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Carnet"
@@ -3952,6 +3952,7 @@ msgstr "OCR : URL ou chemin d'accès aux données linguistiques"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4042,6 +4043,11 @@ msgstr "Ouvrir dans une nouvelle fenêtre"
msgid "Open it"
msgstr "L'ouvrir"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Ouvrir %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Ouvrir visionneuse PDF"
@@ -4498,7 +4504,7 @@ msgstr "Publier la note…"
msgid "Publish Notes"
msgstr "Publier des notes"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Publier les notes sur Internet"
@@ -4508,7 +4514,7 @@ msgid "QR Code"
msgstr "Code QR"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4570,7 +4576,7 @@ msgstr "Plugins recommandés"
msgid "Record audio"
msgstr "Enregistrer l'audio"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
msgid "Recording"
msgstr "Enregistrement"
@@ -4713,7 +4719,7 @@ msgstr "Ressources : %d."
msgid "Restart and upgrade"
msgstr "Redémarrer et mettre à jour"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Redémarrer en mode sans échec"
@@ -4916,7 +4922,7 @@ msgstr "Chercher dans toutes les notes"
msgid "Search in current note"
msgstr "Chercher dans la note en cours"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Résultats de la recherche"
@@ -4948,7 +4954,7 @@ msgstr "Voir le journal des modifications"
msgid "See the pre-release page for more details: %s"
msgstr "Voir la page des pré‑release pour plus de détails : %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Sélectionner"
@@ -5162,6 +5168,11 @@ msgstr "Menu latéral ouvert"
msgid "Sidebar"
msgstr "Barre latérale"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Se connecter à Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Taille"
@@ -5501,7 +5512,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Version de Synchro : %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synchroniser vos notes"
@@ -5632,7 +5643,7 @@ msgid ""
msgstr ""
"Le profil actif ne peut pas être supprimé. Changez de profil et réessayez."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6152,7 +6163,7 @@ msgstr ""
"étapes ci‑dessous :"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6186,8 +6197,8 @@ msgid ""
"To manually sort the notes, the sort order must be changed to \"%s\" in the "
"menu \"%s\" > \"%s\""
msgstr ""
"Pour trier les notes manuellement, l'ordre des notes doit être changé en \"%s"
"\" dans le menu \"%s\" > \"%s\""
"Pour trier les notes manuellement, l'ordre des notes doit être changé en "
"\"%s\" dans le menu \"%s\" > \"%s\""
#: packages/app-cli/app/command-help.ts:82
msgid "To maximise/minimise the console, press \"tc\"."
@@ -6345,7 +6356,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Tapez `Joplin help` pour afficher l'aide."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6354,7 +6365,7 @@ msgstr ""
"Entrez le titre d’une note, ou entrez # suivi du nom d’une étiquette, ou @ "
"suivi du nom d’un carnet. Ou entrez : pour chercher une commande."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
msgid "Type a note title to search for it."
msgstr "Tapez un titre de note pour la rechercher."
@@ -6788,7 +6799,7 @@ msgstr ""
msgid "Whisper"
msgstr "Whisper"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "La fenêtre ne répond pas."
@@ -6811,12 +6822,12 @@ msgstr "oui"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Oui"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"
@@ -7062,8 +7073,8 @@ msgstr "Zoom arrière"
#~ msgstr "Base de données v%s"
#~ msgid ""
#~ "There is currently no notebook. Create one by clicking on \"New notebook"
#~ "\"."
#~ "There is currently no notebook. Create one by clicking on \"New "
#~ "notebook\"."
#~ msgstr ""
#~ "Il n'y a pour l'instant aucun carnet. Créez‑en un en cliquant sur "
#~ "\"Nouveau carnet\"."
@@ -7599,8 +7610,9 @@ msgstr "Zoom arrière"
#~ "Please set the \"sync.2.path\" config value to the desired "
#~ "synchronisation destination."
#~ msgstr ""
#~ "Veuillez attribuer une valeur au paramètre de configuration \"sync.2.path"
#~ "\" pour indiquer le dossier où devra se faire la synchronisation."
#~ "Veuillez attribuer une valeur au paramètre de configuration "
#~ "\"sync.2.path\" pour indiquer le dossier où devra se faire la "
#~ "synchronisation."
#~ msgid "Seach:"
#~ msgstr "Chercher :"

View File

@@ -56,7 +56,7 @@ msgid "(wysiwyg: %s)"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -225,7 +225,7 @@ msgstr "Crea unha nota nova."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -392,7 +392,7 @@ msgid "Add body"
msgstr ""
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "Sen título"
@@ -522,7 +522,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -615,7 +615,7 @@ msgstr "Anexa o ficheiro dado á nota."
msgid "attachment"
msgstr "Anexar un ficheiro"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Anexar un ficheiro"
@@ -658,7 +658,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr ""
@@ -746,7 +746,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -791,7 +791,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Cancelar"
@@ -814,7 +814,7 @@ msgstr "Cancelando..."
msgid "Cancelling... Please wait."
msgstr "Cancelando... Agarde."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Non é posíbel acceder a %s"
@@ -945,7 +945,7 @@ msgstr ""
msgid "Characters excluding spaces"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Cancelando..."
@@ -1036,7 +1036,7 @@ msgstr ""
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1103,7 +1103,7 @@ msgstr "Vista"
msgid "Collaborate on a notebook with others"
msgstr "Cree un caderno primeiro"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
#, fuzzy
msgid "Collaborate on notebooks with others"
msgstr "Cree un caderno primeiro"
@@ -1137,7 +1137,7 @@ msgstr ""
msgid "Command"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr ""
@@ -1305,7 +1305,7 @@ msgstr ""
msgid "Copy Link Address"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1362,7 +1362,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr ""
@@ -1467,7 +1467,7 @@ msgstr "Creado: %d."
msgid "Created: %s"
msgstr "Creado: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Crea un caderno novo."
@@ -1940,7 +1940,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2469,7 +2469,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Importando notas..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Exportando a «%s» como formato «%s». Agarde..."
@@ -2715,7 +2715,7 @@ msgid "Go to source URL"
msgstr ""
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr ""
@@ -2838,7 +2838,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3130,7 +3130,7 @@ msgstr "Último erro: %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3703,8 +3703,8 @@ msgstr "Hai unha actualización dispoñíbel, desexa descargala agora?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nova nota"
@@ -3746,8 +3746,8 @@ msgstr "Etiquetas novas:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nova tarefa"
@@ -3787,7 +3787,7 @@ msgstr "n"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Non"
@@ -3860,7 +3860,7 @@ msgstr ""
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Non está autenticado en %s. Proporcione as credencias que faltan."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3981,7 +3981,7 @@ msgstr ""
msgid "Note&book"
msgstr "Cadernos"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
#, fuzzy
msgid "Notebook"
@@ -4048,6 +4048,7 @@ msgstr "Formato de data"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4145,6 +4146,11 @@ msgstr ""
msgid "Open it"
msgstr "Abrir…"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Abrir %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr ""
@@ -4598,7 +4604,7 @@ msgstr ""
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4608,7 +4614,7 @@ msgid "QR Code"
msgstr ""
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4673,7 +4679,7 @@ msgstr ""
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
msgid "Recording"
msgstr ""
@@ -4828,7 +4834,7 @@ msgstr "Recursos: %d."
msgid "Restart and upgrade"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Activar cifrado"
@@ -5038,7 +5044,7 @@ msgstr "Buscar en todas as notas"
msgid "Search in current note"
msgstr "Buscar en todas as notas"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Buscar…"
@@ -5073,7 +5079,7 @@ msgstr "Gardar cambios"
msgid "See the pre-release page for more details: %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
#, fuzzy
msgid "Select"
@@ -5308,6 +5314,11 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Sitio web de Joplin"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr ""
@@ -5644,7 +5655,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "O cifrado é: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#, fuzzy
msgid "Sync your notes"
msgstr "Ordenar notas por"
@@ -5781,7 +5792,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6224,7 +6235,7 @@ msgid ""
msgstr ""
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6425,14 +6436,14 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Escriba «joplin help» para obter información do uso."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
"commands."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Escriba etiquetas novas ou seleccione da lista"
@@ -6865,7 +6876,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6889,12 +6900,12 @@ msgstr "Si"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Si"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -61,7 +61,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -227,7 +227,7 @@ msgstr "Nije moguće stvoriti novu bilješku: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -397,7 +397,7 @@ msgid "Add body"
msgstr "Dodaj sadržaj"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Dodaj novu"
@@ -530,7 +530,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -626,7 +626,7 @@ msgstr "Prilaže zadanu datoteku bilješci."
msgid "attachment"
msgstr "privitak"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Privici"
@@ -668,7 +668,7 @@ msgstr "Autentifikacija nije završena (nije dobiven ključ autentifikacije)."
msgid "Authorisation token:"
msgstr "Ključ autorizacije:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -756,7 +756,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -801,7 +801,7 @@ msgstr "Može pogledati i urediti"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Odustani"
@@ -824,7 +824,7 @@ msgstr "Prekida se …"
msgid "Cancelling... Please wait."
msgstr "Prekida se … Pričekaj."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Nije moguće pristupiti %s"
@@ -953,7 +953,7 @@ msgstr "Broj znakova"
msgid "Characters excluding spaces"
msgstr "Broj znakova bez razmaka"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Označivo polje"
@@ -1043,7 +1043,7 @@ msgstr "Zatvori"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1108,7 +1108,7 @@ msgstr "Prikaz koda"
msgid "Collaborate on a notebook with others"
msgstr "Surađuj s drugima na bilježnicama"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Surađuj s drugima na bilježnicama"
@@ -1146,7 +1146,7 @@ msgstr "naredba"
msgid "Command"
msgstr "Naredba"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Paleta naredbi"
@@ -1307,7 +1307,7 @@ msgstr "Kopiraj sliku"
msgid "Copy Link Address"
msgstr "Kopiraj adresu poveznice"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1373,7 +1373,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Neuspjelo povezivanje s repozitorijem dodataka."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Neuspio izvoz bilježaka: %s"
@@ -1473,7 +1473,7 @@ msgstr "Stvoreno: %d."
msgid "Created: %s"
msgstr "Stvoreno: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Stvori novu bilježnicu u nadređenoj bilježnici."
@@ -1937,7 +1937,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2445,7 +2445,7 @@ msgstr "Uspješno izvezeno!"
msgid "Exporting profile..."
msgstr "Izvoz profila …"
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Izvoz u „%s” kao „%s” format. Pričekaj …"
@@ -2684,7 +2684,7 @@ msgid "Go to source URL"
msgstr "Idi na URL izvora"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Idi na …"
@@ -2799,7 +2799,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3107,7 +3107,7 @@ msgstr "Zadnja greška: %s"
msgid "Join us on %s"
msgstr "Prati nas na Twitteru"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3673,8 +3673,8 @@ msgstr "Dostupna je nova verzija. Želiš li je sada preuzeti?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nova bilješka"
@@ -3714,8 +3714,8 @@ msgstr "Nove oznake:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Novi zadatak"
@@ -3754,7 +3754,7 @@ msgstr "ne"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Ne"
@@ -3828,7 +3828,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Nije autentificirano s %s. Upiši sve nedostajuće podatke za prijavu."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3940,7 +3940,7 @@ msgstr ""
msgid "Note&book"
msgstr "Biljež&nica"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Bilježnica"
@@ -4004,6 +4004,7 @@ msgstr "Format datuma"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4097,6 +4098,11 @@ msgstr ""
msgid "Open it"
msgstr "Otvori"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Otvori %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Otvori prikazivač PDF datoteka"
@@ -4555,7 +4561,7 @@ msgstr "Objavi bilješku …"
msgid "Publish Notes"
msgstr "Objavi bilješke"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Objavi blješke na internetu"
@@ -4566,7 +4572,7 @@ msgid "QR Code"
msgstr "Kȏd"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4631,7 +4637,7 @@ msgstr "naredba"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Naslov"
@@ -4782,7 +4788,7 @@ msgstr "Resursi: %d."
msgid "Restart and upgrade"
msgstr "Pokreni ponovo i nadogradi"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Pokreni ponovo i nadogradi"
@@ -4990,7 +4996,7 @@ msgstr "Traži u svim bilješkama"
msgid "Search in current note"
msgstr "Traži u trenutačnoj bilješci"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Nema rezultata"
@@ -5025,7 +5031,7 @@ msgstr "Potpuni dnevnik promjena"
msgid "See the pre-release page for more details: %s"
msgstr "Pregledaj pojedinosti na stranici predizdanja: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Označi"
@@ -5251,6 +5257,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Bočna traka"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Veličina"
@@ -5588,7 +5599,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Verzija sinkronizacije: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Sinkroniziraj svoje bilješke"
@@ -5723,7 +5734,7 @@ msgstr ""
"Aktivni profil se ne može izbrisati. Prebaci se na jedan drugi profil i "
"pokušaj ponovo."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6223,7 +6234,7 @@ msgid ""
msgstr "Za sinkronizaciju Joplina s Dropboxom slijedi sljedeće korake:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6422,7 +6433,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Za informacije o korištenju upiši `joplin help`."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6432,7 +6443,7 @@ msgstr ""
"Alternativno koristi znak „#” s imenom oznake ili „@” s imenom bilježnice. "
"Traži naredbe pomoću „:”."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Upiši nove oznake ili odaberi iz popisa"
@@ -6868,7 +6879,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6891,12 +6902,12 @@ msgstr "da"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Da"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

File diff suppressed because it is too large Load Diff

View File

@@ -61,7 +61,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Anda dapat mematikan peringatan ini di pengaturan)"
@@ -215,7 +215,7 @@ msgstr "%s tidak boleh lebih besar dari %s"
msgid "%s cannot be less than %s"
msgstr "%s tidak boleh kurang dari %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -380,7 +380,7 @@ msgid "Add body"
msgstr "Tambahkan isi"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Tambah baru"
@@ -513,7 +513,7 @@ msgstr ""
"Telah ditemukan gambar yang disimpan otomatis. Lampirkan salinan gambar ke "
"catatan?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Sebuah galat telah terjadi: %s"
@@ -611,7 +611,7 @@ msgstr "Melampirkan berkas yang dipilih ke catatan."
msgid "attachment"
msgstr "lampiran"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
msgid "Attachment"
msgstr "Lampiran"
@@ -652,7 +652,7 @@ msgstr "Otentikasi tidak selesai (tidak menerima token otentikasi)."
msgid "Authorisation token:"
msgstr "Token otorisasi:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Otorisasikan"
@@ -739,7 +739,7 @@ msgstr "oleh %s"
msgid "by word"
msgstr "berdasarkan kata"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr "Kamera"
@@ -784,7 +784,7 @@ msgstr "Dapat melihat dan menyunting"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Batal"
@@ -809,7 +809,7 @@ msgstr "Membatalkan..."
msgid "Cancelling... Please wait."
msgstr "Membatalkan… Mohon tunggu."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Tidak dapat mengakses %s"
@@ -940,7 +940,7 @@ msgstr "Karakter"
msgid "Characters excluding spaces"
msgstr "Semua karakter kecuali spasi"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Check"
msgstr "Periksa"
@@ -1028,7 +1028,7 @@ msgstr "tutup"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1094,7 +1094,7 @@ msgstr "Tampilan Kode"
msgid "Collaborate on a notebook with others"
msgstr "Bekerja sama pada sebuah buku catatan dengan orang lain"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Bekerja sama pada buku-buku catatan dengan orang lain"
@@ -1131,7 +1131,7 @@ msgstr "perintah"
msgid "Command"
msgstr "Perintah"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Palet perintah"
@@ -1285,7 +1285,7 @@ msgstr "Salin gambar"
msgid "Copy Link Address"
msgstr "Salin Alamat Tautan"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Salin tautan ke situs web"
@@ -1347,7 +1347,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Tidak dapat terhubung ke repositori plugin."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Tidak dapat mengekspor catatan: %s"
@@ -1447,7 +1447,7 @@ msgstr "Dibuat: %d."
msgid "Created: %s"
msgstr "Dibuat: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
msgid "Creates a new note with an attachment of type %s"
msgstr "Membuat sebuah catatan dengan sebuah lampiran dengan jenis %s"
@@ -1899,7 +1899,7 @@ msgid "Draw picture"
msgstr "Membuat gambar"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Menggambar"
@@ -2397,7 +2397,7 @@ msgstr "Telah diekspor dengan sukses!"
msgid "Exporting profile..."
msgstr "Mengekspor profil..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Mengekspor ke \"%s\" sebagai format \"%s\". Mohon tunggu..."
@@ -2641,7 +2641,7 @@ msgid "Go to source URL"
msgstr "Pergi ke URL sumber"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Pergi ke apa saja..."
@@ -2757,7 +2757,7 @@ msgstr ""
"Jika Anda telah memberi izin, silakan tunggu aplikasi menyelaraskan ke "
"Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3057,7 +3057,7 @@ msgstr "Benda-benda dengan galat: %s"
msgid "Join us on %s"
msgstr "Bergabung dengan kami di %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3606,8 +3606,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Catatan baru"
@@ -3647,8 +3647,8 @@ msgstr "Label baru:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Tugas baru"
@@ -3687,7 +3687,7 @@ msgstr "tidak"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Tidak"
@@ -3762,7 +3762,7 @@ msgstr ""
"Tidak dapat dilakukan otentikasi dengan %s. Harap sediakan semua kredensial "
"yang hilang."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr "Tidak diperiksa"
@@ -3873,7 +3873,7 @@ msgstr ""
msgid "Note&book"
msgstr "Catatan & buku"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Buku catatan"
@@ -3936,6 +3936,7 @@ msgstr "OCR: Jalur atau URL data bahasa"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4026,6 +4027,11 @@ msgstr "Buka di jendela baru"
msgid "Open it"
msgstr "Buka yang dipilih"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Buka %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Buka penampil PDF"
@@ -4479,7 +4485,7 @@ msgstr "Menerbitkan catatan…"
msgid "Publish Notes"
msgstr "Terbitkan Catatan"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Terbitkan catatan ke internet"
@@ -4489,7 +4495,7 @@ msgid "QR Code"
msgstr "Kode QR"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4551,7 +4557,7 @@ msgstr "Plugin yang disarankan"
msgid "Record audio"
msgstr "Rekam suara"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
msgid "Recording"
msgstr "Rekaman"
@@ -4696,7 +4702,7 @@ msgstr "Sumber daya: %d."
msgid "Restart and upgrade"
msgstr "Mulai ulang dan tingkatkan"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Mulai ulang dalam mode aman"
@@ -4897,7 +4903,7 @@ msgstr "Cari di semua catatan"
msgid "Search in current note"
msgstr "Cari di catatan sekarang"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Hasil pencarian"
@@ -4929,7 +4935,7 @@ msgstr "Lihat catatan perubahan"
msgid "See the pre-release page for more details: %s"
msgstr "Lihat halaman prarilis untuk rincian lebih banyak: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Pilih"
@@ -5143,6 +5149,11 @@ msgstr "Menu samping terbuka"
msgid "Sidebar"
msgstr "Bilah samping"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Masuk ke Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Ukuran"
@@ -5482,7 +5493,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Versi penyelarasan: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Selaraskan catatan Anda"
@@ -5614,7 +5625,7 @@ msgstr ""
"Profil yang aktif tidak dapat dihapus. Pindah ke profil yang berbeda dan "
"coba kembali."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6117,7 +6128,7 @@ msgstr ""
"langkah berikut:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6311,7 +6322,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Ketik `joplin help` untuk informasi penggunaan."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6321,7 +6332,7 @@ msgstr ""
"# diikuti dengan nama label, atau @ diikuti dengan nama buku catatan. Atau "
"ketik : untuk mencari perintah."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
msgid "Type a note title to search for it."
msgstr "Ketik sebuah judul catatan untuk mencarinya."
@@ -6758,7 +6769,7 @@ msgstr ""
msgid "Whisper"
msgstr "Whisper"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Jendela tetap."
@@ -6781,12 +6792,12 @@ msgstr "ya"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Ya"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -62,7 +62,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Puoi disabilitare questo messaggio nelle opzioni)"
@@ -222,7 +222,7 @@ msgstr "Impossibile creare una nuova nota: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -395,7 +395,7 @@ msgid "Add body"
msgstr "Aggiungi corpo"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Aggiungi nuova"
@@ -530,7 +530,7 @@ msgstr ""
"È stato trovato un disegno salvato automaticamente. Allegarne una copia alla "
"nota?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Si è verificato un errore: %s"
@@ -627,7 +627,7 @@ msgstr "Allega il seguente file alla nota."
msgid "attachment"
msgstr "allegato"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Allegati"
@@ -671,7 +671,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr "Token di autorizzazione:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Autorizza"
@@ -759,7 +759,7 @@ msgstr "da %s"
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -804,7 +804,7 @@ msgstr "Lettura e modifica"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Annulla"
@@ -828,7 +828,7 @@ msgstr "Annullamento..."
msgid "Cancelling... Please wait."
msgstr "Annullamento... Attendere per favore."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Non è possibile accedere a %s"
@@ -963,7 +963,7 @@ msgstr "Caratteri"
msgid "Characters excluding spaces"
msgstr "Caratteri esclusi spazi"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Casella di controllo"
@@ -1053,7 +1053,7 @@ msgstr "Chiudi"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1120,7 +1120,7 @@ msgstr "Codice"
msgid "Collaborate on a notebook with others"
msgstr "Collabora su un taccuino con altri"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Collabora su un taccuino con altri"
@@ -1159,7 +1159,7 @@ msgstr "comando"
msgid "Command"
msgstr "Comando"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Comandi"
@@ -1318,7 +1318,7 @@ msgstr "Copia immagine"
msgid "Copy Link Address"
msgstr "Copia l'indirizzo del link"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Copia link a sito web"
@@ -1382,7 +1382,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Non è possibile connettersi al catalogo dei plugin."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Impossibile esportare le note: %s"
@@ -1482,7 +1482,7 @@ msgstr "Creato: %d."
msgid "Created: %s"
msgstr "Creato: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Crea un nuovo taccuino sotto un taccuino principale."
@@ -1945,7 +1945,7 @@ msgid "Draw picture"
msgstr "Disegna l'immagine"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Disegno"
@@ -2447,7 +2447,7 @@ msgstr "Esportato con successo!"
msgid "Exporting profile..."
msgstr "Esportazione profilo..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Esportazione da \"%s\" in formato \"%s\". Per favore attendere..."
@@ -2691,7 +2691,7 @@ msgid "Go to source URL"
msgstr "Vai all'URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Cerca ovunque..."
@@ -2808,7 +2808,7 @@ msgstr ""
"Se hai già concesso l'autorizzazione, aspetta che l'app si sincronizzi con "
"Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3110,7 +3110,7 @@ msgstr "Ultimo errore: %s"
msgid "Join us on %s"
msgstr "Unisciti a noi su Twitter"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3670,8 +3670,8 @@ msgstr "È disponibile un aggiornamento, vuoi scaricarlo ora?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nuova nota"
@@ -3711,8 +3711,8 @@ msgstr "Nuovi tag:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nuovo \"Cose-da-fare\""
@@ -3751,7 +3751,7 @@ msgstr "no"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "No"
@@ -3824,7 +3824,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Non autenticato con %s. Si prega di fornire le credenziali mancanti."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3934,7 +3934,7 @@ msgstr "Nota: Quando una nota è condivisa, non sarà più criptata nel server."
msgid "Note&book"
msgstr "Taccuino"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Taccuini"
@@ -3997,6 +3997,7 @@ msgstr "Lingua, formato della data"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4089,6 +4090,11 @@ msgstr ""
msgid "Open it"
msgstr "Aprilo"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Aprire %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Apri visualizzatore PDF"
@@ -4548,7 +4554,7 @@ msgstr "Pubblica nota..."
msgid "Publish Notes"
msgstr "Pubblica note"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Pubblicare note su Internet"
@@ -4559,7 +4565,7 @@ msgid "QR Code"
msgstr "Codice"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4622,7 +4628,7 @@ msgstr "Plugin raccomandato"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Intestazione"
@@ -4770,7 +4776,7 @@ msgstr "Risorse: %d."
msgid "Restart and upgrade"
msgstr "Aggiorna e riavvia"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Riavvia in modalità provvisoria"
@@ -4969,7 +4975,7 @@ msgstr "Cerca in tutte le note"
msgid "Search in current note"
msgstr "Cerca nella nota corrente"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Nessun risultato"
@@ -5003,7 +5009,7 @@ msgstr "Changelog completo"
msgid "See the pre-release page for more details: %s"
msgstr "Vedi la pagina di pre-rilascio per maggiori dettagli: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Seleziona"
@@ -5224,6 +5230,11 @@ msgstr "Menù laterale aperto"
msgid "Sidebar"
msgstr "Barra laterale"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Accedi a Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Dimensione"
@@ -5565,7 +5576,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Sinc. versione: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Sincronizza le tue note"
@@ -5697,7 +5708,7 @@ msgstr ""
"Il profilo attivo non può essere eliminato. Passa a un profilo diverso e "
"riprova."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6211,7 +6222,7 @@ msgstr ""
"di seguito:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6408,7 +6419,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Scrivi `joplin help` per informazioni sull'uso."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6418,7 +6429,7 @@ msgstr ""
"digita # seguito dal nome di un'etichetta, oppure @ seguito dal nome di un "
"taccuino. O scrivi : per cercare un comando."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Digita nuove etichette o seleziona dalla lista"
@@ -6859,7 +6870,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "La finestra non risponde."
@@ -6882,12 +6893,12 @@ msgstr "sì"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Sì"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -59,7 +59,7 @@ msgid "(wysiwyg: %s)"
msgstr "(WYSIWYG対応: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -215,7 +215,7 @@ msgstr "新しいノートを作成できませんでした: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -382,7 +382,7 @@ msgid "Add body"
msgstr "本文を追加"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "新規追加"
@@ -511,7 +511,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "エラーが発生しました: %s"
@@ -604,7 +604,7 @@ msgstr "選択したファイルをノートに添付します。"
msgid "attachment"
msgstr "添付ファイル"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "添付ファイル"
@@ -646,7 +646,7 @@ msgstr "認証は完了していません(認証トークンが得られませ
msgid "Authorisation token:"
msgstr "認証トークン:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -734,7 +734,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -779,7 +779,7 @@ msgstr "閲覧・編集可能"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "キャンセル"
@@ -802,7 +802,7 @@ msgstr "中止中..."
msgid "Cancelling... Please wait."
msgstr "中止中...お待ちください。"
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "%s にアクセスできません"
@@ -932,7 +932,7 @@ msgstr "文字数"
msgid "Characters excluding spaces"
msgstr "文字数(空白を除く)"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "チェックボックス"
@@ -1022,7 +1022,7 @@ msgstr "閉じる"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1087,7 +1087,7 @@ msgstr "コードビュー"
msgid "Collaborate on a notebook with others"
msgstr "ノートブック上で共同作業を行う"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "ノートブック上で共同作業を行う"
@@ -1125,7 +1125,7 @@ msgstr "コマンド"
msgid "Command"
msgstr "コマンド"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "コマンドパレット"
@@ -1283,7 +1283,7 @@ msgstr "画像のコピー"
msgid "Copy Link Address"
msgstr "リンクアドレスをコピー"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1346,7 +1346,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "プラグインレポジトリに接続できませんでした。"
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "ノートをエクスポートできませんでした: %s"
@@ -1446,7 +1446,7 @@ msgstr "新規作成: %d."
msgid "Created: %s"
msgstr "作成日時:%s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "親ノートブックの下に新しいノートブックを作成します。"
@@ -1907,7 +1907,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2411,7 +2411,7 @@ msgstr "エクスポート成功!"
msgid "Exporting profile..."
msgstr "プロファイルのエクスポート中..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr ""
"\"%s\" を \"%s\" フォーマットにエクスポート中。しばらくお待ちください..."
@@ -2650,7 +2650,7 @@ msgid "Go to source URL"
msgstr "ソースURLに行く"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Goto Anything..."
@@ -2765,7 +2765,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3067,7 +3067,7 @@ msgstr "最新のエラー: %s"
msgid "Join us on %s"
msgstr "X (Twitter)"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3630,8 +3630,8 @@ msgstr "アップデートがあります。すぐにダウンロードします
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "新しいノート"
@@ -3673,8 +3673,8 @@ msgstr "新しいタグ:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "新しいToDo"
@@ -3713,7 +3713,7 @@ msgstr "いいえ"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "No"
@@ -3787,7 +3787,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "%s では認証できません。他の資格証明書を使用してください。"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3898,7 +3898,7 @@ msgstr ""
msgid "Note&book"
msgstr "ノートブック(&B)"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "ノートブック"
@@ -3964,6 +3964,7 @@ msgstr "言語、日付の形式"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4057,6 +4058,11 @@ msgstr ""
msgid "Open it"
msgstr "開く"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "%s を開く"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "PDFビューアーを開く"
@@ -4516,7 +4522,7 @@ msgstr "ノートを公開..."
msgid "Publish Notes"
msgstr "ノートを公開"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "ノートをインターネットに公開する"
@@ -4527,7 +4533,7 @@ msgid "QR Code"
msgstr "コード"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4590,7 +4596,7 @@ msgstr "おすすめのプラグイン"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "見出し"
@@ -4739,7 +4745,7 @@ msgstr "リソース: %d."
msgid "Restart and upgrade"
msgstr "再起動してアップグレード"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "セーフモードで再起動"
@@ -4946,7 +4952,7 @@ msgstr "すべてのノートを検索"
msgid "Search in current note"
msgstr "現在のノートを検索"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "該当なし"
@@ -4981,7 +4987,7 @@ msgstr "全変更点一覧"
msgid "See the pre-release page for more details: %s"
msgstr "詳細についてはプレリリースページを参照してください: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "選択"
@@ -5204,6 +5210,11 @@ msgstr ""
msgid "Sidebar"
msgstr "サイドバー"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "サイズ"
@@ -5537,7 +5548,7 @@ msgstr "指定のターゲットと同期します。(標準: sync.targetの
msgid "Sync Version: %s"
msgstr "同期バージョン: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "ノートを同期する"
@@ -5671,7 +5682,7 @@ msgstr ""
"使用中のプロファイルは削除できません。他のプロファイルに切り替えてから削除し"
"てください。"
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6154,7 +6165,7 @@ msgid ""
msgstr "DropboxでJoplinを同期する場合は、次のステップを実行してください:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6348,7 +6359,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "`joplin help`を実行して使い方を表示します。"
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6358,7 +6369,7 @@ msgstr ""
"タグ名」で該当タグ付きノートの一覧に、「@ノートブック名」で該当ノートブックに"
"移動できます。あるいは「:」でコマンドを検索して実行できます。"
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "新しいタグを入力するか、リストから選択してください"
@@ -6790,7 +6801,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6813,12 +6824,12 @@ msgstr "はい"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Yes"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -42,7 +42,7 @@ msgid "(wysiwyg: %s)"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -196,7 +196,7 @@ msgstr ""
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid "%s is not optimised for synchronising many small files so your initial synchronisation will be slow."
msgstr ""
@@ -336,7 +336,7 @@ msgid "Add body"
msgstr ""
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr ""
@@ -452,7 +452,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -535,7 +535,7 @@ msgstr ""
msgid "attachment"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
msgid "Attachment"
msgstr ""
@@ -569,7 +569,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr ""
@@ -656,7 +656,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -702,7 +702,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr ""
@@ -723,7 +723,7 @@ msgstr ""
msgid "Cancelling... Please wait."
msgstr ""
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr ""
@@ -839,7 +839,7 @@ msgstr ""
msgid "Characters excluding spaces"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Check"
msgstr ""
@@ -921,7 +921,7 @@ msgstr ""
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -981,7 +981,7 @@ msgstr ""
msgid "Collaborate on a notebook with others"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr ""
@@ -1009,7 +1009,7 @@ msgstr ""
msgid "Command"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr ""
@@ -1162,7 +1162,7 @@ msgstr ""
msgid "Copy Link Address"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr ""
@@ -1215,7 +1215,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr ""
@@ -1306,7 +1306,7 @@ msgstr ""
msgid "Created: %s"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
msgid "Creates a new note with an attachment of type %s"
msgstr ""
@@ -1726,7 +1726,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2203,7 +2203,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr ""
@@ -2416,7 +2416,7 @@ msgid "Go to source URL"
msgstr ""
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr ""
@@ -2529,7 +2529,7 @@ msgstr ""
msgid "If you have already authorised, please wait for the application to sync to Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -2788,7 +2788,7 @@ msgstr ""
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid "Joplin can synchronise your notes using various providers. Select one from the list below."
msgstr ""
@@ -3291,8 +3291,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr ""
@@ -3329,8 +3329,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr ""
@@ -3369,7 +3369,7 @@ msgstr ""
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
#: packages/lib/versionInfo.ts:92
msgid "No"
msgstr ""
@@ -3438,7 +3438,7 @@ msgstr ""
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3546,7 +3546,7 @@ msgstr ""
msgid "Note&book"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr ""
@@ -3609,6 +3609,7 @@ msgstr ""
#: packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399
#: packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -3691,6 +3692,10 @@ msgstr ""
msgid "Open it"
msgstr ""
#: packages/app-desktop/bridge.ts:537
msgid "Open log"
msgstr ""
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr ""
@@ -4099,7 +4104,7 @@ msgstr ""
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4109,7 +4114,7 @@ msgid "QR Code"
msgstr ""
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4171,7 +4176,7 @@ msgstr ""
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
msgid "Recording"
msgstr ""
@@ -4314,7 +4319,7 @@ msgstr ""
msgid "Restart and upgrade"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr ""
@@ -4506,7 +4511,7 @@ msgstr ""
msgid "Search in current note"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr ""
@@ -4538,7 +4543,7 @@ msgstr ""
msgid "See the pre-release page for more details: %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr ""
@@ -4739,6 +4744,10 @@ msgstr ""
msgid "Sidebar"
msgstr ""
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
msgid "Sign up to Joplin Cloud"
msgstr ""
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr ""
@@ -5041,7 +5050,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr ""
@@ -5165,7 +5174,7 @@ msgstr ""
msgid "The active profile cannot be deleted. Switch to a different profile and try again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid "The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -5512,7 +5521,7 @@ msgid "To allow Joplin to synchronise with Dropbox, please follow the steps belo
msgstr ""
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid "To allow Joplin to synchronise with Joplin Cloud, please login using this URL:"
msgstr ""
@@ -5681,11 +5690,11 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid "Type a note title or part of its content to jump to it. Or type # followed by a tag name, or @ followed by a notebook name. Or type : to search for commands."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
msgid "Type a note title to search for it."
msgstr ""
@@ -6063,7 +6072,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6086,13 +6095,13 @@ msgstr ""
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
#: packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "You are about to attach a large image (%dx%d pixels). Would you like to resize it down to %d pixels before attaching it?"
msgstr ""

View File

@@ -62,7 +62,7 @@ msgid "(wysiwyg: %s)"
msgstr "(위지윅: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(옵션에서 이 프롬프트를 비활성화할 수 있습니다)"
@@ -218,7 +218,7 @@ msgstr "새 노트를 생성할 수 없습니다: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -386,7 +386,7 @@ msgid "Add body"
msgstr "내용 추가"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "새로 추가"
@@ -515,7 +515,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr "자동 저장된 그림을 찾았습니다. 노트에 사본을 첨부하시겠습니까?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "오류가 발생했습니다: %s"
@@ -607,7 +607,7 @@ msgstr "주어진 파일을 노트에 첨부합니다."
msgid "attachment"
msgstr "첨부"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "첨부"
@@ -648,7 +648,7 @@ msgstr "인증이 완료되지 않았습니다 (인증 토큰을 받을 수 없
msgid "Authorisation token:"
msgstr "인증 토큰:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "권한 부여"
@@ -735,7 +735,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -780,7 +780,7 @@ msgstr "조회&편집 가능"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "취소"
@@ -803,7 +803,7 @@ msgstr "취소하는 중..."
msgid "Cancelling... Please wait."
msgstr "취소하는 중입니다... 잠시만 기다리세요."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "%s에 접근할 수 없음"
@@ -932,7 +932,7 @@ msgstr "문자"
msgid "Characters excluding spaces"
msgstr "공백을 제외한 문자"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "확인 상자"
@@ -1022,7 +1022,7 @@ msgstr "닫기"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1088,7 +1088,7 @@ msgstr "코드 보기"
msgid "Collaborate on a notebook with others"
msgstr "다른 사람과 노트북에서 협업하기"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "다른 사람과 노트북들에서 협업하기"
@@ -1126,7 +1126,7 @@ msgstr "명령"
msgid "Command"
msgstr "명령"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "명령 팔레트"
@@ -1283,7 +1283,7 @@ msgstr "이미지 복사"
msgid "Copy Link Address"
msgstr "링크 주소 복사"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "웹사이트 링크 복사"
@@ -1346,7 +1346,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "플러그인 저장소에 연결할 수 없습니다."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "노트를 내보낼 수 없습니다: %s"
@@ -1446,7 +1446,7 @@ msgstr "생성됨: %d."
msgid "Created: %s"
msgstr "생성됨: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "상위 노트북 아래에 새 노트북을 만듭니다."
@@ -1903,7 +1903,7 @@ msgid "Draw picture"
msgstr "그림 그리기"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "그리는 중"
@@ -2406,7 +2406,7 @@ msgstr "성공적으로 내보냈습니다!"
msgid "Exporting profile..."
msgstr "프로파일을 내보내는 중..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "\"%s\"에 \"%s\" 포맷으로 내보내는 중입니다. 잠시만 기다려주세요..."
@@ -2641,7 +2641,7 @@ msgid "Go to source URL"
msgstr "소스 URL로 이동"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "가고자 하는 곳으로 이동..."
@@ -2758,7 +2758,7 @@ msgstr ""
"이미 승인하셨다면, 애플리케이션이 Joplin Cloud에 동기화될 때까지 기다려주세요"
"Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3062,7 +3062,7 @@ msgstr "최근 오류: %s"
msgid "Join us on %s"
msgstr "트위터에 참여하기"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3618,8 +3618,8 @@ msgstr "업데이트가 있습니다. 지금 다운로드까요?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "새 노트"
@@ -3659,8 +3659,8 @@ msgstr "새 태그:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "새 목록"
@@ -3699,7 +3699,7 @@ msgstr "아니오"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "아니오"
@@ -3773,7 +3773,7 @@ msgstr "노드"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "%s과 인증되지 않았습니다. 증명서를 제공해주세요."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3883,7 +3883,7 @@ msgstr "참고: 공유된 노트는 서버에서 암호화될 수 없습니다."
msgid "Note&book"
msgstr "노트북(&b)"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "노트북"
@@ -3947,6 +3947,7 @@ msgstr "언어, 날짜 형식"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4039,6 +4040,11 @@ msgstr ""
msgid "Open it"
msgstr "열기"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "%s 열기"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "PDF 뷰어 열기"
@@ -4491,7 +4497,7 @@ msgstr "노트 발행..."
msgid "Publish Notes"
msgstr "노트 발행"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "인터넷에 노트를 발행합니다"
@@ -4502,7 +4508,7 @@ msgid "QR Code"
msgstr "코드"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4566,7 +4572,7 @@ msgstr "추천"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "표제"
@@ -4716,7 +4722,7 @@ msgstr "리소스: %d."
msgid "Restart and upgrade"
msgstr "재시작 및 업그레이드"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "안전 모드에서 다시 시작"
@@ -4916,7 +4922,7 @@ msgstr "모든 노트에서 검색"
msgid "Search in current note"
msgstr "현재 노트에서 검색"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "결과 없음"
@@ -4950,7 +4956,7 @@ msgstr "바뀐 내용을 모두 보기"
msgid "See the pre-release page for more details: %s"
msgstr "자세한 내용은 사전-출시 페이지를 참조해주세요: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "선택"
@@ -5170,6 +5176,11 @@ msgstr "사이드 메뉴 열림"
msgid "Sidebar"
msgstr "사이드바"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin 클라우드"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "크기"
@@ -5499,7 +5510,7 @@ msgstr "지정된 대상으로 동기화 합니다 (기본값은 sync.target con
msgid "Sync Version: %s"
msgstr "동기화 버전: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "노트 동기화"
@@ -5630,7 +5641,7 @@ msgid ""
msgstr ""
"활성 프로필은 삭제할 수 없습니다. 다른 프로필로 전환하고 다시 시도하세요."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr "애플리케이션이 곧 종료됩니다. 프로세스를 완료하려면 다시 실행해주세요."
@@ -6106,7 +6117,7 @@ msgid ""
msgstr "Joplin을 Dropbox와 동기화하려면 다음 절차를 따라주세요:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6300,7 +6311,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "사용법에 대한 정보를 알고 싶으시다면 `joplin help`를 입력해주세요."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6310,7 +6321,7 @@ msgstr ""
"그 이름이나 @로 시작하는 노트북 이름을 입력하거나, :을 입력하여 명령을 검색하"
"세요."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "새 태그를 입력하거나 목록에서 선택하세요"
@@ -6746,7 +6757,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "창이 응답하지 않습니다."
@@ -6769,12 +6780,12 @@ msgstr "예"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "예"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -59,7 +59,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -222,7 +222,7 @@ msgstr "Oppretter et nytt notat."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -389,7 +389,7 @@ msgid "Add body"
msgstr "Legg til brødtekst"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "Legg til tittel"
@@ -518,7 +518,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -609,7 +609,7 @@ msgstr "Legger ved den valgte filen til notatet."
msgid "attachment"
msgstr "vedlegg"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Vedlegg"
@@ -651,7 +651,7 @@ msgstr "Godkjenningen ble ikke fullført (mottok ikke et autoriseringsbevis)."
msgid "Authorisation token:"
msgstr "Autoriseringsbevis:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -739,7 +739,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -785,7 +785,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Avbryt"
@@ -808,7 +808,7 @@ msgstr "Avbryter…"
msgid "Cancelling... Please wait."
msgstr "Avbryter… Vennligst vent."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Får ikke tilgang til %s"
@@ -939,7 +939,7 @@ msgstr "Tegn"
msgid "Characters excluding spaces"
msgstr "Tegn uten mellomrom"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Avmerkingsboks"
@@ -1030,7 +1030,7 @@ msgstr "Lukk"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1096,7 +1096,7 @@ msgstr "Kodevisning"
msgid "Collaborate on a notebook with others"
msgstr "Samarbeid på notatbøker med andre"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Samarbeid på notatbøker med andre"
@@ -1133,7 +1133,7 @@ msgstr "kommando"
msgid "Command"
msgstr "Kommando"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Kommandomeny"
@@ -1294,7 +1294,7 @@ msgstr "Kopier bilde"
msgid "Copy Link Address"
msgstr "Kopier lenkeadresse"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1360,7 +1360,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Kan ikke koble til utvidelsesbiblioteket."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Kunne ikke eksportere notater: %s"
@@ -1465,7 +1465,7 @@ msgstr "Opprettet: %d."
msgid "Created: %s"
msgstr "Opprettet: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Oppretter en ny notatbok."
@@ -1930,7 +1930,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2441,7 +2441,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Eksporterer profil..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Eksporterer til \"%s\" i \"%s\"-format. Vennligst vent..."
@@ -2686,7 +2686,7 @@ msgid "Go to source URL"
msgstr "Gå til kilde-URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Hopp til..."
@@ -2805,7 +2805,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3111,7 +3111,7 @@ msgstr "Siste feil: %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3684,8 +3684,8 @@ msgstr "En oppdatering er tilgjengelig. Vil du laste den ned nå?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nytt notat"
@@ -3727,8 +3727,8 @@ msgstr "Nye merkelapper:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nytt gjøremål"
@@ -3767,7 +3767,7 @@ msgstr "nei"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Nei"
@@ -3840,7 +3840,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Ikke autentisert med %s. Fyll inn manglende detaljer."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3954,7 +3954,7 @@ msgstr ""
msgid "Note&book"
msgstr "Notat&bok"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Notatbok"
@@ -4018,6 +4018,7 @@ msgstr "Datoformat"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4111,6 +4112,11 @@ msgstr ""
msgid "Open it"
msgstr "Åpne"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Åpne %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
#, fuzzy
msgid "Open PDF viewer"
@@ -4574,7 +4580,7 @@ msgstr "Publiser notat..."
msgid "Publish Notes"
msgstr "Publiser notater"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Publiser notater på internett"
@@ -4585,7 +4591,7 @@ msgid "QR Code"
msgstr "Kode"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4650,7 +4656,7 @@ msgstr "kommando"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Overskrift"
@@ -4803,7 +4809,7 @@ msgstr "Ressurser: %d."
msgid "Restart and upgrade"
msgstr "Omstart og oppgrader"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Omstart og oppgrader"
@@ -5011,7 +5017,7 @@ msgstr "Søk i alle notater"
msgid "Search in current note"
msgstr "Søk i nåværende notat"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Ingen resultater"
@@ -5046,7 +5052,7 @@ msgstr "Komplett endringslogg"
msgid "See the pre-release page for more details: %s"
msgstr "Se førutgivelsessiden for flere detaljer: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Marker"
@@ -5273,6 +5279,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Sidepanel"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Størrelse"
@@ -5607,7 +5618,7 @@ msgstr "Synkroniser til oppgitt mål (standard til sync.target config-verdi)"
msgid "Sync Version: %s"
msgstr "Synkroniseringsversjon: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synkroniser notatene dine"
@@ -5742,7 +5753,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr "Programmet vil lukkes nå. Start det på nytt for å fullføre prosessen."
@@ -6232,7 +6243,7 @@ msgstr ""
"For å få Joplin til å synkronisere med Dropbox må du følge trinnene under:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6434,7 +6445,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Skriv `joplin help` for brukerinformasjon."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6444,7 +6455,7 @@ msgstr ""
"skriv # etterfulgt av et merkelappnavn. Eller skriv : for å søke i "
"kommandoer."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Skriv inn nye merkelapper eller velg fra listen"
@@ -6876,7 +6887,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6899,12 +6910,12 @@ msgstr "ja"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Ja"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -62,7 +62,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wuziwuk: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Je kan deze prompt uitschakelen in de opties)"
@@ -223,7 +223,7 @@ msgstr "Kan geen nieuwe notitie maken: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -393,7 +393,7 @@ msgid "Add body"
msgstr "Inhoud toevoegen"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Nieuw toevoegen"
@@ -524,7 +524,7 @@ msgstr ""
"We hebben een automatisch opgeslagen tekening gevonden. Wil je een kopie "
"ervan toevoegen aan de notitie?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Er ging iets fout: %s"
@@ -622,7 +622,7 @@ msgstr "Voegt het gegeven bestand toe aan de notitie."
msgid "attachment"
msgstr "bijlage"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Bijlagen"
@@ -664,7 +664,7 @@ msgstr "Authenticatie was niet voltooid (geen authenticatietoken ontvangen)."
msgid "Authorisation token:"
msgstr "Autorisatietoken:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Autoriseer"
@@ -753,7 +753,7 @@ msgstr "volgens %s"
msgid "by word"
msgstr "per woord"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -798,7 +798,7 @@ msgstr "Kan bekijken en bewerken"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Annuleer"
@@ -821,7 +821,7 @@ msgstr "Bezig met annuleren..."
msgid "Cancelling... Please wait."
msgstr "Bezig met annuleren.. Even geduld."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Geen toegang tot %s"
@@ -954,7 +954,7 @@ msgstr "Tekens"
msgid "Characters excluding spaces"
msgstr "Tekens zonder spaties"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Selectievakje"
@@ -1043,7 +1043,7 @@ msgstr "sluit"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1110,7 +1110,7 @@ msgstr "Code-weergave"
msgid "Collaborate on a notebook with others"
msgstr "Werk samen met anderen aan een notitieboek"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Werk samen met anderen aan notitieboeken"
@@ -1149,7 +1149,7 @@ msgstr "commando"
msgid "Command"
msgstr "Commando"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Commandopalet"
@@ -1302,7 +1302,7 @@ msgstr "Kopieer afbeelding"
msgid "Copy Link Address"
msgstr "Kopieer linkadres"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Kopieer link naar website"
@@ -1367,7 +1367,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Kon geen verbinding maken met de plugin-bibliotheek."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Kon notities niet exporteren: %s"
@@ -1468,7 +1468,7 @@ msgstr "Aangemaakt: %d."
msgid "Created: %s"
msgstr "Aangemaakt: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Maak een nieuw notitieboek aan onder een bestaand notitieboek."
@@ -1930,7 +1930,7 @@ msgid "Draw picture"
msgstr "Tekening maken"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Tekening"
@@ -2434,7 +2434,7 @@ msgstr "Succesvol geëxporteerd!"
msgid "Exporting profile..."
msgstr "Profiel exporteren..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Exporteren naar \"%s\" in \"%s\" formaat. Even geduld..."
@@ -2674,7 +2674,7 @@ msgid "Go to source URL"
msgstr "Ga naar bron-URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Ga naar om het even wat..."
@@ -2791,7 +2791,7 @@ msgstr ""
"Als je al geautoriseerd hebt, gelieve te wachten terwijl de toepassing "
"synchroniseert met Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3095,7 +3095,7 @@ msgstr "Laatste fout: %s"
msgid "Join us on %s"
msgstr "Volg ons op %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3650,8 +3650,8 @@ msgstr "Er is een update beschikbaar; wil je die nu downloaden?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nieuwe notitie"
@@ -3692,8 +3692,8 @@ msgstr "Nieuwe labels:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nieuwe taak"
@@ -3732,7 +3732,7 @@ msgstr "nee"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Nee"
@@ -3802,7 +3802,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Niet geauthenticeerd met %s. Voer ontbrekende inloggegevens in."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3916,7 +3916,7 @@ msgstr ""
msgid "Note&book"
msgstr "Notitie&boek"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Notitieboek"
@@ -3980,6 +3980,7 @@ msgstr "OCR: Taalgegevens-URL of -pad"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4074,6 +4075,11 @@ msgstr "Bewerken in nieuw venster"
msgid "Open it"
msgstr "Openen"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Open %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Open PDF-weergave"
@@ -4531,7 +4537,7 @@ msgstr "Publiceer notitie..."
msgid "Publish Notes"
msgstr "Notities Publiceren"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Notities publiceren op het Internet"
@@ -4541,7 +4547,7 @@ msgid "QR Code"
msgstr "QR-Code"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4603,7 +4609,7 @@ msgstr "Aanbevolen plugins"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Kop"
@@ -4748,7 +4754,7 @@ msgstr "Bronnen: %d."
msgid "Restart and upgrade"
msgstr "Herstarten en upgraden"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Herstarten in veilige modus"
@@ -4950,7 +4956,7 @@ msgstr "Zoek in alle notities"
msgid "Search in current note"
msgstr "Zoeken in huidige notitie"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Zoekresultaten"
@@ -4983,7 +4989,7 @@ msgstr "Log van wijzigingen zien"
msgid "See the pre-release page for more details: %s"
msgstr "Zie de pre-release pagina voor meer details: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Selecteren"
@@ -5199,6 +5205,11 @@ msgstr "Zijmenu geopend"
msgid "Sidebar"
msgstr "Zijbalk"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Inloggen op Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Grootte"
@@ -5540,7 +5551,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Synchronisatieversie: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synchroniseer je notities"
@@ -5672,7 +5683,7 @@ msgstr ""
"Het actieve profiel kan niet verwijderd worden. Schakel over naar een ander "
"profiel en probeer opieuw."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6193,7 +6204,7 @@ msgstr ""
"onderstaande stappen te volgen:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6396,7 +6407,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Typ `joplin help` voor gebruiksinformatie."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6406,7 +6417,7 @@ msgstr ""
"springen. Of typ # gevolgd door de naam van een label, of @ gevolgd door de "
"naam van een notitieboek. Of typ : om naar commando's te zoeken."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Typ nieuwe labels of selecteer uit lijst"
@@ -6851,7 +6862,7 @@ msgstr ""
msgid "Whisper"
msgstr "Fluister"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Venster reageert niet."
@@ -6876,12 +6887,12 @@ msgstr "ja"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Ja"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -60,7 +60,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wuziwuk: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -223,7 +223,7 @@ msgstr "Kan de nieuwe notitie niet maken: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -391,7 +391,7 @@ msgid "Add body"
msgstr "Inhoud toevoegen"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Nieuw toevoegen"
@@ -525,7 +525,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -621,7 +621,7 @@ msgstr "Voegt het opgegeven bestand bij de notitie."
msgid "attachment"
msgstr "bijlagen"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Bijlagen"
@@ -663,7 +663,7 @@ msgstr "Authenticatie is niet voltooid (geen authenticatiesleutel ontvangen)."
msgid "Authorisation token:"
msgstr "Autorisatie-token:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -751,7 +751,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -796,7 +796,7 @@ msgstr "Kan bekijken en bewerken"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Annuleren"
@@ -819,7 +819,7 @@ msgstr "Bezig met annuleren..."
msgid "Cancelling... Please wait."
msgstr "Bezig met annuleren... Een ogenblik geduld."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Geen toegang tot %s"
@@ -949,7 +949,7 @@ msgstr "Karakters"
msgid "Characters excluding spaces"
msgstr "Karakters zonder spaties"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Checkbox"
@@ -1040,7 +1040,7 @@ msgstr "Sluiten"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1105,7 +1105,7 @@ msgstr "Codeweergave"
msgid "Collaborate on a notebook with others"
msgstr "Samenwerken aan notitieblokken met anderen"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Samenwerken aan notitieblokken met anderen"
@@ -1144,7 +1144,7 @@ msgstr "commando"
msgid "Command"
msgstr "Commando"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Opdrachtpalet"
@@ -1304,7 +1304,7 @@ msgstr "Kopieer afbeelding"
msgid "Copy Link Address"
msgstr "Linkadres kopiëren"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1369,7 +1369,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Kan geen verbinding maken met de plugin bibliotheek."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Kon geen notities exporteren: %s"
@@ -1469,7 +1469,7 @@ msgstr "Gecreëerd: %d."
msgid "Created: %s"
msgstr "Gecreëerd op: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Creëert een nieuw notitieboek onder een bestaand notitieboek."
@@ -1933,7 +1933,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2442,7 +2442,7 @@ msgstr "Succesvol geëxporteerd!"
msgid "Exporting profile..."
msgstr "Profiel exporteren..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Bezig met exporteren van \"%s\" in het formaat \"%s\". Even geduld..."
@@ -2682,7 +2682,7 @@ msgid "Go to source URL"
msgstr "Ga naar bron-URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Ga naar Alles..."
@@ -2797,7 +2797,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3105,7 +3105,7 @@ msgstr "Laatst gemelde fout: %s"
msgid "Join us on %s"
msgstr "Volg ons op Twitter"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3668,8 +3668,8 @@ msgstr "Er is een update beschikbaar. Wilt u deze nu downloaden?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nieuwe notitie"
@@ -3711,8 +3711,8 @@ msgstr "Nieuwe labels:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nieuwe taak"
@@ -3751,7 +3751,7 @@ msgstr "nee"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Nee"
@@ -3827,7 +3827,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Niet geauthenticeerd met %s. Voer ontbrekende inloggegevens in."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3940,7 +3940,7 @@ msgstr ""
msgid "Note&book"
msgstr "Notitie&boek"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Notitieboek"
@@ -4004,6 +4004,7 @@ msgstr "Datumopmaak"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4097,6 +4098,11 @@ msgstr ""
msgid "Open it"
msgstr "Openen"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Open %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Open de PDF weergave"
@@ -4559,7 +4565,7 @@ msgstr "Publiceer notitie..."
msgid "Publish Notes"
msgstr "Publiceer notities"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Publiceer notities op het internet"
@@ -4570,7 +4576,7 @@ msgid "QR Code"
msgstr "Code"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4635,7 +4641,7 @@ msgstr "commando"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Kop"
@@ -4786,7 +4792,7 @@ msgstr "Bronnen: %d."
msgid "Restart and upgrade"
msgstr "Opnieuw opstarten en bijwerken"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Opnieuw opstarten en bijwerken"
@@ -4994,7 +5000,7 @@ msgstr "Alle notities doorzoeken"
msgid "Search in current note"
msgstr "Huidige notitie doorzoeken"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Geen resultaten"
@@ -5029,7 +5035,7 @@ msgstr "Volledige changelog"
msgid "See the pre-release page for more details: %s"
msgstr "Zie de pre-release pagina voor meer details: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Selecteren"
@@ -5255,6 +5261,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Zijbalk"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Grootte"
@@ -5593,7 +5604,7 @@ msgstr "Synchroniseren naar opgegeven doel (standaard is dit sync.target)"
msgid "Sync Version: %s"
msgstr "Synchronisatieversie: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synchroniseer je notities"
@@ -5728,7 +5739,7 @@ msgstr ""
"Het huiduge profiel kan niet worden verwijderd. Schakel naar een ander "
"profiel en probeer het opnieuw."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6231,7 +6242,7 @@ msgid ""
msgstr "Volg de onderstaande stappen om Joplin te synchroniseren met Dropbox:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6433,7 +6444,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Typ `joplin help` voor meer informatie over het gebruik."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6443,7 +6454,7 @@ msgstr ""
"springen. Typ # gevolgd door de naam van een label, @ gevolgd door de naam "
"van een notitieboek, of : om te zoeken op commando's."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Typ nieuwe labels of kies ze uit de lijst"
@@ -6883,7 +6894,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6906,12 +6917,12 @@ msgstr "ja"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Ja"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -63,7 +63,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Możesz wyłączyć ten monit w opcjach)"
@@ -229,7 +229,7 @@ msgstr "Nie można utworzyć notatki: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -401,7 +401,7 @@ msgid "Add body"
msgstr "Dodaj tekst"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Dodaj nowy"
@@ -536,7 +536,7 @@ msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
"Znaleziono automatycznie zapisany rysunek. Dołączyć jego kopię do notatki?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Wystąpił błąd: %s"
@@ -633,7 +633,7 @@ msgstr "Dołącza wskazany plik do notatki."
msgid "attachment"
msgstr "załączniki"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Załączniki"
@@ -678,7 +678,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr "Token uwierzytelniający:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -766,7 +766,7 @@ msgstr "autorstwa %s"
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -811,7 +811,7 @@ msgstr "Może przeglądać i edytować"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Anuluj"
@@ -834,7 +834,7 @@ msgstr "Anulowanie..."
msgid "Cancelling... Please wait."
msgstr "Anulowanie... Proszę czekać."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Brak dostępu %s"
@@ -964,7 +964,7 @@ msgstr "Znaki"
msgid "Characters excluding spaces"
msgstr "Znaki bez spacji"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Pole wyboru"
@@ -1055,7 +1055,7 @@ msgstr "Zamknij"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1122,7 +1122,7 @@ msgstr "Widok kodu"
msgid "Collaborate on a notebook with others"
msgstr "Współpracuj z innymi nad notatnikiem"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Współpracuj z innymi przy notatnikach"
@@ -1161,7 +1161,7 @@ msgstr "komenda"
msgid "Command"
msgstr "Komenda"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Paleta komend"
@@ -1324,7 +1324,7 @@ msgstr "Skopiuj obrazek"
msgid "Copy Link Address"
msgstr "Skopiuj adres odnośnika"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1390,7 +1390,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Nie udało się połączyć do repozytorium dodatków."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Nie udało się wyeksportować notatek: %s"
@@ -1490,7 +1490,7 @@ msgstr "Utworzono: %d."
msgid "Created: %s"
msgstr "Utworzono: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Utwórz nowy notatnik pod notatnikiem nadrzędnym."
@@ -1952,7 +1952,7 @@ msgid "Draw picture"
msgstr "Narysuj obraz"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Rysowanie"
@@ -2458,7 +2458,7 @@ msgstr "Eksportowanie zakończone pomyślnie!"
msgid "Exporting profile..."
msgstr "Eksportowanie profilu..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Eksportowanie do \"%s\" jako \"%s\". Proszę czekać..."
@@ -2705,7 +2705,7 @@ msgid "Go to source URL"
msgstr "Idź do adresu źródłowego odnośnika"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Idź do..."
@@ -2823,7 +2823,7 @@ msgstr ""
"Jeśli dokonałeś autoryzacji, poczekaj, aż aplikacja zsynchronizuje się z "
"chmurą Joplin."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3134,7 +3134,7 @@ msgstr "Ostatni błąd: %s"
msgid "Join us on %s"
msgstr "Dołącz do nas na Twitterze"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3707,8 +3707,8 @@ msgstr "Aktualizacja jest dostępna, czy chcesz ją pobrać?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nowa notatka"
@@ -3750,8 +3750,8 @@ msgstr "Nowe znaczniki:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nowe zadanie"
@@ -3790,7 +3790,7 @@ msgstr "nie"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Nie"
@@ -3864,7 +3864,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Nie uwierzytelniono z %s. Proszę uzupełnij brakujące dane."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3974,7 +3974,7 @@ msgstr "Uwaga: Po udostępnieniu notatka nie będzie już szyfrowana na serwerze
msgid "Note&book"
msgstr "Notatnik i książka"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Notatnik"
@@ -4039,6 +4039,7 @@ msgstr "Język, format daty"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4133,6 +4134,11 @@ msgstr ""
msgid "Open it"
msgstr "Otwórz"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Otwórz %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Otwórz przeglądarkę plików PDF"
@@ -4601,7 +4607,7 @@ msgstr "Udostępnij notatkę..."
msgid "Publish Notes"
msgstr "Udostępnij Notatkę"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Udostępnij notatkę do internetu"
@@ -4612,7 +4618,7 @@ msgid "QR Code"
msgstr "Kod"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4677,7 +4683,7 @@ msgstr "Polecane wtyczki"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Nagłówek"
@@ -4827,7 +4833,7 @@ msgstr "Zasoby: %d."
msgid "Restart and upgrade"
msgstr "Uruchom ponownie i aktualizuj"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Uruchom ponownie w trybie awaryjnym"
@@ -5033,7 +5039,7 @@ msgstr "Wyszukaj we wszystkich notatkach"
msgid "Search in current note"
msgstr "Wyszukaj w obecnej notatce"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Brak rezultatów"
@@ -5070,7 +5076,7 @@ msgstr ""
"Sprawdź stronę wydań przedpremierowych w celu uzyskania większości "
"informacji: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Wybierz"
@@ -5293,6 +5299,11 @@ msgstr "Menu boczne otwarte"
msgid "Sidebar"
msgstr "Pasek boczny"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Zaloguj się do Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Rozmiar"
@@ -5633,7 +5644,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Wersja synchronizacji: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synchronizuj notatki"
@@ -5766,7 +5777,7 @@ msgstr ""
"Nie można usunąć aktywnego profilu. Przełącz się na inny profil i spróbuj "
"ponownie."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6277,7 +6288,7 @@ msgstr ""
"poniżej:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6478,7 +6489,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Wpisz `joplin help` dla informacji o użytkowaniu."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6488,7 +6499,7 @@ msgstr ""
"wpisać #, a po nim nazwę tagu lub @, a następnie nazwę notatnika. Lub "
"wpisz : aby wyszukać polecenia."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Wprowadź nowe znaczniki lub wybierz z listy"
@@ -6930,7 +6941,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Okno przestało reagować."
@@ -6953,12 +6964,12 @@ msgstr "tak"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Tak"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -66,7 +66,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Você pode desativar este prompt nas opções)"
@@ -226,7 +226,7 @@ msgstr "Não foi possível criar uma nova nota: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -393,7 +393,7 @@ msgid "Add body"
msgstr "Adicionar corpo"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Adicionar"
@@ -526,7 +526,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr "Um desenho foi salvo automaticamente. Anexar uma cópia dele na Nota?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Um erro aconteceu: %s"
@@ -622,7 +622,7 @@ msgstr "Anexa o arquivo dado à nota."
msgid "attachment"
msgstr "anexo"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Anexos"
@@ -665,7 +665,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr "Token de autorização:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Autorizar"
@@ -752,7 +752,7 @@ msgstr "por %s"
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -797,7 +797,7 @@ msgstr "Leitura e edição"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Cancelar"
@@ -820,7 +820,7 @@ msgstr "Cancelando..."
msgid "Cancelling... Please wait."
msgstr "Cancelando... Por favor aguarde."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Não é possível acessar %s"
@@ -953,7 +953,7 @@ msgstr "Caracteres"
msgid "Characters excluding spaces"
msgstr "Caracteres exceto espaços"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Caixa de seleção"
@@ -1042,7 +1042,7 @@ msgstr "Fechar"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1109,7 +1109,7 @@ msgstr "Visualizar Código"
msgid "Collaborate on a notebook with others"
msgstr "Colaborar em um caderno com outras pessoas"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Edite cadernos de forma colaborativa"
@@ -1148,7 +1148,7 @@ msgstr "comando"
msgid "Command"
msgstr "Comando"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Paleta de comandos"
@@ -1308,7 +1308,7 @@ msgstr "Copiar imagem"
msgid "Copy Link Address"
msgstr "Copiar endereço do link"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Copiar o link para o site"
@@ -1371,7 +1371,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Não foi possível conectar-se ao repositório do plugin."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Não foi possível exportar notas: %s"
@@ -1471,7 +1471,7 @@ msgstr "Criado: %d."
msgid "Created: %s"
msgstr "Criado: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Criar novo caderno em um caderno pai."
@@ -1929,7 +1929,7 @@ msgid "Draw picture"
msgstr "Desenhar imagem"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Desenhar"
@@ -2430,7 +2430,7 @@ msgstr "Exportado com sucesso!"
msgid "Exporting profile..."
msgstr "Exportando perfil..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Exportando para \"%s\" com o formato \"%s\". Por favor, aguarde..."
@@ -2670,7 +2670,7 @@ msgid "Go to source URL"
msgstr "Ir para a URL de origem"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Ir para qualquer coisa..."
@@ -2787,7 +2787,7 @@ msgstr ""
"Se você já autorizou, por favor aguarde pela sincronia do aplicativo com a "
"Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3091,7 +3091,7 @@ msgstr "Último erro: %s"
msgid "Join us on %s"
msgstr "Junte-se a nós no Twitter"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3651,8 +3651,8 @@ msgstr "Uma atualização está disponível, você quer baixar agora?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nova nota"
@@ -3693,8 +3693,8 @@ msgstr "Novas tags:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nova tarefa"
@@ -3733,7 +3733,7 @@ msgstr "não"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Não"
@@ -3808,7 +3808,7 @@ msgstr ""
"Não autenticado com %s. Por favor, complete as credenciais que estiverem "
"faltando."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3919,7 +3919,7 @@ msgstr ""
msgid "Note&book"
msgstr "Nota&Caderno"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Caderno"
@@ -3983,6 +3983,7 @@ msgstr "Idioma, formato de data"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4075,6 +4076,11 @@ msgstr ""
msgid "Open it"
msgstr "Abrir"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Abrir %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Abrir visualizador de PDF"
@@ -4536,7 +4542,7 @@ msgstr "Publicar nota..."
msgid "Publish Notes"
msgstr "Publicar Notas"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Publica as notas na internet"
@@ -4547,7 +4553,7 @@ msgid "QR Code"
msgstr "Código"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4610,7 +4616,7 @@ msgstr "Plugins recomendados"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Cabeçalho"
@@ -4758,7 +4764,7 @@ msgstr "Recursos: %d."
msgid "Restart and upgrade"
msgstr "Reiniciar e fazer upgrade"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Reiniciar em modo de segurança"
@@ -4959,7 +4965,7 @@ msgstr "Pesquisar em todas as notas"
msgid "Search in current note"
msgstr "Pesquisar na nota atual"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Sem resultados"
@@ -4993,7 +4999,7 @@ msgstr "Changelog completo"
msgid "See the pre-release page for more details: %s"
msgstr "Ver página de pré-lançamentos para mais detalhes: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Selecionar"
@@ -5213,6 +5219,11 @@ msgstr "Menu lateral aberto"
msgid "Sidebar"
msgstr "Barra lateral"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Conectar à Joplin Cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Tamanho"
@@ -5552,7 +5563,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Versão Sync: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Sincronizar suas notas"
@@ -5684,7 +5695,7 @@ msgstr ""
"Não é possível excluir o perfil atualmente ativo. Troque-o por um perfil "
"diferente e tente novamente."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6188,7 +6199,7 @@ msgstr ""
"seguintes passos:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6386,7 +6397,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Digite 'joplin help' para informações de uso."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6396,7 +6407,7 @@ msgstr ""
"Ou digite # seguido de um nome de tag, ou @ seguido de um nome de caderno. "
"Ou digite : para procurar comandos."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Digite novas tags ou selecione da lista"
@@ -6834,7 +6845,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Janela não responde."
@@ -6857,12 +6868,12 @@ msgstr "sim"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Sim"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -60,7 +60,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Pode desativar este lembrete nas opções)"
@@ -220,7 +220,7 @@ msgstr "Não foi possível criar uma nova nota: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -390,7 +390,7 @@ msgid "Add body"
msgstr "Adicionar corpo"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Adicionar novo"
@@ -526,7 +526,7 @@ msgstr ""
"Foi encontrado um desenho guardado automaticamente. Anexar uma cópia deste à "
"nota?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Ocorreu um erro: %s"
@@ -622,7 +622,7 @@ msgstr "Anexa o ficheiro especificado à nota."
msgid "attachment"
msgstr "anexo"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Anexos"
@@ -665,7 +665,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr "Token de autorização:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Autorizar"
@@ -753,7 +753,7 @@ msgstr "por %s"
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -798,7 +798,7 @@ msgstr "Pode ver e editar"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Cancelar"
@@ -821,7 +821,7 @@ msgstr "A cancelar..."
msgid "Cancelling... Please wait."
msgstr "A cancelar… Por favor, aguarde."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Não é possível aceder %s"
@@ -955,7 +955,7 @@ msgstr "Caracteres"
msgid "Characters excluding spaces"
msgstr "Caracteres sem os espaços"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Campo de seleção"
@@ -1044,7 +1044,7 @@ msgstr "Fechar"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1111,7 +1111,7 @@ msgstr "Vista de Código"
msgid "Collaborate on a notebook with others"
msgstr "Colaborar num caderno com outros"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Colaborar em cadernos com outros"
@@ -1150,7 +1150,7 @@ msgstr "comando"
msgid "Command"
msgstr "Comando"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Painel de comandos"
@@ -1309,7 +1309,7 @@ msgstr "Copiar imagem"
msgid "Copy Link Address"
msgstr "Copiar Endereço da Ligação"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Copiar link para o site"
@@ -1373,7 +1373,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Não foi possível estabelecer ligação ao repositório de plugins."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Não foi possível exportar as notas: %s"
@@ -1473,7 +1473,7 @@ msgstr "Criado: %d."
msgid "Created: %s"
msgstr "Criado: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Criar um novo caderno sob o caderno pai."
@@ -1936,7 +1936,7 @@ msgid "Draw picture"
msgstr "Desenhar figura"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Desenho"
@@ -2437,7 +2437,7 @@ msgstr "Exportado com sucesso!"
msgid "Exporting profile..."
msgstr "A exportar perfil..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "A exportar para \"%s\" com o formato \"%s\". Por favor, aguarde..."
@@ -2683,7 +2683,7 @@ msgid "Go to source URL"
msgstr "Ir para o endereço de origem"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Saltar para..."
@@ -2800,7 +2800,7 @@ msgstr ""
"Se já autorizou, espere por favor que a aplicação sincronize com o Joplin "
"Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3104,7 +3104,7 @@ msgstr "Último erro: %s"
msgid "Join us on %s"
msgstr "Junte-se a nós no Twitter"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3664,8 +3664,8 @@ msgstr "Uma atualização está disponível, pretende transferi-la agora?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nova nota"
@@ -3707,8 +3707,8 @@ msgstr "Novas etiquetas:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nova tarefa"
@@ -3747,7 +3747,7 @@ msgstr "não"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Não"
@@ -3820,7 +3820,7 @@ msgstr "Nórdico"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Não autenticado com %s. Por favor, introduza os dados em falta."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3932,7 +3932,7 @@ msgstr ""
msgid "Note&book"
msgstr "Note&book"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Caderno"
@@ -3996,6 +3996,7 @@ msgstr "Idioma, formato de data"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4088,6 +4089,11 @@ msgstr ""
msgid "Open it"
msgstr "Abrir"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Abrir %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Ativar visualizador de PDF"
@@ -4551,7 +4557,7 @@ msgstr "Publicar nota..."
msgid "Publish Notes"
msgstr "Publicar Notas"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Publicar notas na internet"
@@ -4562,7 +4568,7 @@ msgid "QR Code"
msgstr "Código"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4625,7 +4631,7 @@ msgstr "Plugins recomendados"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Cabeçalho"
@@ -4773,7 +4779,7 @@ msgstr "Recursos: %d."
msgid "Restart and upgrade"
msgstr "Reiniciar e atualizar"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Reiniciar em modo de segurança"
@@ -4974,7 +4980,7 @@ msgstr "Procurar em todas as notas"
msgid "Search in current note"
msgstr "Procurar nesta nota"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Sem resultados"
@@ -5008,7 +5014,7 @@ msgstr "Registo completo de alterações"
msgid "See the pre-release page for more details: %s"
msgstr "Consulte a página de pré-lançamento para obter mais detalhes: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Selecionar"
@@ -5228,6 +5234,11 @@ msgstr "Menu lateral aberto"
msgid "Sidebar"
msgstr "Barra lateral"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Entrar no Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Tamanho"
@@ -5569,7 +5580,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Versão de Sincronização: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Sincronizar as suas notas"
@@ -5702,7 +5713,7 @@ msgstr ""
"O perfil ativo não pode ser eliminado. Mude para um perfil diferente e tente "
"novamente."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6213,7 +6224,7 @@ msgstr ""
"passos abaixo:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6410,7 +6421,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Digite `joplin help` para mostrar informações de utilização."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6420,7 +6431,7 @@ msgstr ""
"mesmo. Ou digite # seguido de um nome de etiqueta, ou @ seguido de um nome "
"de um caderno."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Escreva novas etiquetas ou selecione da lista"
@@ -6860,7 +6871,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Janela sem resposta."
@@ -6883,12 +6894,12 @@ msgstr "sim"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Sim"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -62,7 +62,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Вы можете отключить это предупреждение в настройках)"
@@ -227,7 +227,7 @@ msgstr "Невозможно создать новую заметку: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -395,7 +395,7 @@ msgid "Add body"
msgstr "Добавить текст заметки"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Добавить новый"
@@ -524,7 +524,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr "Найден автосохраненный рисунок. Прикрепить его копию к заметке?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Произошла ошибка: %s"
@@ -622,7 +622,7 @@ msgstr "Прикрепляет заданный файл к заметке."
msgid "attachment"
msgstr "вложение"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Вложения"
@@ -665,7 +665,7 @@ msgstr "Аутентификация не была завершена (не по
msgid "Authorisation token:"
msgstr "Токен авторизации:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Авторизация"
@@ -754,7 +754,7 @@ msgstr "к %s"
msgid "by word"
msgstr "словом"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -799,7 +799,7 @@ msgstr "Возможность просмотра и редактировани
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Отмена"
@@ -822,7 +822,7 @@ msgstr "Отмена..."
msgid "Cancelling... Please wait."
msgstr "Отмена... Пожалуйста, подождите."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Не удалось получить доступ к %s"
@@ -952,7 +952,7 @@ msgstr "Символы"
msgid "Characters excluding spaces"
msgstr "Символы за исключением пробелов"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Флажок"
@@ -1040,7 +1040,7 @@ msgstr "закрыть"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1107,7 +1107,7 @@ msgstr "Просмотр кода"
msgid "Collaborate on a notebook with others"
msgstr "Работайте над блокнотом вместе с другими людьми"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Совместная работа над блокнотами с другими людьми"
@@ -1146,7 +1146,7 @@ msgstr "команда"
msgid "Command"
msgstr "Команда"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Палитра команд"
@@ -1302,7 +1302,7 @@ msgstr "Скопировать изображение"
msgid "Copy Link Address"
msgstr "Скопировать ссылку"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Копировать ссылку на сайт"
@@ -1365,7 +1365,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Не удалось соединиться с репозиторием плагинов."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Не удалось экспортировать заметки: %s"
@@ -1465,7 +1465,7 @@ msgstr "Создано: %d."
msgid "Created: %s"
msgstr "Создано: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Создать новый блокнот под родительским блокнотом."
@@ -1919,7 +1919,7 @@ msgid "Draw picture"
msgstr "Нарисовать картинку"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Рисунок"
@@ -2417,7 +2417,7 @@ msgstr "Успешно экспортировано!"
msgid "Exporting profile..."
msgstr "Экспортирование профиля..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Экспортирование в \"%s\" в формате \"%s\". Пожалуйста, подождите..."
@@ -2657,7 +2657,7 @@ msgid "Go to source URL"
msgstr "Перейти к исходному URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Перейти к чему-либо…"
@@ -2773,7 +2773,7 @@ msgstr ""
"Если вы уже авторизовались, пожалуйста, подождите, пока приложение "
"синхронизируется с Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3074,7 +3074,7 @@ msgstr "Последняя ошибка: %s"
msgid "Join us on %s"
msgstr "Присоединяйтесь к нам в %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3631,8 +3631,8 @@ msgstr "Доступно обновление, хотите загрузить
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Новая заметка"
@@ -3672,8 +3672,8 @@ msgstr "Новые метки:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Новая задача"
@@ -3712,7 +3712,7 @@ msgstr "нет"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Нет"
@@ -3785,7 +3785,7 @@ msgstr ""
"Не удалось аутентифицироваться с %s. Пожалуйста, предоставьте недостающие "
"данные."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3897,7 +3897,7 @@ msgstr ""
msgid "Note&book"
msgstr "Блок&ноты"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Блокнот"
@@ -3960,6 +3960,7 @@ msgstr "OCR: URL-адрес или путь к языковым данным"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4052,6 +4053,11 @@ msgstr "Редактировать в новом окне"
msgid "Open it"
msgstr "Откройте"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Открыть %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Открыть программу просмотра PDF-файлов"
@@ -4506,7 +4512,7 @@ msgstr "Опубликовать заметку..."
msgid "Publish Notes"
msgstr "Публиковать заметку"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Опубликовать заметки в Интернет"
@@ -4516,7 +4522,7 @@ msgid "QR Code"
msgstr "QR код"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4578,7 +4584,7 @@ msgstr "Рекомендуемые плагины"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Заголовок"
@@ -4723,7 +4729,7 @@ msgstr "Ресурсов: %d."
msgid "Restart and upgrade"
msgstr "Перезапустить и обновить"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Перезапустить в безопасном режиме"
@@ -4923,7 +4929,7 @@ msgstr "Поиск во всех заметках"
msgid "Search in current note"
msgstr "Поиск в текущей заметке"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Результаты поиска"
@@ -4957,7 +4963,7 @@ msgstr ""
"См. страницу предварительных выпусков для получения более подробной "
"информации: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Выбрать"
@@ -5171,6 +5177,11 @@ msgstr "Боковое меню открыто"
msgid "Sidebar"
msgstr "Боковая панель"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Войти в Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Размер"
@@ -5512,7 +5523,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Синхронизированная версия: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Синхронизовать ваши заметки"
@@ -5644,7 +5655,7 @@ msgstr ""
"Активный профиль не может быть удален. Переключитесь на другой профиль и "
"повторите попытку."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6157,7 +6168,7 @@ msgstr ""
"действия:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6353,7 +6364,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Введите `joplin help` для получения справочной информации."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6362,7 +6373,7 @@ msgstr ""
"Введите название заметки, чтобы перейти к ней, либо введите #имя_метки или "
"@имя_блокнота, либо введите : для поиска команд."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Введите новые метки или выберите из списка"
@@ -6799,7 +6810,7 @@ msgstr ""
msgid "Whisper"
msgstr "Шепот"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Окно не отвечает."
@@ -6822,12 +6833,12 @@ msgstr "да"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Да"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -5,9 +5,9 @@
# Jozef Gaal <preklady@mayday.sk>, 2024,2025.
msgid ""
msgstr ""
"Project-Id-Version: Joplin v3.3.7\n"
"Project-Id-Version: Joplin v3.3.9\n"
"Last-Translator: Jozef Gaal <preklady@mayday.sk>\n"
"Language-Team: Jozef Gaal <preklady@mayday.sk >\n"
"Language-Team: Jozef Gaal <preklady@mayday.sk>\n"
"Language: sk_SK\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -59,7 +59,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Túto výzvu môžete vypnúť v možnostiach)"
@@ -100,11 +100,10 @@ msgstr "&Okno"
#: packages/lib/models/settings/builtInMetadata.ts:1538
#: packages/lib/models/settings/builtInMetadata.ts:1814
#, fuzzy
msgid "%d day"
msgid_plural "%d days"
msgstr[0] "%d d"
msgstr[1] "%d dní"
msgstr[0] "%d d"
msgstr[1] "%d dni"
msgstr[2] "%d dní"
#: packages/lib/utils/joplinCloud/index.ts:148
@@ -122,12 +121,11 @@ msgstr "%d GB úložného priestoru"
#: packages/lib/models/settings/builtInMetadata.ts:1282
#: packages/lib/models/settings/builtInMetadata.ts:1283
#: packages/lib/models/settings/builtInMetadata.ts:1284
#, fuzzy
msgid "%d hour"
msgid_plural "%d hours"
msgstr[0] "%d hodina"
msgstr[1] "%d hodina"
msgstr[2] "%d hodina"
msgstr[1] "%d hodiny"
msgstr[2] "%d hodín"
#: packages/lib/utils/joplinCloud/index.ts:136
#: packages/lib/utils/joplinCloud/index.ts:137
@@ -144,27 +142,24 @@ msgstr "%d MB na poznámku alebo prílohu"
#: packages/lib/models/settings/builtInMetadata.ts:1279
#: packages/lib/models/settings/builtInMetadata.ts:1280
#: packages/lib/models/settings/builtInMetadata.ts:1281
#, fuzzy
msgid "%d minute"
msgid_plural "%d minutes"
msgstr[0] "%d minút"
msgstr[1] "%d minút"
msgstr[0] "%d minúta"
msgstr[1] "%d minúty"
msgstr[2] "%d minút"
#: packages/app-cli/app/command-rmnote.ts:34
#, fuzzy
msgid "%d note matches this pattern. Delete it?"
msgid_plural "%d notes match this pattern. Delete them?"
msgstr[0] "%d poznámok zodpovedá tomuto vzoru. Vymazať ich?"
msgstr[1] "%d poznámok zodpovedá tomuto vzoru. Vymazať ich?"
msgstr[0] "%d poznámka zodpovedá tomuto vzoru. Vymazať ju?"
msgstr[1] "%d poznámky zodpovedajú tomuto vzoru. Vymazať ich?"
msgstr[2] "%d poznámok zodpovedá tomuto vzoru. Vymazať ich?"
#: packages/app-cli/app/command-rmnote.ts:40
#, fuzzy
msgid "%d note will be permanently deleted. Continue?"
msgid_plural "%d notes will be permanently deleted. Continue?"
msgstr[0] "%d poznámok bude natrvalo vymazaných. Pokračovať?"
msgstr[1] "%d poznámok bude natrvalo vymazaných. Pokračovať?"
msgstr[0] "%d poznámka bude natrvalo vymazaná. Pokračovať?"
msgstr[1] "%d poznámky budú natrvalo vymazané. Pokračovať?"
msgstr[2] "%d poznámok bude natrvalo vymazaných. Pokračovať?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:229
@@ -223,7 +218,7 @@ msgstr "%s nemôže byť väčšie ako %s"
msgid "%s cannot be less than %s"
msgstr "%s nemôže byť menej ako %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -247,11 +242,10 @@ msgid "%s: %d"
msgstr "%s: %d"
#: packages/lib/services/ReportService.ts:378
#, fuzzy
msgid "%s: %d note"
msgid_plural "%s: %d notes"
msgstr[0] "%s: %d poznámok"
msgstr[1] "%s: %d poznámok"
msgstr[0] "%s: %d poznámka"
msgstr[1] "%s: %d poznámky"
msgstr[2] "%s: %d poznámok"
#: packages/lib/services/ReportService.ts:359
@@ -390,7 +384,7 @@ msgid "Add body"
msgstr "Pridať telo"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Pridať novú"
@@ -518,7 +512,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr "Bol nájdený automaticky uložený náčrt. Pripojiť jeho kópiu k poznámke?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Vyskytla sa chyba: %s"
@@ -615,7 +609,7 @@ msgstr "Pripojí daný súbor k poznámke."
msgid "attachment"
msgstr "príloha"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
msgid "Attachment"
msgstr "Príloha"
@@ -656,7 +650,7 @@ msgstr "Overovanie nebolo dokončené (nebol prijatý overovací token)."
msgid "Authorisation token:"
msgstr "Overovací token:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Overiť"
@@ -743,7 +737,7 @@ msgstr "od %s"
msgid "by word"
msgstr "podľa slova"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr "Kamera"
@@ -788,7 +782,7 @@ msgstr "Môže prezerať a upravovať"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Zrušiť"
@@ -813,7 +807,7 @@ msgstr "Prebieha rušenie..."
msgid "Cancelling... Please wait."
msgstr "Prebieha rušenie... Čakajte prosím."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Nedá sa získať prístup k %s"
@@ -942,7 +936,7 @@ msgstr "Znaky"
msgid "Characters excluding spaces"
msgstr "Znaky bez medzier"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Check"
msgstr "Označiť"
@@ -1029,7 +1023,7 @@ msgstr "zavrieť"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1095,7 +1089,7 @@ msgstr "Zobraziť kód"
msgid "Collaborate on a notebook with others"
msgstr "Spolupracujte na zápisníku s ostatnými"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Spolupracujte na zápisníkoch s ostatnými"
@@ -1132,7 +1126,7 @@ msgstr "príkaz"
msgid "Command"
msgstr "Príkaz"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Paleta príkazov"
@@ -1288,7 +1282,7 @@ msgstr "Kopírovať obrázok"
msgid "Copy Link Address"
msgstr "Kopírovať adresu odkazu"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Kopírovať odkaz na webovú stránku"
@@ -1352,7 +1346,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Nepodarilo sa pripojiť k úložisku doplnkov."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Nepodarilo sa exportovať poznámky: %s"
@@ -1452,7 +1446,7 @@ msgstr "Vytvorené: %d."
msgid "Created: %s"
msgstr "Vytvorené: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
msgid "Creates a new note with an attachment of type %s"
msgstr "Vytvorí novú poznámku s prílohou typu %s"
@@ -1902,7 +1896,7 @@ msgid "Draw picture"
msgstr "Nakreslite obrázok"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Náčrt"
@@ -2103,7 +2097,7 @@ msgstr "Povoliť biometrické overenie?"
#: packages/lib/models/settings/builtInMetadata.ts:1000
msgid "Enable deflist syntax"
msgstr "Povolenie syntax deflist"
msgstr "Povol syntax deflist"
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:226
#: packages/app-mobile/components/screens/encryption-config.tsx:317
@@ -2398,7 +2392,7 @@ msgstr "Úspešne exportované!"
msgid "Exporting profile..."
msgstr "Exportuje sa profil..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Exportuje sa do formátu „%s“ ako „%s“. Počkajte prosím..."
@@ -2642,7 +2636,7 @@ msgid "Go to source URL"
msgstr "Prejsť na zdrojovú URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Prejsť na čokoľvek..."
@@ -2757,7 +2751,7 @@ msgid ""
msgstr ""
"Ak ste už overili, počkajte, kým sa aplikácia zosynchronizuje s Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3056,7 +3050,7 @@ msgstr "Položky s chybou: %s"
msgid "Join us on %s"
msgstr "Pripojte sa k nám na %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3520,11 +3514,10 @@ msgstr ""
"doplnku."
#: packages/app-mobile/components/ScreenHeader/index.tsx:567
#, fuzzy
msgid "Move %d note to notebook \"%s\"?"
msgid_plural "Move %d notes to notebook \"%s\"?"
msgstr[0] "Presunúť %d poznámok do zápisníka „%s“?"
msgstr[1] "Presunúť %d poznámok do zápisníka „%s“?"
msgstr[0] "Presunúť %d poznámku do zápisníka „%s“?"
msgstr[1] "Presunúť %d poznámky do zápisníka „%s“?"
msgstr[2] "Presunúť %d poznámok do zápisníka „%s“?"
#: packages/app-desktop/gui/ResizableLayout/MoveButtons.tsx:73
@@ -3609,8 +3602,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nová poznámka"
@@ -3648,8 +3641,8 @@ msgstr "Nové značky:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Nová úloha"
@@ -3688,7 +3681,7 @@ msgstr "nie"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Nie"
@@ -3759,7 +3752,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Nie je overené pomocou %s. Uveďte všetky chýbajúce poverenia."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr "Neoznačené"
@@ -3868,7 +3861,7 @@ msgstr "Poznámka: Keď je poznámka zdieľaná, nebude už na serveri šifrovan
msgid "Note&book"
msgstr "Zápisník"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Zápisník"
@@ -3931,6 +3924,7 @@ msgstr "OCR: URL k údajom jazyka alebo cesta"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4021,6 +4015,11 @@ msgstr "Otvoriť v novom okne"
msgid "Open it"
msgstr "Otvoriť s"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Otvoriť %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Otvoriť prehliadač PDF"
@@ -4149,9 +4148,8 @@ msgid "PDF File"
msgstr "Súbor PDF"
#: packages/lib/utils/joplinCloud/index.ts:408
#, fuzzy
msgid "Per user. Minimum of 2 users."
msgstr "Na používateľa. Minimálne %d používateľov."
msgstr "Na používateľa. Minimálne 2 používatelia."
#: packages/lib/commands/permanentlyDeleteNote.ts:8
msgid "Permanently delete note"
@@ -4173,11 +4171,10 @@ msgstr ""
"vymazané."
#: packages/lib/models/Note.ts:944
#, fuzzy
msgid "Permanently delete this note?"
msgid_plural "Permanently delete these %d notes?"
msgstr[0] "Natrvalo odstrániť týchto %d poznámok?"
msgstr[1] "Natrvalo odstrániť týchto %d poznámok?"
msgstr[0] "Natrvalo odstrániť túto poznámku?"
msgstr[1] "Natrvalo odstrániť tieto %d poznámky?"
msgstr[2] "Natrvalo odstrániť týchto %d poznámok?"
#: packages/app-cli/app/command-rmbook.ts:20
@@ -4472,7 +4469,7 @@ msgstr "Zverejniť poznámku..."
msgid "Publish Notes"
msgstr "Zverejniť poznámky"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Zverejniť poznámky na internete"
@@ -4482,7 +4479,7 @@ msgid "QR Code"
msgstr "QR kód"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4544,7 +4541,7 @@ msgstr "Odporúčané doplnky"
msgid "Record audio"
msgstr "Nahrať zvuk"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
msgid "Recording"
msgstr "Nahrávanie"
@@ -4687,7 +4684,7 @@ msgstr "Zdroje: %d."
msgid "Restart and upgrade"
msgstr "Reštartovať a aktualizovať"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Reštartovať v núdzovom režime"
@@ -4889,7 +4886,7 @@ msgstr "Hľadať vo všetkých poznámkach"
msgid "Search in current note"
msgstr "Hľadať v aktuálnej poznámke"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Výsledky vyhľadávania"
@@ -4921,7 +4918,7 @@ msgstr "Zobraziť zoznam zmien"
msgid "See the pre-release page for more details: %s"
msgstr "Viac podrobností nájdete na stránke predbežného vydania: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Vybrať"
@@ -5135,6 +5132,11 @@ msgstr "Bočná ponuka otvorená"
msgid "Sidebar"
msgstr "Bočný panel"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Prihláste sa do Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Veľkosť"
@@ -5471,7 +5473,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Verzia synchronizácie: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synchronizujte svoje poznámky"
@@ -5603,7 +5605,7 @@ msgstr ""
"Aktívny profil nie je možné odstrániť. Prepnite na iný profil a skúste to "
"znova."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr "Aplikácia sa teraz zatvorí. Na dokončenie procesu ju znovu spustite."
@@ -6114,7 +6116,7 @@ msgstr ""
"nasledujúcich krokov:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6308,7 +6310,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Napíšte `joplin help` pre informácie o používaní."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6318,7 +6320,7 @@ msgstr ""
"napíšte #, za ktorým nasleduje názov štítku, alebo @, za ktorým nasleduje "
"názov zápisníka. Alebo napíšte : a vyhľadajte príkazy."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
msgid "Type a note title to search for it."
msgstr "Zadaním názvu poznámky ju vyhľadáte."
@@ -6752,7 +6754,7 @@ msgstr ""
msgid "Whisper"
msgstr "Whisper"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Okno nereaguje."
@@ -6775,12 +6777,12 @@ msgstr "áno"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Áno"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -64,7 +64,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -237,7 +237,7 @@ msgstr "Ustvari novo beležko."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -406,7 +406,7 @@ msgid "Add body"
msgstr "Dodaj telo"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "Dodaj naslov"
@@ -536,7 +536,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -627,7 +627,7 @@ msgstr "Pripni dano datoteko k beležki."
msgid "attachment"
msgstr "priponka"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Priponke"
@@ -669,7 +669,7 @@ msgstr "Avtentikacija ni bila uspešna (avtentikacijski žeton ni bil prejet)."
msgid "Authorisation token:"
msgstr "Avtorizacijski žeton:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -758,7 +758,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -804,7 +804,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Prekliči"
@@ -827,7 +827,7 @@ msgstr "V preklicu..."
msgid "Cancelling... Please wait."
msgstr "V preklicu... Prosim počakajte."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Ne morem dostopati %s"
@@ -955,7 +955,7 @@ msgstr "Znaki"
msgid "Characters excluding spaces"
msgstr "Znaki brez presledkov"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Seznam okenc"
@@ -1045,7 +1045,7 @@ msgstr "Zapri"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1111,7 +1111,7 @@ msgstr "Pogled kode"
msgid "Collaborate on a notebook with others"
msgstr "Sodelujte v zvezkih z drugimi"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Sodelujte v zvezkih z drugimi"
@@ -1149,7 +1149,7 @@ msgstr "ukaz"
msgid "Command"
msgstr "Ukaz"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Paleta ukazov"
@@ -1315,7 +1315,7 @@ msgstr "Kopiraj žeton"
msgid "Copy Link Address"
msgstr "Kopiraj naslov povezave"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1383,7 +1383,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Ni uspelo se povezat na repozitorij dodatka."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Izvoz beležk ni uspel: %s"
@@ -1484,7 +1484,7 @@ msgstr "Ustvarjeno: %d."
msgid "Created: %s"
msgstr "Ustvarjeno: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Ustvari nov zvezek."
@@ -1955,7 +1955,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2471,7 +2471,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Uvažanje profila..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Izvažam v \"%s\" kot \"%s\" format. Prosim počakajte..."
@@ -2718,7 +2718,7 @@ msgid "Go to source URL"
msgstr "Pojdi na izvorni URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Pojdi kamorkoli..."
@@ -2839,7 +2839,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3147,7 +3147,7 @@ msgstr "Zadnja napaka: %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3729,8 +3729,8 @@ msgstr "Posodobitev je na voljo, jo želite prenesti sedaj?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Nova beležka"
@@ -3770,8 +3770,8 @@ msgstr "Nove oznake:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Novi seznam opravil"
@@ -3810,7 +3810,7 @@ msgstr "ne"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Ne"
@@ -3885,7 +3885,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Ni avtenticirano z %s. Prosim podajte manjkajoče podatke."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3998,7 +3998,7 @@ msgstr "Beležka: Ko je bila beležka deljena, ne bo več kodirana na strežniku
msgid "Note&book"
msgstr "&Zvezek"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
#, fuzzy
msgid "Notebook"
@@ -4064,6 +4064,7 @@ msgstr "Način zapisa datuma"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4157,6 +4158,11 @@ msgstr ""
msgid "Open it"
msgstr "Odpri"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Odpri %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
#, fuzzy
msgid "Open PDF viewer"
@@ -4620,7 +4626,7 @@ msgstr "Objavi beležko..."
msgid "Publish Notes"
msgstr "Objavi Beležko"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Objavi beležko na internetu"
@@ -4631,7 +4637,7 @@ msgid "QR Code"
msgstr "Koda"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4696,7 +4702,7 @@ msgstr "ukaz"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Naslov"
@@ -4850,7 +4856,7 @@ msgstr "Viri: %d."
msgid "Restart and upgrade"
msgstr "Ponovno zaženi in nadgradi"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Ponovno zaženi in nadgradi"
@@ -5064,7 +5070,7 @@ msgstr "Išči znotraj vseh beležk"
msgid "Search in current note"
msgstr "Išči znotraj vseh beležk"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Ni rezultatov"
@@ -5099,7 +5105,7 @@ msgstr "Vse spremembe"
msgid "See the pre-release page for more details: %s"
msgstr "Oglej si stran pred-verzije za več podrobnosti: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Izberi"
@@ -5328,6 +5334,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Stranska vrstica"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Velikost"
@@ -5667,7 +5678,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Verzija sinhronizacije: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Sinhronizirajte vaše beležke"
@@ -5801,7 +5812,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6306,7 +6317,7 @@ msgstr ""
"spodaj:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6513,7 +6524,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Vtipkajte `joplin help` za informacije o uporabi."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6523,7 +6534,7 @@ msgstr ""
"Vnesite # in nato ime oznake, ali @ in nato ime zvezka. Ali vesite : da "
"poiščite po ukazih."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Vnesi nove oznake ali izberi iz seznama"
@@ -6959,7 +6970,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6982,12 +6993,12 @@ msgstr "da"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Da"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -60,7 +60,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -229,7 +229,7 @@ msgstr "Креира нову белешку."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -397,7 +397,7 @@ msgid "Add body"
msgstr "Додај тело"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "Додај наслов"
@@ -528,7 +528,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -620,7 +620,7 @@ msgstr "Додаје изабрани фајл у белешку."
msgid "attachment"
msgstr "приложи фајл"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Приложи фајл"
@@ -665,7 +665,7 @@ msgstr ""
msgid "Authorisation token:"
msgstr "Токен за ауторизацију:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -754,7 +754,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -800,7 +800,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Откажи"
@@ -823,7 +823,7 @@ msgstr "Отказивање..."
msgid "Cancelling... Please wait."
msgstr "Обустављам... Молимо сачекајте."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Не могу да приступим %s"
@@ -953,7 +953,7 @@ msgstr "Карактери"
msgid "Characters excluding spaces"
msgstr "Карактери не рачунајући размаке"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Поље за потврду"
@@ -1046,7 +1046,7 @@ msgstr "Затвори"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1113,7 +1113,7 @@ msgstr "Кôд"
msgid "Collaborate on a notebook with others"
msgstr "Молимо вас да прво креирате бележницу"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
#, fuzzy
msgid "Collaborate on notebooks with others"
msgstr "Молимо вас да прво креирате бележницу"
@@ -1152,7 +1152,7 @@ msgstr "команда"
msgid "Command"
msgstr "Наредба"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Командна палета"
@@ -1324,7 +1324,7 @@ msgstr "Копирај токен"
msgid "Copy Link Address"
msgstr "Копирај адресу везе"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1389,7 +1389,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Инсталација додатка није успела: %s"
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Извоз белешки није успео: %s"
@@ -1493,7 +1493,7 @@ msgstr "Креирано: %d."
msgid "Created: %s"
msgstr "Креирано: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Креира нову бележницу."
@@ -1972,7 +1972,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2505,7 +2505,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Извозим профил ..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Извозим у \"%s као \"%s\" формат. Молимо вас да сачекате..."
@@ -2753,7 +2753,7 @@ msgid "Go to source URL"
msgstr "Иди до изворног УРЛ-а"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Иди на било шта..."
@@ -2874,7 +2874,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3183,7 +3183,7 @@ msgstr "Последња грешка: %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3765,8 +3765,8 @@ msgstr "Доступно је ажурирање програма, да ли ж
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Нова белешка"
@@ -3809,8 +3809,8 @@ msgstr "Нове ознаке:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Нова ставка задужења"
@@ -3850,7 +3850,7 @@ msgstr "не"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Не"
@@ -3926,7 +3926,7 @@ msgstr ""
"Нисте потрвдили идентитет са %s. Молимо вас да унесете податке који "
"недостају."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -4044,7 +4044,7 @@ msgstr ""
msgid "Note&book"
msgstr "Бележнице"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
#, fuzzy
msgid "Notebook"
@@ -4111,6 +4111,7 @@ msgstr "Формат времена"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4207,6 +4208,11 @@ msgstr ""
msgid "Open it"
msgstr "Отвори"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Отвори %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
#, fuzzy
msgid "Open PDF viewer"
@@ -4677,7 +4683,7 @@ msgstr "Подели белешку ..."
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4688,7 +4694,7 @@ msgid "QR Code"
msgstr "Кôд"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4755,7 +4761,7 @@ msgstr "команда"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Заглавље"
@@ -4909,7 +4915,7 @@ msgstr "Ресурси: %d."
msgid "Restart and upgrade"
msgstr "Поново покрени и надогради"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Поново покрени и надогради"
@@ -5125,7 +5131,7 @@ msgstr "Претражите све белешке"
msgid "Search in current note"
msgstr "Птретрага у тренутној белешци"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Нема резултата"
@@ -5160,7 +5166,7 @@ msgstr "Потпуни списак промена"
msgid "See the pre-release page for more details: %s"
msgstr "Видите \"pre-release\" страницу за више детаља: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
#, fuzzy
msgid "Select"
@@ -5395,6 +5401,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Бочна трака"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Џоплин у облаку"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Величина"
@@ -5732,7 +5743,7 @@ msgstr "Синхронизује у одабрану локацију."
msgid "Sync Version: %s"
msgstr "Верзија синхронизације: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#, fuzzy
msgid "Sync your notes"
msgstr "Сортирај белешке по"
@@ -5869,7 +5880,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6359,7 +6370,7 @@ msgstr ""
"пратите следеће кораке:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6567,7 +6578,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Укуцајте 'joplin help' за информацију о коришћењу."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
#, fuzzy
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
@@ -6578,7 +6589,7 @@ msgstr ""
"укуцајте # са називом ознаке или @ са називом бележнице. Или укуцајте : за "
"тражење команди."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Унесите нове ознаке или одаберите са листе"
@@ -7024,7 +7035,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -7047,12 +7058,12 @@ msgstr "да"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Да"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -61,7 +61,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Du kan inaktivera denna prompt i alternativen)"
@@ -221,7 +221,7 @@ msgstr "Kan inte skapa en ny anteckning: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -387,7 +387,7 @@ msgid "Add body"
msgstr "Lägg till brödtext"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Lägg till ny"
@@ -518,7 +518,7 @@ msgstr ""
"En automatiskt sparad teckning hittades. Bifoga en kopia av den till "
"anteckningen?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Ett fel uppstod: %s"
@@ -616,7 +616,7 @@ msgstr "Bifogar den angivna filen till anteckningen."
msgid "attachment"
msgstr "bilaga"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Bilagor"
@@ -658,7 +658,7 @@ msgstr "Autentisering slutfördes inte (mottog inte en autentiseringstoken)."
msgid "Authorisation token:"
msgstr "Auktoriseringstoken:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Auktorisera"
@@ -745,7 +745,7 @@ msgstr "av %s"
msgid "by word"
msgstr "med ord"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -790,7 +790,7 @@ msgstr "Kan visa och redigera"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Avbryt"
@@ -813,7 +813,7 @@ msgstr "Avbryter..."
msgid "Cancelling... Please wait."
msgstr "Avbryter... vänta."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Det går inte att komma åt %s"
@@ -946,7 +946,7 @@ msgstr "Tecken"
msgid "Characters excluding spaces"
msgstr "Tecken exklusive mellanslag"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Kryssruta"
@@ -1035,7 +1035,7 @@ msgstr "stäng"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1102,7 +1102,7 @@ msgstr "Kodvy"
msgid "Collaborate on a notebook with others"
msgstr "Samarbeta på en anteckningsbok med andra"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Samarbeta på anteckningsböcker tillsammans med andra"
@@ -1141,7 +1141,7 @@ msgstr "kommando"
msgid "Command"
msgstr "Kommando"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Kommandopalett"
@@ -1296,7 +1296,7 @@ msgstr "Kopiera bild"
msgid "Copy Link Address"
msgstr "Kopiera länkadress"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Kopiera länken till hemsidan"
@@ -1359,7 +1359,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Det gick inte att ansluta till insticksmodulsförrådet."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Det gick inte att exportera anteckningar: %s"
@@ -1459,7 +1459,7 @@ msgstr "Skapad: %d."
msgid "Created: %s"
msgstr "Skapad: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Skapa en ny anteckningsbok under en överordnad anteckningsbok."
@@ -1914,7 +1914,7 @@ msgid "Draw picture"
msgstr "Rita bild"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Teckning"
@@ -2412,7 +2412,7 @@ msgstr "Exporten lyckades!"
msgid "Exporting profile..."
msgstr "Exporterar profil..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Exportera till \"%s\" som \"%s\" format. Vänta..."
@@ -2652,7 +2652,7 @@ msgid "Go to source URL"
msgstr "Gå till källans URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Gå till något..."
@@ -2768,7 +2768,7 @@ msgstr ""
"Om du redan har auktoriserat, vänta tills applikationen synkroniseras med "
"Joplin Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3069,7 +3069,7 @@ msgstr "Senaste fel: %s"
msgid "Join us on %s"
msgstr "Följ oss ​​på %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3620,8 +3620,8 @@ msgstr "En uppdatering är tillgänglig, vill du hämta den nu?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Ny anteckning"
@@ -3662,8 +3662,8 @@ msgstr "Nya taggar:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Ny att-göra"
@@ -3702,7 +3702,7 @@ msgstr "nej"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Nej"
@@ -3773,7 +3773,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "Inte autentiserad med %s. Ange eventuella saknade uppgifter."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3884,7 +3884,7 @@ msgstr ""
msgid "Note&book"
msgstr "Antecknings&bok"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Anteckningsbok"
@@ -3947,6 +3947,7 @@ msgstr "OCR: Språkdata-URL eller -sökväg"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4039,6 +4040,11 @@ msgstr "Redigera i nytt fönster"
msgid "Open it"
msgstr "Öppna den"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Öppna %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Öppna PDF-visare"
@@ -4489,7 +4495,7 @@ msgstr "Publisera anteckning..."
msgid "Publish Notes"
msgstr "Publicera anteckningar"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Publicera anteckningar till internet"
@@ -4499,7 +4505,7 @@ msgid "QR Code"
msgstr "QR-kod"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4561,7 +4567,7 @@ msgstr "Rekommenderade insticksmoduler"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Rubrik"
@@ -4708,7 +4714,7 @@ msgstr "Resurser: %d."
msgid "Restart and upgrade"
msgstr "Starta om och uppgradera"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Starta om i säkert läge"
@@ -4907,7 +4913,7 @@ msgstr "Sök i alla anteckningarna"
msgid "Search in current note"
msgstr "Sök i aktuell anteckning"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Sökresultat"
@@ -4939,7 +4945,7 @@ msgstr "Se ändringslogg"
msgid "See the pre-release page for more details: %s"
msgstr "Se sidan för förhandsversioner för mer information: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Välj"
@@ -5153,6 +5159,11 @@ msgstr "Sidomenyn öppnad"
msgid "Sidebar"
msgstr "Sidofält"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Logga in till Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Storlek"
@@ -5490,7 +5501,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Synkroniseringsversion: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Synkronisera dina anteckningar"
@@ -5622,7 +5633,7 @@ msgstr ""
"Den aktiva profilen kan inte raderas. Byt till en annan profil och försök "
"igen."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr "Appen kommer nu att stängas. Starta om den för att slutföra processen."
@@ -6129,7 +6140,7 @@ msgstr ""
"För att tillåta Joplin att synkronisera med Dropbox, följ stegen nedan:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6325,7 +6336,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Skriv `joplin help` för användningsinformation."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6335,7 +6346,7 @@ msgstr ""
"namnet på en tagg eller@ följt av namnet på en anteckningsbok. Eller skriv : "
"för att söka efter kommandon."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Skriv nya taggar eller välj från listan"
@@ -6771,7 +6782,7 @@ msgstr ""
msgid "Whisper"
msgstr "Whisper"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Fönstret svarar inte."
@@ -6794,12 +6805,12 @@ msgstr "ja"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Ja"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -57,7 +57,7 @@ msgid "(wysiwyg: %s)"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -217,7 +217,7 @@ msgstr "สร้างบันทึกใหม่"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -376,7 +376,7 @@ msgid "Add body"
msgstr "เพิ่มเนื้อความ"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "เพิ่มชื่อเรื่อง"
@@ -507,7 +507,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -601,7 +601,7 @@ msgstr "แนบไฟล์ที่ถูกเลือกกับบัน
msgid "attachment"
msgstr "ไฟล์แนบ"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "ไฟล์แนบ"
@@ -642,7 +642,7 @@ msgstr "การขออนุมัติไม่สมบูรณ์ (ไ
msgid "Authorisation token:"
msgstr "Token สำหรับการขออนุมัติ:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -735,7 +735,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -781,7 +781,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "ยกเลิก"
@@ -805,7 +805,7 @@ msgstr "กำลังยกเลิก..."
msgid "Cancelling... Please wait."
msgstr "กำลังยกเลิก... โปรดรอสักครู่..."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "ไม่สามารถเข้าถึง %s"
@@ -935,7 +935,7 @@ msgstr "ตัวอักษร"
msgid "Characters excluding spaces"
msgstr "ตัวอักษรไม่รวมวรรค"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "ช่องทำเครื่องหมาย"
@@ -1026,7 +1026,7 @@ msgstr "ปิด"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1093,7 +1093,7 @@ msgstr "Code"
msgid "Collaborate on a notebook with others"
msgstr "โปรดสร้างสมุดบันทึกก่อน"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
#, fuzzy
msgid "Collaborate on notebooks with others"
msgstr "โปรดสร้างสมุดบันทึกก่อน"
@@ -1127,7 +1127,7 @@ msgstr ""
msgid "Command"
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr ""
@@ -1293,7 +1293,7 @@ msgstr "คัดลอก Token"
msgid "Copy Link Address"
msgstr "คัดลอกที่อยู่ลิงก์"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1354,7 +1354,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr ""
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr ""
@@ -1458,7 +1458,7 @@ msgstr "สร้างเมื่อ: %d"
msgid "Created: %s"
msgstr "สร้างเมื่อ: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "สร้างสมุดบันทึกใหม่"
@@ -1926,7 +1926,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2447,7 +2447,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "กำลังส่งออกโปรไฟล์..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
#, fuzzy
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "กำลังนำเข้าจาก “%s” ไปเป็นฟอร์แมต “%s” โปรดรอสักครู่..."
@@ -2687,7 +2687,7 @@ msgid "Go to source URL"
msgstr "ไปที่ URL แหล่งที่มา"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr ""
@@ -2809,7 +2809,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3093,7 +3093,7 @@ msgstr "ข้อผิดพลาดล่าสุด: %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3667,8 +3667,8 @@ msgstr "มีอัพเดทใหม่ คุณต้องการด
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "สร้างบันทึกใหม่"
@@ -3709,8 +3709,8 @@ msgstr "แท็กใหม่:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "สร้าง to-do"
@@ -3750,7 +3750,7 @@ msgstr "n"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "ไม่"
@@ -3824,7 +3824,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3943,7 +3943,7 @@ msgstr ""
msgid "Note&book"
msgstr "สมุดบันทึก"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
#, fuzzy
msgid "Notebook"
@@ -4011,6 +4011,7 @@ msgstr "รูปแบบวันที่"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4102,6 +4103,11 @@ msgstr ""
msgid "Open it"
msgstr "เปิด..."
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "เปิด %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr ""
@@ -4557,7 +4563,7 @@ msgstr "แบ่งปันบันทึก..."
msgid "Publish Notes"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4568,7 +4574,7 @@ msgid "QR Code"
msgstr "Code"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4633,7 +4639,7 @@ msgstr ""
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "หัวข้อ"
@@ -4787,7 +4793,7 @@ msgstr "ทรัพยากร: %d"
msgid "Restart and upgrade"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "สลับแถบด้านข้าง"
@@ -4999,7 +5005,7 @@ msgstr "ค้นหาในบันทึกทั้งหมด"
msgid "Search in current note"
msgstr "ค้นหาในบันทึกปัจจุบัน"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "ไม่มีทรัพยากร"
@@ -5034,7 +5040,7 @@ msgstr "บันทึกการเปลี่ยนแปลง"
msgid "See the pre-release page for more details: %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
#, fuzzy
msgid "Select"
@@ -5266,6 +5272,11 @@ msgstr ""
msgid "Sidebar"
msgstr "แถบด้านข้าง"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Forum"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "ขนาด"
@@ -5599,7 +5610,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "ซิงค์เวอร์ชั่น: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#, fuzzy
msgid "Sync your notes"
msgstr "จัดเรียงบันทึกโดย"
@@ -5733,7 +5744,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6158,7 +6169,7 @@ msgid ""
msgstr ""
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6362,14 +6373,14 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "พิมพ์ `joplin help` สำหรับข้อมูลการใช้งาน"
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
"commands."
msgstr ""
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "กรอกแท็กใหม่หรือเลือกจากรายการ"
@@ -6803,7 +6814,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6827,12 +6838,12 @@ msgstr "ใช่"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "ใช่"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -60,7 +60,7 @@ msgid "(wysiwyg: %s)"
msgstr "(ne görürsen onu alırsın: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Ayarlardan bu istemi kapatabilirsiniz)"
@@ -220,7 +220,7 @@ msgstr "Yeni bir not oluşturulamadı: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -387,7 +387,7 @@ msgid "Add body"
msgstr "Gövde Ekle"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Yeni bir şey ekle"
@@ -520,7 +520,7 @@ msgstr ""
"Otomatik kaydedilmiş bir çizim bulundu. Not'a bunun kopyasını iliştirmek "
"ister misiniz?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Bir hata oluştu: %s"
@@ -617,7 +617,7 @@ msgstr "Verilen dosyayı nota iliştirir."
msgid "attachment"
msgstr "ek dosya"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Ek Dosyalar"
@@ -659,7 +659,7 @@ msgstr "Yetkilendirme tamamlanmadı (yetkilendirme anahtarı karşılanmadı)"
msgid "Authorisation token:"
msgstr "Yetkilendirme anahtarı:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Yetkilendir"
@@ -746,7 +746,7 @@ msgstr "%s tarafından"
msgid "by word"
msgstr "kelime ile"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -791,7 +791,7 @@ msgstr "Görüntüleyebilir ve düzenleyebilir"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "İptal et"
@@ -814,7 +814,7 @@ msgstr "İptal ediliyor..."
msgid "Cancelling... Please wait."
msgstr "İptal ediliyor... Lütfen bekleyin."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "%s erişilemiyor"
@@ -941,7 +941,7 @@ msgstr "Karakter"
msgid "Characters excluding spaces"
msgstr "Karakter (boşluklar hariç)"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Onay Kutusu"
@@ -1030,7 +1030,7 @@ msgstr "kapat"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1097,7 +1097,7 @@ msgstr "Kod Görünümü"
msgid "Collaborate on a notebook with others"
msgstr "Başkalarıyla işbirliği halinde not defterlerini ortak yönetin"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Başkalarıyla işbirliği halinde not defterlerini ortak yönetin"
@@ -1136,7 +1136,7 @@ msgstr "komut"
msgid "Command"
msgstr "Komut"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Komut paleti"
@@ -1291,7 +1291,7 @@ msgstr "Resmi kopyala"
msgid "Copy Link Address"
msgstr "Bağlantı Adresini Kopyala"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Web sitesinin adresini kopyala"
@@ -1354,7 +1354,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Eklenti sunucusuna bağlanılamadı."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Notlar dışarı aktarılamadı: %s"
@@ -1454,7 +1454,7 @@ msgstr "Oluşturuldu: %d."
msgid "Created: %s"
msgstr "Oluşturulma: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Ana not defteri altında yeni bir not defteri oluştur."
@@ -1907,7 +1907,7 @@ msgid "Draw picture"
msgstr "Çizim yap"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Çizim"
@@ -2405,7 +2405,7 @@ msgstr "Başarıyla dışa aktarıldı!"
msgid "Exporting profile..."
msgstr "Profil dışa aktarılıyor..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "\"%s\" den \"%s\" biçiminde dışa aktarılıyor. Lütfen bekleyin..."
@@ -2648,7 +2648,7 @@ msgid "Go to source URL"
msgstr "URL kaynağına git"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Şuraya Git..."
@@ -2765,7 +2765,7 @@ msgstr ""
"Eğer hali hazırda giriş yaptıysanız, lütfen uygulamanın Joplin Cloud ile "
"senkronizasyonu için kısa bir süre bekleyin."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3068,7 +3068,7 @@ msgstr "Son hata: %s"
msgid "Join us on %s"
msgstr "%s üzerinde bize katılın"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3619,8 +3619,8 @@ msgstr "Güncelleme mevcut, şimdi indirmek ister misiniz?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Yeni not"
@@ -3661,8 +3661,8 @@ msgstr "Yeni etiketler:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Yeni yapılacak"
@@ -3701,7 +3701,7 @@ msgstr "hayır"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Hayır"
@@ -3772,7 +3772,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "%s ile doğrulama sağlanamadı. Lütfen eksik olan tüm bilgileri girin."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3882,7 +3882,7 @@ msgstr "Not: Bir not paylaşıldığında artık sunucuda şifreli olmayacak."
msgid "Note&book"
msgstr "Not&defteri"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Not defteri"
@@ -3944,6 +3944,7 @@ msgstr "OCR: Dil verisi URL ya da yolu"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4037,6 +4038,11 @@ msgstr "Yeni pencerede düzenle"
msgid "Open it"
msgstr "Aç"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Aç %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "PDF görüntüleyiciyi aç"
@@ -4489,7 +4495,7 @@ msgstr "Notu yayımla…"
msgid "Publish Notes"
msgstr "Notları Yayımla"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Notları İnternet’e yayımla"
@@ -4499,7 +4505,7 @@ msgid "QR Code"
msgstr "Kare Kod"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4561,7 +4567,7 @@ msgstr "Önerilen eklentiler"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Başlık"
@@ -4706,7 +4712,7 @@ msgstr "Kaynaklar: %d."
msgid "Restart and upgrade"
msgstr "Yeniden başlat ve güncelle"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Güvenli modda yeniden başlat"
@@ -4908,7 +4914,7 @@ msgstr "Tüm notlarda ara"
msgid "Search in current note"
msgstr "Mevcut notta ara"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Arama sonuçları"
@@ -4940,7 +4946,7 @@ msgstr "Sürüm geçmişine bakın"
msgid "See the pre-release page for more details: %s"
msgstr "Daha fazla ayrıntı için sürüm öncesi sayfasına bakın: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Seç"
@@ -5154,6 +5160,11 @@ msgstr "Yan menü açık"
msgid "Sidebar"
msgstr "Kenar çubuğu"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Cloud'a giriş yap."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Boyut"
@@ -5492,7 +5503,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Yeni sürüm: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Notları senkron et"
@@ -5622,7 +5633,7 @@ msgid ""
"again."
msgstr "Profil aktifken silinemez. Bir başka profile geçip yeniden deneyin."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6134,7 +6145,7 @@ msgstr ""
"aşağıdaki adımları izleyin:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6333,7 +6344,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Kullanım bilgisi için `joplin help` yazın."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6343,7 +6354,7 @@ msgstr ""
"olarak # ile etiket ismi ya da @ ile not defteri ismi yazın. Ayrıca : "
"yazarak komutlar içinde arama yapabilirsiniz."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Yeni etiketler yazın veya listeden seçin"
@@ -6779,7 +6790,7 @@ msgstr ""
msgid "Whisper"
msgstr "Whisper"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Pencere tepkisiz, cevap vermiyor."
@@ -6802,12 +6813,12 @@ msgstr "evet"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Evet"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -61,7 +61,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(Ви можете вимкнути цей запит у налаштуваннях)"
@@ -226,7 +226,7 @@ msgstr "Не вдається створити нову нотатку: %s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -396,7 +396,7 @@ msgid "Add body"
msgstr "Додати тіло"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "Додати нове"
@@ -526,7 +526,7 @@ msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
"Знайдено автоматично збережений малюнок. Прикріпити його копію до нотатки?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "Виникла помилка: %s"
@@ -624,7 +624,7 @@ msgstr "Додає даний файл до нотатки."
msgid "attachment"
msgstr "вкладення"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Вкладення"
@@ -666,7 +666,7 @@ msgstr "Автентифікація не була завершена (не от
msgid "Authorisation token:"
msgstr "Токен авторизації:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "Авторизуйтесь"
@@ -753,7 +753,7 @@ msgstr "від %s"
msgid "by word"
msgstr "по словах"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -798,7 +798,7 @@ msgstr "Можна переглядати та редагувати"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Скасувати"
@@ -821,7 +821,7 @@ msgstr "Скасування…"
msgid "Cancelling... Please wait."
msgstr "Скасування… Будь ласка, почекайте."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Помилка доступу %s"
@@ -950,7 +950,7 @@ msgstr "Символи"
msgid "Characters excluding spaces"
msgstr "Символи виключаючи пробіли"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Маркування"
@@ -1038,7 +1038,7 @@ msgstr "закрити"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1105,7 +1105,7 @@ msgstr "Вбудований код"
msgid "Collaborate on a notebook with others"
msgstr "Працюйте над блокнотом разом з іншими"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "Співпрацюйте над нотатками з іншими"
@@ -1144,7 +1144,7 @@ msgstr "команда"
msgid "Command"
msgstr "Команда"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Панель команд"
@@ -1302,7 +1302,7 @@ msgstr "Копіювати зображення"
msgid "Copy Link Address"
msgstr "Копіювати адресу посилання"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Скопіювати посилання на сайт"
@@ -1366,7 +1366,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Не вдалося підключитися до репозиторію плагінів."
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Не вдалося експортувати примітки: %s"
@@ -1467,7 +1467,7 @@ msgstr "Створено: %d."
msgid "Created: %s"
msgstr "Створено: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Створіть новий блокнот під батьківським блокнотом."
@@ -1920,7 +1920,7 @@ msgid "Draw picture"
msgstr "Намалювати малюнок"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "Малюнок"
@@ -2419,7 +2419,7 @@ msgstr "Успішний єкспорт!"
msgid "Exporting profile..."
msgstr "Експортування профілю…"
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Експортування до \"%s\" у форматі \"%s\". Будь ласка, зачекайте…"
@@ -2661,7 +2661,7 @@ msgid "Go to source URL"
msgstr "Перейти до посилання"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Перейти будь-куди…"
@@ -2777,7 +2777,7 @@ msgstr ""
"Якщо ви вже авторизувалися, зачекайте, поки додаток синхронізується з Joplin "
"Cloud."
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3079,7 +3079,7 @@ msgstr "Остання помилка: %s"
msgid "Join us on %s"
msgstr "Приєднуйтесь до нас у %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3634,8 +3634,8 @@ msgstr "Доступне оновлення, ви хочете завантаж
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Нова нотатка"
@@ -3674,8 +3674,8 @@ msgstr "Нові теги:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "Нове завдання"
@@ -3714,7 +3714,7 @@ msgstr "ні"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Ні"
@@ -3786,7 +3786,7 @@ msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr ""
"Не аутентифіковано за допомогою %s. Надайте будь-які відсутні облікові дані."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3898,7 +3898,7 @@ msgstr ""
msgid "Note&book"
msgstr "Блокнот"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "Блокнот"
@@ -3960,6 +3960,7 @@ msgstr "OCR: Посилання або шлях до мовних даних"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4052,6 +4053,11 @@ msgstr "Редагувати в новому вікні"
msgid "Open it"
msgstr "Відкрити"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Відкрити %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "Відкрити переглядач PDF"
@@ -4506,7 +4512,7 @@ msgstr "Опублікувати нотатку..."
msgid "Publish Notes"
msgstr "Опублікувати примітки"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "Публікуйте нотатки в Інтернеті"
@@ -4516,7 +4522,7 @@ msgid "QR Code"
msgstr "QR код"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4578,7 +4584,7 @@ msgstr "Рекомендовані плагіни"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Заголовок"
@@ -4723,7 +4729,7 @@ msgstr "Ресурси: %d."
msgid "Restart and upgrade"
msgstr "Перезапустити і оновити"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "Перезавантажтеся в безпечному режимі"
@@ -4925,7 +4931,7 @@ msgstr "Пошук по всіх нотатках"
msgid "Search in current note"
msgstr "Пошук в поточній нотатці"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "Результати пошуку"
@@ -4957,7 +4963,7 @@ msgstr "Переглянути журнал змін"
msgid "See the pre-release page for more details: %s"
msgstr "Докладніше про тестову версію: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "Виберіть"
@@ -5172,6 +5178,11 @@ msgstr "Відкрито бічне меню"
msgid "Sidebar"
msgstr "Бічна панель"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Увійдіть до Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Розмір"
@@ -5514,7 +5525,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Версія синхронізації: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "Сортувати нотатки за"
@@ -5646,7 +5657,7 @@ msgstr ""
"Активний профіль не можна видалити. Перейдіть на інший профіль та повторіть "
"спробу."
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6160,7 +6171,7 @@ msgstr ""
"дії:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6356,7 +6367,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Введіть `joplin help` для отримання інформації про використання."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6366,7 +6377,7 @@ msgstr ""
"введіть # а потім ім'я тега, або @, а потім ім'я блокнота. Або введіть : для "
"пошуку команд."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Введіть нові теги або виберіть зі списку"
@@ -6801,7 +6812,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "Вікно не реагує."
@@ -6824,12 +6835,12 @@ msgstr "так"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Так"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -59,7 +59,7 @@ msgid "(wysiwyg: %s)"
msgstr "(wysiwyg: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr ""
@@ -217,7 +217,7 @@ msgstr "Tạo một note mới."
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -384,7 +384,7 @@ msgid "Add body"
msgstr "Điền phần thân"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
#, fuzzy
msgid "Add new"
msgstr "Điền tiêu đề"
@@ -514,7 +514,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr ""
@@ -605,7 +605,7 @@ msgstr "Đính kèm tập tin được lựa chọn vào ghi chú."
msgid "attachment"
msgstr "đính kèm"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "Đính kèm"
@@ -647,7 +647,7 @@ msgstr "Quy trình xác nhận chưa hoàn thành (chưa nhận được mã xá
msgid "Authorisation token:"
msgstr "Mã ủy quyền:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
#, fuzzy
msgid "Authorise"
@@ -736,7 +736,7 @@ msgstr ""
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -782,7 +782,7 @@ msgstr ""
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "Hủy"
@@ -805,7 +805,7 @@ msgstr "Hủy..."
msgid "Cancelling... Please wait."
msgstr "Đang hủy… Vui lòng chờ."
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "Không thể truy cập %s"
@@ -934,7 +934,7 @@ msgstr "Số chữ"
msgid "Characters excluding spaces"
msgstr "Số chữ ngoại trừ dấu cách"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "Ô dấu check"
@@ -1024,7 +1024,7 @@ msgstr "Đóng"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1090,7 +1090,7 @@ msgstr "Xem Code"
msgid "Collaborate on a notebook with others"
msgstr "Vui lòng tạo một notebook trước"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
#, fuzzy
msgid "Collaborate on notebooks with others"
msgstr "Vui lòng tạo một notebook trước"
@@ -1128,7 +1128,7 @@ msgstr "command"
msgid "Command"
msgstr "Lệnh"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "Mẫu lệnh"
@@ -1293,7 +1293,7 @@ msgstr "Sao chép mã"
msgid "Copy Link Address"
msgstr "Sao chép địa chỉ đường dẫn"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
#, fuzzy
msgid "Copy link to website"
@@ -1359,7 +1359,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "Không thể kết nối đến các phần mở rộng"
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "Không thể xuất ghi chú: %s"
@@ -1461,7 +1461,7 @@ msgstr "Đã tạo: %d."
msgid "Created: %s"
msgstr "Đã tạo lúc: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "Tạo một notebook mới."
@@ -1931,7 +1931,7 @@ msgid "Draw picture"
msgstr ""
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr ""
@@ -2447,7 +2447,7 @@ msgstr ""
msgid "Exporting profile..."
msgstr "Đang xuất hồ sơ..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "Xuất ra “%s” dưới định dạng “%s”. Vui lòng chờ…"
@@ -2690,7 +2690,7 @@ msgid "Go to source URL"
msgstr "Đi tới URL nguồn"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "Đi tới bất kỳ điểm nào..."
@@ -2807,7 +2807,7 @@ msgid ""
"Joplin Cloud."
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3116,7 +3116,7 @@ msgstr "Lỗi gần nhất; %s"
msgid "Join us on %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3690,8 +3690,8 @@ msgstr "Có bản cập nhật mới, bạn có muốn cập nhật không?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "Ghi chú mới"
@@ -3733,8 +3733,8 @@ msgstr "Tags mới:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "To-do mới"
@@ -3773,7 +3773,7 @@ msgstr "không"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "Không"
@@ -3848,7 +3848,7 @@ msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr ""
"Chưa được ủy quyền với %s. Vui lòng cung cấp thông tin chưa được cung cấp."
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3962,7 +3962,7 @@ msgstr ""
msgid "Note&book"
msgstr "Sổ&ghi chú"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
#, fuzzy
msgid "Notebook"
@@ -4028,6 +4028,7 @@ msgstr "Định dạng ngày"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -4122,6 +4123,11 @@ msgstr ""
msgid "Open it"
msgstr "Mở"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "Mở %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
#, fuzzy
msgid "Open PDF viewer"
@@ -4580,7 +4586,7 @@ msgstr "Công khai ghi chú…"
msgid "Publish Notes"
msgstr "Công khai các Ghi chú"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr ""
@@ -4591,7 +4597,7 @@ msgid "QR Code"
msgstr "Mã"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4656,7 +4662,7 @@ msgstr "command"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "Tiêu đề"
@@ -4810,7 +4816,7 @@ msgstr "Tài nguyên: %d."
msgid "Restart and upgrade"
msgstr "Khởi động lại và nâng cấp"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
#, fuzzy
msgid "Restart in safe mode"
msgstr "Khởi động lại và nâng cấp"
@@ -5023,7 +5029,7 @@ msgstr "Tìm kiếm trong tất cả các notes"
msgid "Search in current note"
msgstr "Tìm kiếm trong ghi chú hiện tại"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "Không có kết quả"
@@ -5058,7 +5064,7 @@ msgstr "Toàn bộ thay đổi"
msgid "See the pre-release page for more details: %s"
msgstr "Xem trang phát hành trước để có thêm thông tin chi tiết: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
#, fuzzy
msgid "Select"
@@ -5287,6 +5293,11 @@ msgstr ""
msgid "Sidebar"
msgstr "Thanh bên"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "Joplin Cloud"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "Kích thước"
@@ -5623,7 +5634,7 @@ msgstr ""
msgid "Sync Version: %s"
msgstr "Phiên bản đồng bộ hóa: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#, fuzzy
msgid "Sync your notes"
msgstr "Sắp xếp notes theo"
@@ -5758,7 +5769,7 @@ msgid ""
"again."
msgstr ""
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr ""
@@ -6246,7 +6257,7 @@ msgstr ""
"đây:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
#, fuzzy
msgid ""
@@ -6450,7 +6461,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "Ấn `Joplin help` để hiển thị thông tin sử dụng."
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6459,7 +6470,7 @@ msgstr ""
"Nhập một tiêu đề hoặc một phần của tiêu đề để nhảy tới nó. Bạn cũng có thể "
"gõ #tên-nhãn, hoặc @tên-sổ-ghi-chú. Hoặc gõ : để tìm dòng lệnh."
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "Điền tags mới hoặc chọn từ danh mục"
@@ -6896,7 +6907,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr ""
@@ -6919,12 +6930,12 @@ msgstr "có"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "Có"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -56,7 +56,7 @@ msgid "(wysiwyg: %s)"
msgstr "(兼容所见即所得编辑器:%s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(您可以在选项中禁用此提示)"
@@ -210,7 +210,7 @@ msgstr "%s 无法比 %s 更大"
msgid "%s cannot be less than %s"
msgstr "%s 无法比 %s 更小"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -368,7 +368,7 @@ msgid "Add body"
msgstr "添加内容"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "新增"
@@ -491,7 +491,7 @@ msgstr "不明确的笔记本“%s”。请改用短笔记本 id - 按“ti”
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr "发现一张自动保存的绘图。是否将其添加到笔记中?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "出现异常: %s"
@@ -585,7 +585,7 @@ msgstr "将选定文件添加到笔记中。"
msgid "attachment"
msgstr "附件"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
msgid "Attachment"
msgstr "附件"
@@ -625,7 +625,7 @@ msgstr "认证未完成(未收到认证令牌)。"
msgid "Authorisation token:"
msgstr "授权令牌:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "授权"
@@ -712,7 +712,7 @@ msgstr "由 %s"
msgid "by word"
msgstr "以文字"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr "相机"
@@ -757,7 +757,7 @@ msgstr "可以查看和编辑"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "取消"
@@ -780,7 +780,7 @@ msgstr "正在取消……"
msgid "Cancelling... Please wait."
msgstr "正在取消…… 请稍候。"
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "无法访问 %s"
@@ -903,7 +903,7 @@ msgstr "字符数"
msgid "Characters excluding spaces"
msgstr "字符数(除空格)"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Check"
msgstr "勾选"
@@ -989,7 +989,7 @@ msgstr "关闭"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1054,7 +1054,7 @@ msgstr "代码视图"
msgid "Collaborate on a notebook with others"
msgstr "与他人共同协作笔记"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "与他人共同协作笔记本"
@@ -1089,7 +1089,7 @@ msgstr "命令"
msgid "Command"
msgstr "命令"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "命令面板"
@@ -1243,7 +1243,7 @@ msgstr "复制图片"
msgid "Copy Link Address"
msgstr "复制链接地址"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "将链接复制到网站"
@@ -1304,7 +1304,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "无法连接到插件库。"
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "无法导出笔记:%s"
@@ -1401,7 +1401,7 @@ msgstr "已创建:%d 条。"
msgid "Created: %s"
msgstr "已创建:%s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
msgid "Creates a new note with an attachment of type %s"
msgstr "以类型 %s 的附件创建一个新笔记本"
@@ -1845,7 +1845,7 @@ msgid "Draw picture"
msgstr "添加绘图"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "绘制中"
@@ -2338,7 +2338,7 @@ msgstr "导出成功!"
msgid "Exporting profile..."
msgstr "正在导出配置档……"
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "导出到 “%s”,格式为 “%s”。请稍等……"
@@ -2572,7 +2572,7 @@ msgid "Go to source URL"
msgstr "跳转到源 URL"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "跳转到任意内容……"
@@ -2686,7 +2686,7 @@ msgid ""
"Joplin Cloud."
msgstr "如果您已授权,请等待应用程序同步到 Joplin 云。"
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -2976,7 +2976,7 @@ msgstr "含错误的项目:%s"
msgid "Join us on %s"
msgstr "在 %s 上加入我们"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3510,8 +3510,8 @@ msgstr ""
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "新建笔记"
@@ -3549,8 +3549,8 @@ msgstr "新建标签:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "新建待办事项"
@@ -3589,7 +3589,7 @@ msgstr "否"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "否"
@@ -3658,7 +3658,7 @@ msgstr "Nord"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "%s 未授权。请提供任何缺少的凭据。"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr "未勾选"
@@ -3767,7 +3767,7 @@ msgstr "注意:笔记共享后,便不再在服务器上加密。"
msgid "Note&book"
msgstr "笔记本 (&B)"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "笔记本"
@@ -3828,6 +3828,7 @@ msgstr "OCR:语言数据 URL 或路径"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -3916,6 +3917,11 @@ msgstr "在新窗口打开"
msgid "Open it"
msgstr "打开它"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "打开 %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "打开 PDF 查看器"
@@ -4353,7 +4359,7 @@ msgstr "发布笔记……"
msgid "Publish Notes"
msgstr "发布笔记"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "将笔记发布到互联网"
@@ -4363,7 +4369,7 @@ msgid "QR Code"
msgstr "二维码"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4425,7 +4431,7 @@ msgstr "推荐插件"
msgid "Record audio"
msgstr "录制音频"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
msgid "Recording"
msgstr "录音中"
@@ -4568,7 +4574,7 @@ msgstr "资源:%d。"
msgid "Restart and upgrade"
msgstr "重启并升级"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "重启并进入安全模式"
@@ -4764,7 +4770,7 @@ msgstr "在所有笔记内搜索"
msgid "Search in current note"
msgstr "在当前笔记内搜索"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
msgid "Search results"
msgstr "搜索结果"
@@ -4796,7 +4802,7 @@ msgstr "查看更新日志"
msgid "See the pre-release page for more details: %s"
msgstr "参阅预发行页面以获得更多信息:%s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "选择"
@@ -5005,6 +5011,11 @@ msgstr "侧边菜单已打开"
msgid "Sidebar"
msgstr "边栏"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "登录至 Joplin 云。"
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "大小"
@@ -5321,7 +5332,7 @@ msgstr "同步到所提供的目标(默认为 sync.target 配置值)"
msgid "Sync Version: %s"
msgstr "同步版本:%s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "同步笔记"
@@ -5450,7 +5461,7 @@ msgid ""
"again."
msgstr "无法删除正在使用的配置档。请切换到另一配置档后再次尝试。"
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr "应用将要关闭。请重新启动它以完成此过程。"
@@ -5907,7 +5918,7 @@ msgid ""
msgstr "要让 Joplin 与 Dropbox 同步,请按下列步骤操作:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6091,7 +6102,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "键入 `joplin help` 获取用法信息。"
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6100,7 +6111,7 @@ msgstr ""
"键入笔记标题或部分内容以转跳到它。或者键入 # 跟着一个标签名,或者键入 @ 跟着"
"一个笔记本名字,或者键入 : 以搜索命令。"
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
msgid "Type a note title to search for it."
msgstr "键入一个笔记标题以搜索它。"
@@ -6514,7 +6525,7 @@ msgstr ""
msgid "Whisper"
msgstr "Whisper"
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "窗口没有响应。"
@@ -6537,12 +6548,12 @@ msgstr "是"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "是"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -57,7 +57,7 @@ msgid "(wysiwyg: %s)"
msgstr "(支援所見即所得: %s)"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid "(You may disable this prompt in the options)"
msgstr "(您可以在選項中停用此提示)"
@@ -212,7 +212,7 @@ msgstr "無法建立新筆記:%s"
msgid "%s cannot be less than %s"
msgstr ""
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:231
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:237
msgid ""
"%s is not optimised for synchronising many small files so your initial "
"synchronisation will be slow."
@@ -370,7 +370,7 @@ msgid "Add body"
msgstr "新增內文"
#: packages/app-mobile/components/buttons/FloatingActionButton.tsx:64
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:127
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:130
msgid "Add new"
msgstr "新增"
@@ -498,7 +498,7 @@ msgstr ""
msgid "An autosaved drawing was found. Attach a copy of it to the note?"
msgstr "發現一個自動保存的繪圖。要將其附加到記事嗎?"
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/ElectronAppWrapper.ts:171
msgid "An error occurred: %s"
msgstr "發生錯誤:%s"
@@ -590,7 +590,7 @@ msgstr "將特定的檔案附加到記事。"
msgid "attachment"
msgstr "附加檔案"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:69
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#, fuzzy
msgid "Attachment"
msgstr "附加檔案"
@@ -631,7 +631,7 @@ msgstr "尚未完成驗證 (未收到身份驗證的 token)。"
msgid "Authorisation token:"
msgstr "授權 Token:"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:88
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:89
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:162
msgid "Authorise"
msgstr "授權 Token"
@@ -718,7 +718,7 @@ msgstr "經由 %s"
msgid "by word"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:71
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:74
msgid "Camera"
msgstr ""
@@ -763,7 +763,7 @@ msgstr "可以查看和編輯"
#: packages/app-mobile/components/voiceTyping/AudioRecordingBanner.tsx:202
#: packages/app-mobile/utils/makeShowMessageBox.ts:16
#: packages/lib/commands/permanentlyDeleteNote.ts:21
#: packages/lib/shim-init-node.ts:274
#: packages/lib/shim-init-node.ts:278
msgid "Cancel"
msgstr "取消"
@@ -786,7 +786,7 @@ msgstr "正在取消..."
msgid "Cancelling... Please wait."
msgstr "正在取消中...請稍候。"
#: packages/lib/shim-init-node.ts:334
#: packages/lib/shim-init-node.ts:338
msgid "Cannot access %s"
msgstr "無法存取 %s"
@@ -910,7 +910,7 @@ msgstr "字元數"
msgid "Characters excluding spaces"
msgstr "不含空格的字元"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
#, fuzzy
msgid "Check"
msgstr "核取方塊"
@@ -999,7 +999,7 @@ msgstr "關閉"
#: packages/app-desktop/gui/NoteContentPropertiesDialog.tsx:175
#: packages/app-desktop/gui/ShareFolderDialog/ShareFolderDialog.tsx:411
#: packages/app-desktop/gui/ShareNoteDialog.tsx:223
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:308
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:315
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:23
#: packages/app-mobile/components/DismissibleDialog.tsx:83
#: packages/app-mobile/components/NoteEditor/ImageEditor/ImageEditor.tsx:166
@@ -1065,7 +1065,7 @@ msgstr "程式碼檢視"
msgid "Collaborate on a notebook with others"
msgstr "與其他人在一份記事本協作"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:176
msgid "Collaborate on notebooks with others"
msgstr "與其他人在記事本協作"
@@ -1102,7 +1102,7 @@ msgstr "命令"
msgid "Command"
msgstr "命令"
#: packages/app-desktop/plugins/GotoAnything.tsx:791
#: packages/app-desktop/plugins/GotoAnything.tsx:783
msgid "Command palette"
msgstr "命令模式"
@@ -1260,7 +1260,7 @@ msgstr "複製圖片"
msgid "Copy Link Address"
msgstr "複製鏈結位址"
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:94
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:95
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:169
msgid "Copy link to website"
msgstr "Joplin 官方網站"
@@ -1321,7 +1321,7 @@ msgstr ""
msgid "Could not connect to plugin repository."
msgstr "無法連上延伸模組儲存庫。"
#: packages/app-desktop/InteropServiceHelper.ts:220
#: packages/app-desktop/InteropServiceHelper.ts:222
msgid "Could not export notes: %s"
msgstr "無法匯出記事: %s"
@@ -1418,7 +1418,7 @@ msgstr "建立:%d。"
msgid "Created: %s"
msgstr "已建立: %s"
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:62
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:65
#, fuzzy
msgid "Creates a new note with an attachment of type %s"
msgstr "在父筆記本下創建一個新的筆記本。"
@@ -1871,7 +1871,7 @@ msgid "Draw picture"
msgstr "繪製圖片"
#: packages/app-mobile/components/screens/Note/Note.tsx:917
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:72
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:75
msgid "Drawing"
msgstr "繪畫"
@@ -2371,7 +2371,7 @@ msgstr "匯出成功!"
msgid "Exporting profile..."
msgstr "正在匯出記事..."
#: packages/app-desktop/InteropServiceHelper.ts:199
#: packages/app-desktop/InteropServiceHelper.ts:201
msgid "Exporting to \"%s\" as \"%s\" format. Please wait..."
msgstr "匯出到「%s」(格式:%s)。請稍候..."
@@ -2603,7 +2603,7 @@ msgid "Go to source URL"
msgstr "前往來源網址"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/gotoAnything.ts:18
#: packages/app-desktop/plugins/GotoAnything.tsx:783
#: packages/app-desktop/plugins/GotoAnything.tsx:775
msgid "Goto Anything..."
msgstr "前往任意內容..."
@@ -2718,7 +2718,7 @@ msgid ""
"Joplin Cloud."
msgstr "如果您已經授權,請等待應用程式同步到Joplin Cloud。"
#: packages/app-desktop/ElectronAppWrapper.ts:155
#: packages/app-desktop/ElectronAppWrapper.ts:165
#: packages/app-desktop/gui/EncryptionConfigScreen/EncryptionConfigScreen.tsx:360
#: packages/app-desktop/gui/StatusScreen/StatusScreen.tsx:121
#: packages/app-mobile/components/screens/status.tsx:203
@@ -3013,7 +3013,7 @@ msgstr "上次錯誤: %s"
msgid "Join us on %s"
msgstr "在 Twitter 上加入我們"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:302
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:309
msgid ""
"Joplin can synchronise your notes using various providers. Select one from "
"the list below."
@@ -3553,8 +3553,8 @@ msgstr "已有更新,您想立即下載嗎?"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:112
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newNote.ts:10
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:105
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:94
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:97
#: packages/app-mobile/setupQuickActions.ts:30
msgid "New note"
msgstr "新增記事"
@@ -3594,8 +3594,8 @@ msgstr "新增標籤:"
#: packages/app-desktop/gui/NoteListControls/NoteListControls.tsx:122
#: packages/app-desktop/gui/NoteListWrapper/NoteListWrapper.tsx:72
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/newTodo.ts:7
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:108
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:84
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:111
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:87
#: packages/app-mobile/setupQuickActions.ts:31
msgid "New to-do"
msgstr "新增待辦事項"
@@ -3634,7 +3634,7 @@ msgstr "否"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:22
#: packages/app-mobile/components/screens/Note/Note.tsx:759
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "No"
msgstr "否"
@@ -3705,7 +3705,7 @@ msgstr "北歐藍"
msgid "Not authenticated with %s. Please provide any missing credentials."
msgstr "與 %s 認證失敗,請提供完整的身份驗證資訊。"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:163
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:164
msgid "Not checked"
msgstr ""
@@ -3815,7 +3815,7 @@ msgstr "注意:分享記事後,該記事將不會在伺服器上加密。"
msgid "Note&book"
msgstr "記事本 (&B)"
#: packages/app-desktop/plugins/GotoAnything.tsx:608
#: packages/app-desktop/plugins/GotoAnything.tsx:600
#: packages/lib/models/Setting.ts:1179
msgid "Notebook"
msgstr "記事本"
@@ -3878,6 +3878,7 @@ msgstr "語言、日期格式"
#: packages/app-desktop/bridge.ts:372 packages/app-desktop/bridge.ts:385
#: packages/app-desktop/bridge.ts:399 packages/app-desktop/bridge.ts:415
#: packages/app-desktop/bridge.ts:536
#: packages/app-desktop/gui/ConfigScreen/ButtonBar.tsx:34
#: packages/app-desktop/gui/DialogButtonRow.tsx:71
#: packages/app-desktop/gui/MenuBar.tsx:616
@@ -3968,6 +3969,11 @@ msgstr ""
msgid "Open it"
msgstr "開啟"
#: packages/app-desktop/bridge.ts:537
#, fuzzy
msgid "Open log"
msgstr "開啟 %s"
#: packages/app-desktop/gui/WindowCommandsAndDialogs/commands/openPdfViewer.ts:7
msgid "Open PDF viewer"
msgstr "開啟 PDF 查看器"
@@ -4410,7 +4416,7 @@ msgstr "上傳記事..."
msgid "Publish Notes"
msgstr "發布記事"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:175
#: packages/lib/utils/joplinCloud/index.ts:153
msgid "Publish notes to the internet"
msgstr "將記事發布至網路上"
@@ -4421,7 +4427,7 @@ msgid "QR Code"
msgstr "程式碼"
#: packages/app-desktop/app.ts:205
#: packages/app-desktop/ElectronAppWrapper.ts:151
#: packages/app-desktop/ElectronAppWrapper.ts:161
#: packages/app-desktop/gui/KeymapConfig/utils/getLabel.ts:16
#: packages/app-desktop/gui/MenuBar.tsx:429
msgid "Quit"
@@ -4484,7 +4490,7 @@ msgstr "延伸模組推薦"
msgid "Record audio"
msgstr ""
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:70
#: packages/app-mobile/components/screens/Notes/NewNoteButton.tsx:73
#, fuzzy
msgid "Recording"
msgstr "標題"
@@ -4632,7 +4638,7 @@ msgstr "資源:%d。"
msgid "Restart and upgrade"
msgstr "重新啟動並升級"
#: packages/app-desktop/ElectronAppWrapper.ts:158
#: packages/app-desktop/ElectronAppWrapper.ts:168
msgid "Restart in safe mode"
msgstr "以安全模式重新啟動"
@@ -4829,7 +4835,7 @@ msgstr "在所有記事中搜尋"
msgid "Search in current note"
msgstr "在目前記事中搜尋"
#: packages/app-desktop/plugins/GotoAnything.tsx:703
#: packages/app-desktop/plugins/GotoAnything.tsx:695
#, fuzzy
msgid "Search results"
msgstr "查無資料"
@@ -4863,7 +4869,7 @@ msgstr "完整更新內容"
msgid "See the pre-release page for more details: %s"
msgstr "詳細訊息請參考發行前測試版頁面: %s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:205
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:206
#: packages/app-mobile/components/NoteItem.tsx:151
msgid "Select"
msgstr "選擇"
@@ -5078,6 +5084,11 @@ msgstr "側邊選單已打開"
msgid "Sidebar"
msgstr "側邊欄"
#: packages/app-desktop/gui/JoplinCloudSignUpCallToAction.tsx:15
#, fuzzy
msgid "Sign up to Joplin Cloud"
msgstr "登入Joplin Cloud."
#: packages/app-desktop/gui/ResourceScreen.tsx:111
msgid "Size"
msgstr "大小"
@@ -5399,7 +5410,7 @@ msgstr "同步到已指明的目標 (預設是 sync.target 的設定值)"
msgid "Sync Version: %s"
msgstr "同步版本:%s"
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:173
#: packages/app-desktop/gui/SyncWizard/Dialog.tsx:174
msgid "Sync your notes"
msgstr "同步您的筆記"
@@ -5527,7 +5538,7 @@ msgid ""
"again."
msgstr "無法刪除目前的設定檔。切換至不同的設定檔並重試。"
#: packages/app-desktop/bridge.ts:569
#: packages/app-desktop/bridge.ts:583
msgid ""
"The app is now going to close. Please relaunch it to complete the process."
msgstr "程式即將關閉,請重新啟動以完成此過程。"
@@ -5976,7 +5987,7 @@ msgid ""
msgstr "請按照以下步驟,設定 Joplin 與 Dropbox 同步所需的選項:"
#: packages/app-cli/app/command-sync.ts:110
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:84
#: packages/app-desktop/gui/JoplinCloudLoginScreen.tsx:85
#: packages/app-mobile/components/screens/JoplinCloudLoginScreen.tsx:153
msgid ""
"To allow Joplin to synchronise with Joplin Cloud, please login using this "
@@ -6164,7 +6175,7 @@ msgstr ""
msgid "Type `joplin help` for usage information."
msgstr "鍵入 `joplin help` 檢視使用說明。"
#: packages/app-desktop/plugins/GotoAnything.tsx:716
#: packages/app-desktop/plugins/GotoAnything.tsx:708
msgid ""
"Type a note title or part of its content to jump to it. Or type # followed "
"by a tag name, or @ followed by a notebook name. Or type : to search for "
@@ -6173,7 +6184,7 @@ msgstr ""
"輸入記事標題、部分記事內容、# 後輸入標籤名稱、@ 後輸入筆記本名稱等方式,可前"
"往相應搜尋結果。或者可輸入 : 以搜尋其他指令。"
#: packages/app-desktop/plugins/GotoAnything.tsx:714
#: packages/app-desktop/plugins/GotoAnything.tsx:706
#, fuzzy
msgid "Type a note title to search for it."
msgstr "輸入新標籤,或在清單中選擇"
@@ -6594,7 +6605,7 @@ msgstr ""
msgid "Whisper"
msgstr ""
#: packages/app-desktop/ElectronAppWrapper.ts:249
#: packages/app-desktop/ElectronAppWrapper.ts:259
msgid "Window unresponsive."
msgstr "視窗無回應。"
@@ -6617,12 +6628,12 @@ msgstr "是"
#: packages/app-desktop/services/plugins/UserWebviewDialogButtonBar.tsx:21
#: packages/app-mobile/components/screens/Note/Note.tsx:758
#: packages/lib/shim-init-node.ts:274 packages/lib/versionInfo.ts:92
#: packages/lib/shim-init-node.ts:278 packages/lib/versionInfo.ts:92
msgid "Yes"
msgstr "是"
#: packages/app-mobile/components/screens/Note/Note.tsx:757
#: packages/lib/shim-init-node.ts:273
#: packages/lib/shim-init-node.ts:277
msgid ""
"You are about to attach a large image (%dx%d pixels). Would you like to "
"resize it down to %d pixels before attaching it?"

View File

@@ -1,6 +1,6 @@
{
"name": "@joplin/tools",
"version": "3.3.0",
"version": "3.3.1",
"description": "Various tools for Joplin",
"main": "index.js",
"author": "Laurent Cozic",
@@ -21,9 +21,9 @@
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@joplin/lib": "~3.3",
"@joplin/renderer": "~3.3",
"@joplin/utils": "~3.3",
"@joplin/lib": "^3.3.1",
"@joplin/renderer": "^3.3.1",
"@joplin/utils": "^3.3.1",
"compare-versions": "6.1.1",
"dayjs": "1.11.12",
"execa": "4.1.0",
@@ -45,7 +45,7 @@
},
"devDependencies": {
"@docusaurus/plugin-sitemap": "2.4.3",
"@joplin/fork-htmlparser2": "^4.1.57",
"@joplin/fork-htmlparser2": "^4.1.58",
"@rmp135/sql-ts": "1.18.1",
"@types/fs-extra": "11.0.4",
"@types/jest": "29.5.12",

View File

@@ -149,6 +149,10 @@
"ios-v13.3.4": true,
"v3.3.7": true,
"android-v3.3.7": true,
"ios-v13.3.5": true
"ios-v13.3.5": true,
"android-v3.3.8": true,
"ios-v13.3.7": true,
"v3.3.9": true,
"v3.3.10": true
}
}

View File

@@ -4,7 +4,7 @@
"publishConfig": {
"access": "public"
},
"version": "1.0.61",
"version": "1.0.62",
"author": "Dom Christie",
"main": "lib/turndown-plugin-gfm.cjs.js",
"devDependencies": {

View File

@@ -1,7 +1,7 @@
{
"name": "@joplin/turndown",
"description": "A library that converts HTML to Markdown",
"version": "4.0.79",
"version": "4.0.80",
"author": "Dom Christie",
"main": "lib/turndown.cjs.js",
"publishConfig": {

View File

@@ -104,12 +104,21 @@ const getSecretKey = async (filePath: string) => {
// `secretKeyFilePath` must be the same for all the instances that can communicate with each others
export const startServer = async (startPort: number, secretKeyFilePath: string, messageHandler: IpcMessageHandler, options: StartServerOptions|null = null): Promise<IpcServer> => {
const port = await findAvailablePort(startPort);
const logger = options && options.logger ? options.logger : new Logger();
let port: number;
try {
port = await findAvailablePort(startPort);
} catch (error) {
logger.error(`Could not find available - using default: ${startPort}`, error);
port = startPort;
}
const secretKey = await getSecretKey(secretKeyFilePath);
return new Promise<IpcServer>((resolve, reject) => {
let promiseFulfilled = false;
try {
const server = createServer(async (req: IncomingMessage, res: ServerResponse) => {
let message: Message|null = null;
@@ -130,29 +139,43 @@ export const startServer = async (startPort: number, secretKeyFilePath: string,
});
server.on('error', error => {
if (logger) logger.error('Server error:', error);
logger.error('Server error:', error);
if (!promiseFulfilled) {
promiseFulfilled = true;
reject(error);
}
});
server.listen(port, 'localhost', () => {
resolve({
httpServer: server,
port,
secretKey,
});
if (!promiseFulfilled) {
promiseFulfilled = true;
resolve({
httpServer: server,
port,
secretKey,
});
}
});
} catch (error) {
reject(error);
if (!promiseFulfilled) {
promiseFulfilled = true;
reject(error);
} else {
logger.error('Server initialization error:', error);
}
}
});
};
export const stopServer = async (server: IpcServer) => {
export const stopServer = async (server: IpcServer|null): Promise<void> => {
if (!server) return;
return new Promise((resolve, reject) => {
server.httpServer.close((error) => {
if (error) {
reject(error);
} else {
resolve(null);
resolve();
}
});
});
@@ -169,9 +192,18 @@ export interface SendMessageOptions {
}
export const sendMessage = async (startPort: number, message: Message, options: SendMessageOptions|null = null) => {
const output: SendMessageOutput[] = [];
const ports = await findListenerPorts(startPort);
const logger = options && options.logger ? options.logger : new Logger();
const output: SendMessageOutput[] = [];
let ports: number[] = [];
try {
ports = await findListenerPorts(startPort);
} catch (error) {
logger.error(`Could not find listener ports - using default only: ${startPort}`, error);
ports.push(startPort);
}
const sendToSpecificPortOnly = !!options && !!options.sendToSpecificPortOnly;
for (const port of ports) {

View File

@@ -1,6 +1,6 @@
{
"name": "@joplin/utils",
"version": "3.3.0",
"version": "3.3.1",
"description": "Utilities for Joplin",
"repository": "https://github.com/laurent22/joplin/tree/dev/packages/utils",
"exports": {
@@ -33,7 +33,7 @@
"author": "",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@joplin/fork-htmlparser2": "^4.1.57",
"@joplin/fork-htmlparser2": "^4.1.58",
"async-mutex": "0.5.0",
"dayjs": "1.11.12",
"execa": "5.1.1",

View File

@@ -1,5 +1,9 @@
# Joplin Android Changelog
## [android-v3.3.9](https://github.com/laurent22/joplin/releases/tag/android-v3.3.9) (Pre-release) - 2025-06-09T17:11:04Z
- Fixed: Voice typing: Fix memory leak (#12402 by [@personalizedrefrigerator](https://github.com/personalizedrefrigerator))
## [android-v3.3.8](https://github.com/laurent22/joplin/releases/tag/android-v3.3.8) (Pre-release) - 2025-05-01T15:45:35Z
- New: Force quick action shortcuts to have the same size (#12195 by [@personalizedrefrigerator](https://github.com/personalizedrefrigerator))

View File

@@ -1,5 +1,15 @@
# Joplin Terminal App Changelog
## [cli-v3.3.1](https://github.com/laurent22/joplin/releases/tag/cli-v3.3.1) - 2025-05-01T21:18:35Z
- New: Add plural forms for notes, users, hours, minutes, days (#12171 by [@SilverGreen93](https://github.com/SilverGreen93))
- New: Add setting migration for ocr.enabled (ab86b95)
- Improved: Logging: Log less information at level `warn` when a decryption error occurs (#11771 by [@personalizedrefrigerator](https://github.com/personalizedrefrigerator))
- Improved: Move S3 sync target out of beta (798e1b8)
- Improved: Updated packages @adobe/css-tools (v4.4.1)
- Fixed: Adjust how items are queried by ID (#11734) (#11630 by [@personalizedrefrigerator](https://github.com/personalizedrefrigerator))
- Fixed: Restoring a note which was in a deleted notebook (#12016) (#11934)
## [cli-v3.2.3](https://github.com/laurent22/joplin/releases/tag/cli-v3.2.3) - 2025-01-16T01:14:35Z
- Improved: Updated packages @rollup/plugin-node-resolve (v15.2.4), adm-zip (v0.5.16)

View File

@@ -1,5 +1,13 @@
# Joplin Desktop Changelog
## [v3.3.10](https://github.com/laurent22/joplin/releases/tag/v3.3.10) - 2025-05-02T19:46:15Z
- Fixed: Notify user when they are using the Intel app on Apple Silicon ([#11989](https://github.com/laurent22/joplin/issues/11989))
## [v3.3.9](https://github.com/laurent22/joplin/releases/tag/v3.3.9) - 2025-05-01T21:02:12Z
- Fixed: Fix inserting note links using the mouse ([#12199](https://github.com/laurent22/joplin/issues/12199)) ([#12197](https://github.com/laurent22/joplin/issues/12197) by [@personalizedrefrigerator](https://github.com/personalizedrefrigerator))
## [v3.3.7](https://github.com/laurent22/joplin/releases/tag/v3.3.7) (Pre-release) - 2025-04-29T13:47:19Z
- New: Add plural forms for notes, users, hours, minutes, days ([#12171](https://github.com/laurent22/joplin/issues/12171) by [@SilverGreen93](https://github.com/SilverGreen93))

View File

@@ -1,6 +1,11 @@
# Joplin iOS Changelog
## [ios-v13.3.6](https://github.com/laurent22/joplin/releases/tag/ios-v13.3.6) - 2025-05-01T15:50:25Z
## [ios-v13.3.8](https://github.com/laurent22/joplin/releases/tag/ios-v13.3.8) - 2025-06-09T17:15:06Z
- Fixed: Fix error shown the first time a user attempts to record (#12328) (#12314 by [@personalizedrefrigerator](https://github.com/personalizedrefrigerator))
- Fixed: Fix sharing to Joplin (#12334) (#12331 by [@personalizedrefrigerator](https://github.com/personalizedrefrigerator))
## [ios-v13.3.7](https://github.com/laurent22/joplin/releases/tag/ios-v13.3.7) - 2025-05-01T16:06:30Z
- New: Force quick action shortcuts to have the same size (#12195 by [@personalizedrefrigerator](https://github.com/personalizedrefrigerator))
- Improved: Increase space between new note/to-do buttons (#12194 by [@personalizedrefrigerator](https://github.com/personalizedrefrigerator))

View File

@@ -41,17 +41,17 @@ If you would like to add a new language or for any other issue, please contact u
<img src="https://joplinapp.org/images/flags/country-4x3/es.png" width="16px"/> | Español (España) | [es_ES](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/es_ES.po) | [Éric Duarte](mailto:contacto@ericdq.com) | 94%
<img src="https://joplinapp.org/images/flags/esperanto.png" width="16px"/> | Esperanto | [eo](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/eo.po) | Marton Paulo | 18%
<img src="https://joplinapp.org/images/flags/country-4x3/fi.png" width="16px"/> | Finnish (Suomi) | [fi_FI](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/fi_FI.po) | mrkaato0 | 71%
<img src="https://joplinapp.org/images/flags/country-4x3/fr.png" width="16px"/> | Français (France) | [fr_FR](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/fr_FR.po) | [Ismaël Moret](mailto:lanesh4d0w@gmail.com) | 100%
<img src="https://joplinapp.org/images/flags/country-4x3/fr.png" width="16px"/> | Français (France) | [fr_FR](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/fr_FR.po) | [Ismaël Moret](mailto:lanesh4d0w@gmail.com) | 99%
<img src="https://joplinapp.org/images/flags/es/galicia.png" width="16px"/> | Galician (España) | [gl_ES](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/gl_ES.po) | [Marcos Lans](mailto:marcoslansgarza@gmail.com) | 21%
<img src="https://joplinapp.org/images/flags/country-4x3/id.png" width="16px"/> | Indonesian (Indonesia) | [id_ID](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/id_ID.po) | [Liffindra Angga Zaaldian](mailto:findrakecil@icloud.com) | 99%
<img src="https://joplinapp.org/images/flags/country-4x3/it.png" width="16px"/> | Italiano (Italia) | [it_IT](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/it_IT.po) | [Manuel Tassi](mailto:mannivuwiki@gmail.com) | 87%
<img src="https://joplinapp.org/images/flags/country-4x3/it.png" width="16px"/> | Italiano (Italia) | [it_IT](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/it_IT.po) | [Manuel Tassi](mailto:mannivuwiki@gmail.com) | 86%
<img src="https://joplinapp.org/images/flags/country-4x3/hu.png" width="16px"/> | Magyar (Magyarország) | [hu_HU](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/hu_HU.po) | [summoner](mailto:summoner@vivaldi.net) | 99%
<img src="https://joplinapp.org/images/flags/country-4x3/be.png" width="16px"/> | Nederlands (België, Belgique, Belgien) | [nl_BE](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/nl_BE.po) | MietVdh | 94%
<img src="https://joplinapp.org/images/flags/country-4x3/nl.png" width="16px"/> | Nederlands (Nederland) | [nl_NL](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/nl_NL.po) | [MHolkamp](mailto:mholkamp@users.noreply.github.com) | 73%
<img src="https://joplinapp.org/images/flags/country-4x3/ir.png" width="16px"/> | Persian | [fa](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/fa.po) | [Mohammad Ashouri](mailto:mimeyn.git@gmail.com) | 86%
<img src="https://joplinapp.org/images/flags/country-4x3/pl.png" width="16px"/> | Polski (Polska) | [pl_PL](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/pl_PL.po) | [X3NO](mailto:X3NO@disroot.org) | 81%
<img src="https://joplinapp.org/images/flags/country-4x3/br.png" width="16px"/> | Português (Brasil) | [pt_BR](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/pt_BR.po) | [Renato Nunes Bastos](mailto:rnbastos@gmail.com) | 86%
<img src="https://joplinapp.org/images/flags/country-4x3/pt.png" width="16px"/> | Português (Portugal) | [pt_PT](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/pt_PT.po) | [João Duarte](mailto:jduar@proton.me) | 87%
<img src="https://joplinapp.org/images/flags/country-4x3/pt.png" width="16px"/> | Português (Portugal) | [pt_PT](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/pt_PT.po) | [João Duarte](mailto:jduar@proton.me) | 86%
<img src="https://joplinapp.org/images/flags/country-4x3/md.png" width="16px"/> | Română (Moldova, Молдавия) | [ro_MD](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/ro_MD.po) | [Mihai Vasiliu](mailto:mihai.vasiliu.93@gmail.com) | 99%
<img src="https://joplinapp.org/images/flags/country-4x3/ro.png" width="16px"/> | Română (România) | [ro_RO](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/ro_RO.po) | [Mihai Vasiliu](mailto:mihai.vasiliu.93@gmail.com) | 99%
<img src="https://joplinapp.org/images/flags/country-4x3/si.png" width="16px"/> | Slovenian (Slovenija) | [sl_SI](https://github.com/laurent22/joplin/blob/dev/packages/tools/locales/sl_SI.po) | [Martin Korelič](mailto:martin.korelic@protonmail.com) | 57%

View File

@@ -10,7 +10,7 @@ Your download of <span class="downloaded-filename">Joplin</span> is in progress.
Access your notes on Windows, macOS or Linux.
<!-- DESKTOP-DOWNLOAD-LINKS --><a class="download-link-windows" href='https://objects.joplinusercontent.com/v3.2.13/Joplin-Setup-3.2.13.exe?source=JoplinWebsite&type=New'><img alt='Get it on Windows' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeWindows.png'/></a> <a class="download-link-macOs" href='https://objects.joplinusercontent.com/v3.2.13/Joplin-3.2.13.dmg?source=JoplinWebsite&type=New'><img alt='Get it on macOS' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeMacOS.png'/></a> <a class="download-link-macOsM1" href='https://objects.joplinusercontent.com/v3.2.13/Joplin-3.2.13-arm64.DMG?source=JoplinWebsite&type=New'><img alt='Get it on macOS M1 (Silicon)' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeMacOSM1.png'/></a> <a class="download-link-linux" href='https://objects.joplinusercontent.com/v3.2.13/Joplin-3.2.13.AppImage?source=JoplinWebsite&type=New'><img alt='Get it on Linux' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeLinux.png'/></a><!-- DESKTOP-DOWNLOAD-LINKS -->
<!-- DESKTOP-DOWNLOAD-LINKS --><a class="download-link-windows" href='https://objects.joplinusercontent.com/v3.3.10/Joplin-Setup-3.3.10.exe?source=JoplinWebsite&type=New'><img alt='Get it on Windows' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeWindows.png'/></a> <a class="download-link-macOs" href='https://objects.joplinusercontent.com/v3.3.10/Joplin-3.3.10.dmg?source=JoplinWebsite&type=New'><img alt='Get it on macOS' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeMacOS.png'/></a> <a class="download-link-macOsM1" href='https://objects.joplinusercontent.com/v3.3.10/Joplin-3.3.10-arm64.DMG?source=JoplinWebsite&type=New'><img alt='Get it on macOS M1 (Silicon)' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeMacOSM1.png'/></a> <a class="download-link-linux" href='https://objects.joplinusercontent.com/v3.3.10/Joplin-3.3.10.AppImage?source=JoplinWebsite&type=New'><img alt='Get it on Linux' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeLinux.png'/></a><!-- DESKTOP-DOWNLOAD-LINKS -->
</div>

View File

@@ -10,12 +10,12 @@ Three types of applications are available: for **desktop** (Windows, macOS and L
Operating System | Download
---|---
Windows (32 and 64-bit) | <a href='https://objects.joplinusercontent.com/v3.2.13/Joplin-Setup-3.2.13.exe?source=JoplinWebsite&type=New'><img alt='Get it on Windows' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeWindows.png'/></a>
macOS | <a href='https://objects.joplinusercontent.com/v3.2.13/Joplin-3.2.13.dmg?source=JoplinWebsite&type=New'><img alt='Get it on macOS' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeMacOS.png'/></a>
macOS M1 (Apple Silicon) | <a href='https://objects.joplinusercontent.com/v3.2.13/Joplin-3.2.13-arm64.DMG?source=JoplinWebsite&type=New'><img alt='Get it on macOS M1 (Silicon)' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeMacOSM1.png'/></a>
Linux | <a href='https://objects.joplinusercontent.com/v3.2.13/Joplin-3.2.13.AppImage?source=JoplinWebsite&type=New'><img alt='Get it on Linux' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeLinux.png'/></a>
Windows (32 and 64-bit) | <a href='https://objects.joplinusercontent.com/v3.3.10/Joplin-Setup-3.3.10.exe?source=JoplinWebsite&type=New'><img alt='Get it on Windows' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeWindows.png'/></a>
macOS | <a href='https://objects.joplinusercontent.com/v3.3.10/Joplin-3.3.10.dmg?source=JoplinWebsite&type=New'><img alt='Get it on macOS' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeMacOS.png'/></a>
macOS M1 (Apple Silicon) | <a href='https://objects.joplinusercontent.com/v3.3.10/Joplin-3.3.10-arm64.DMG?source=JoplinWebsite&type=New'><img alt='Get it on macOS M1 (Silicon)' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeMacOSM1.png'/></a>
Linux | <a href='https://objects.joplinusercontent.com/v3.3.10/Joplin-3.3.10.AppImage?source=JoplinWebsite&type=New'><img alt='Get it on Linux' width="134px" src='https://raw.githubusercontent.com/laurent22/joplin/dev/Assets/WebsiteAssets/images/BadgeLinux.png'/></a>
**On Windows**, you may also use the <a href='https://objects.joplinusercontent.com/v3.2.13/JoplinPortable.exe?source=JoplinWebsite&type=New'>Portable version</a>. The [portable application](https://en.wikipedia.org/wiki/Portable_application) allows installing the software on a portable device such as a USB key. Simply copy the file JoplinPortable.exe in any directory on that USB key ; the application will then create a directory called "JoplinProfile" next to the executable file.
**On Windows**, you may also use the <a href='https://objects.joplinusercontent.com/v3.3.10/JoplinPortable.exe?source=JoplinWebsite&type=New'>Portable version</a>. The [portable application](https://en.wikipedia.org/wiki/Portable_application) allows installing the software on a portable device such as a USB key. Simply copy the file JoplinPortable.exe in any directory on that USB key ; the application will then create a directory called "JoplinProfile" next to the executable file.
**On Linux**, the recommended way is to use the following installation script as it will handle the desktop icon too:

102
yarn.lock
View File

@@ -8307,6 +8307,7 @@ __metadata:
gulp: 4.0.2
highlight.js: 11.10.0
immer: 9.0.21
is-apple-silicon: 1.1.2
jest: 29.7.0
jest-environment-jsdom: 29.7.0
js-sha512: 0.9.0
@@ -8534,7 +8535,7 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/fork-htmlparser2@^4.1.57, @joplin/fork-htmlparser2@workspace:packages/fork-htmlparser2":
"@joplin/fork-htmlparser2@^4.1.58, @joplin/fork-htmlparser2@workspace:packages/fork-htmlparser2":
version: 0.0.0-use.local
resolution: "@joplin/fork-htmlparser2@workspace:packages/fork-htmlparser2"
dependencies:
@@ -8555,7 +8556,7 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/fork-sax@^1.2.61, @joplin/fork-sax@workspace:packages/fork-sax":
"@joplin/fork-sax@^1.2.62, @joplin/fork-sax@workspace:packages/fork-sax":
version: 0.0.0-use.local
resolution: "@joplin/fork-sax@workspace:packages/fork-sax"
dependencies:
@@ -8564,7 +8565,7 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/fork-uslug@^2.0.0, @joplin/fork-uslug@workspace:packages/fork-uslug":
"@joplin/fork-uslug@^2.0.0, @joplin/fork-uslug@^2.0.1, @joplin/fork-uslug@workspace:packages/fork-uslug":
version: 0.0.0-use.local
resolution: "@joplin/fork-uslug@workspace:packages/fork-uslug"
dependencies:
@@ -8576,12 +8577,12 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/htmlpack@workspace:packages/htmlpack, @joplin/htmlpack@~3.3":
"@joplin/htmlpack@^3.3.1, @joplin/htmlpack@workspace:packages/htmlpack":
version: 0.0.0-use.local
resolution: "@joplin/htmlpack@workspace:packages/htmlpack"
dependencies:
"@adobe/css-tools": 4.4.1
"@joplin/fork-htmlparser2": ^4.1.57
"@joplin/fork-htmlparser2": ^4.1.58
"@types/fs-extra": 11.0.4
datauri: 4.1.0
fs-extra: 11.2.0
@@ -8589,22 +8590,22 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/lib@workspace:packages/lib, @joplin/lib@~3.3":
"@joplin/lib@^3.3.1, @joplin/lib@workspace:packages/lib, @joplin/lib@~3.3":
version: 0.0.0-use.local
resolution: "@joplin/lib@workspace:packages/lib"
dependencies:
"@adobe/css-tools": 4.4.1
"@aws-sdk/client-s3": 3.296.0
"@aws-sdk/s3-request-presigner": 3.296.0
"@joplin/fork-htmlparser2": ^4.1.57
"@joplin/fork-sax": ^1.2.61
"@joplin/fork-uslug": ^2.0.0
"@joplin/htmlpack": ~3.3
"@joplin/onenote-converter": ~3.3
"@joplin/renderer": ~3.3
"@joplin/turndown": ^4.0.79
"@joplin/turndown-plugin-gfm": ^1.0.61
"@joplin/utils": ~3.3
"@joplin/fork-htmlparser2": ^4.1.58
"@joplin/fork-sax": ^1.2.62
"@joplin/fork-uslug": ^2.0.1
"@joplin/htmlpack": ^3.3.1
"@joplin/onenote-converter": ^3.3.1
"@joplin/renderer": ^3.3.1
"@joplin/turndown": ^4.0.80
"@joplin/turndown-plugin-gfm": ^1.0.62
"@joplin/utils": ^3.3.1
"@testing-library/react-hooks": 8.0.1
"@types/adm-zip": 0.5.7
"@types/fs-extra": 11.0.4
@@ -8681,7 +8682,7 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/onenote-converter@workspace:packages/onenote-converter, @joplin/onenote-converter@~3.3":
"@joplin/onenote-converter@^3.3.1, @joplin/onenote-converter@workspace:packages/onenote-converter":
version: 0.0.0-use.local
resolution: "@joplin/onenote-converter@workspace:packages/onenote-converter"
dependencies:
@@ -8725,9 +8726,9 @@ __metadata:
version: 0.0.0-use.local
resolution: "@joplin/plugin-repo-cli@workspace:packages/plugin-repo-cli"
dependencies:
"@joplin/lib": ~3.3
"@joplin/tools": ~3.3
"@joplin/utils": ~3.3
"@joplin/lib": ^3.3.1
"@joplin/tools": ^3.3.1
"@joplin/utils": ^3.3.1
"@types/fs-extra": 11.0.4
"@types/jest": 29.5.12
"@types/node": 18.19.67
@@ -8776,13 +8777,13 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/renderer@workspace:packages/renderer, @joplin/renderer@~3.3":
"@joplin/renderer@^3.3.1, @joplin/renderer@workspace:packages/renderer, @joplin/renderer@~3.3":
version: 0.0.0-use.local
resolution: "@joplin/renderer@workspace:packages/renderer"
dependencies:
"@joplin/fork-htmlparser2": ^4.1.57
"@joplin/fork-uslug": ^2.0.0
"@joplin/utils": ~3.3
"@joplin/fork-htmlparser2": ^4.1.58
"@joplin/fork-uslug": ^2.0.1
"@joplin/utils": ^3.3.1
"@types/jest": 29.5.12
"@types/markdown-it": 13.0.9
"@types/node": 18.19.67
@@ -8879,15 +8880,15 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/tools@workspace:packages/tools, @joplin/tools@~3.3":
"@joplin/tools@^3.3.1, @joplin/tools@workspace:packages/tools, @joplin/tools@~3.3":
version: 0.0.0-use.local
resolution: "@joplin/tools@workspace:packages/tools"
dependencies:
"@docusaurus/plugin-sitemap": 2.4.3
"@joplin/fork-htmlparser2": ^4.1.57
"@joplin/lib": ~3.3
"@joplin/renderer": ~3.3
"@joplin/utils": ~3.3
"@joplin/fork-htmlparser2": ^4.1.58
"@joplin/lib": ^3.3.1
"@joplin/renderer": ^3.3.1
"@joplin/utils": ^3.3.1
"@rmp135/sql-ts": 1.18.1
"@types/fs-extra": 11.0.4
"@types/jest": 29.5.12
@@ -8929,7 +8930,7 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/turndown-plugin-gfm@^1.0.61, @joplin/turndown-plugin-gfm@workspace:packages/turndown-plugin-gfm":
"@joplin/turndown-plugin-gfm@^1.0.62, @joplin/turndown-plugin-gfm@workspace:packages/turndown-plugin-gfm":
version: 0.0.0-use.local
resolution: "@joplin/turndown-plugin-gfm@workspace:packages/turndown-plugin-gfm"
dependencies:
@@ -8941,7 +8942,7 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/turndown@^4.0.79, @joplin/turndown@workspace:packages/turndown":
"@joplin/turndown@^4.0.80, @joplin/turndown@workspace:packages/turndown":
version: 0.0.0-use.local
resolution: "@joplin/turndown@workspace:packages/turndown"
dependencies:
@@ -8958,26 +8959,11 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/utils@npm:~2.12":
version: 2.12.1
resolution: "@joplin/utils@npm:2.12.1"
dependencies:
async-mutex: 0.4.0
execa: 5.1.1
fs-extra: 11.1.1
glob: 10.3.3
moment: 2.29.4
node-fetch: 2.6.7
sprintf-js: 1.1.2
checksum: dab823a7bb5d6d13c3d85c67dc669861aa0cdb89cee28cddceb280b43a235d7e058813b9724468b58532489fde25e0857098afe322286bd914e6096d1dc7ece7
languageName: node
linkType: hard
"@joplin/utils@workspace:packages/utils, @joplin/utils@~3.3":
"@joplin/utils@^3.3.1, @joplin/utils@workspace:packages/utils, @joplin/utils@~3.3":
version: 0.0.0-use.local
resolution: "@joplin/utils@workspace:packages/utils"
dependencies:
"@joplin/fork-htmlparser2": ^4.1.57
"@joplin/fork-htmlparser2": ^4.1.58
"@types/fs-extra": 11.0.4
"@types/jest": 29.5.12
"@types/markdown-it": 13.0.9
@@ -8999,6 +8985,21 @@ __metadata:
languageName: unknown
linkType: soft
"@joplin/utils@npm:~2.12":
version: 2.12.1
resolution: "@joplin/utils@npm:2.12.1"
dependencies:
async-mutex: 0.4.0
execa: 5.1.1
fs-extra: 11.1.1
glob: 10.3.3
moment: 2.29.4
node-fetch: 2.6.7
sprintf-js: 1.1.2
checksum: dab823a7bb5d6d13c3d85c67dc669861aa0cdb89cee28cddceb280b43a235d7e058813b9724468b58532489fde25e0857098afe322286bd914e6096d1dc7ece7
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.0":
version: 0.3.3
resolution: "@jridgewell/gen-mapping@npm:0.3.3"
@@ -29104,6 +29105,13 @@ __metadata:
languageName: node
linkType: hard
"is-apple-silicon@npm:1.1.2":
version: 1.1.2
resolution: "is-apple-silicon@npm:1.1.2"
checksum: a4b4a706c3ea3deb9b473d56e5235e46d465ae64ced528b738a34011ecf15fbf36ac5864cfd6ed56bb193e9262f300287a92175badb5df65c7f0549c4bf9de22
languageName: node
linkType: hard
"is-arguments@npm:^1.0.4":
version: 1.1.1
resolution: "is-arguments@npm:1.1.1"