-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(l10n): Updates catalog templates (POT files fetched automatical…
…ly by transifex) Signed-off-by: GitHub <[email protected]>
- Loading branch information
1 parent
5657a7f
commit 7a81f8b
Showing
96 changed files
with
2,774 additions
and
636 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-365 Bytes
(93%)
user_manual/locale/source/.doctrees/external_storage/external_storage.doctree
Binary file not shown.
Binary file modified
BIN
+16 Bytes
(100%)
user_manual/locale/source/.doctrees/external_storage/index.doctree
Binary file not shown.
Binary file modified
BIN
-7.88 KB
(94%)
user_manual/locale/source/.doctrees/files/access_webdav.doctree
Binary file not shown.
Binary file modified
BIN
-1.38 KB
(96%)
user_manual/locale/source/.doctrees/files/access_webgui.doctree
Binary file not shown.
Binary file modified
BIN
-1.18 KB
(92%)
user_manual/locale/source/.doctrees/files/deleted_file_management.doctree
Binary file not shown.
Binary file modified
BIN
+582 Bytes
(110%)
user_manual/locale/source/.doctrees/files/desktop_mobile_sync.doctree
Binary file not shown.
Binary file modified
BIN
-1.15 KB
(96%)
user_manual/locale/source/.doctrees/files/encrypting_files.doctree
Binary file not shown.
Binary file modified
BIN
-858 Bytes
(93%)
user_manual/locale/source/.doctrees/files/federated_cloud_sharing.doctree
Binary file not shown.
Binary file modified
BIN
-21 Bytes
(100%)
user_manual/locale/source/.doctrees/files/file_drop.doctree
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-124 Bytes
(98%)
user_manual/locale/source/.doctrees/files/large_file_upload.doctree
Binary file not shown.
Binary file modified
BIN
+658 Bytes
(110%)
user_manual/locale/source/.doctrees/files/projects.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-286 Bytes
(98%)
user_manual/locale/source/.doctrees/files/transfer_ownership.doctree
Binary file not shown.
Binary file modified
BIN
-1.1 KB
(90%)
user_manual/locale/source/.doctrees/files/version_control.doctree
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+5.68 KB
(110%)
user_manual/locale/source/.doctrees/groupware/calendar.doctree
Binary file not shown.
Binary file modified
BIN
+3.66 KB
(110%)
user_manual/locale/source/.doctrees/groupware/contacts.doctree
Binary file not shown.
Binary file modified
BIN
-392 Bytes
(93%)
user_manual/locale/source/.doctrees/groupware/index.doctree
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-523 Bytes
(98%)
user_manual/locale/source/.doctrees/groupware/sync_android.doctree
Binary file not shown.
Binary file modified
BIN
-553 Bytes
(95%)
user_manual/locale/source/.doctrees/groupware/sync_gnome.doctree
Binary file not shown.
Binary file modified
BIN
+859 Bytes
(110%)
user_manual/locale/source/.doctrees/groupware/sync_ios.doctree
Binary file not shown.
Binary file modified
BIN
-249 Bytes
(99%)
user_manual/locale/source/.doctrees/groupware/sync_kde.doctree
Binary file not shown.
Binary file modified
BIN
-966 Bytes
(94%)
user_manual/locale/source/.doctrees/groupware/sync_osx.doctree
Binary file not shown.
Binary file modified
BIN
-12.9 KB
(57%)
user_manual/locale/source/.doctrees/groupware/sync_thunderbird.doctree
Binary file not shown.
Binary file modified
BIN
-219 Bytes
(99%)
user_manual/locale/source/.doctrees/groupware/sync_windows10.doctree
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-218 Bytes
(98%)
user_manual/locale/source/.doctrees/session_management.doctree
Binary file not shown.
Binary file modified
BIN
+15.4 KB
(170%)
user_manual/locale/source/.doctrees/talk/advanced_features.doctree
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-635 Bytes
(95%)
user_manual/locale/source/.doctrees/talk/join_a_call_or_chat_as_guest.doctree
Binary file not shown.
Binary file modified
BIN
+7.92 KB
(130%)
user_manual/locale/source/.doctrees/talk/talk_basics.doctree
Binary file not shown.
Binary file modified
BIN
-1.88 KB
(92%)
user_manual/locale/source/.doctrees/universal_access.doctree
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-783 Bytes
(96%)
user_manual/locale/source/.doctrees/userpreferences.doctree
Binary file not shown.
Binary file not shown.
123 changes: 123 additions & 0 deletions
123
user_manual/locale/source/_static/_sphinx_javascript_frameworks_compat.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
/* Compatability shim for jQuery and underscores.js. | ||
* | ||
* Copyright Sphinx contributors | ||
* Released under the two clause BSD licence | ||
*/ | ||
|
||
/** | ||
* small helper function to urldecode strings | ||
* | ||
* See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/decodeURIComponent#Decoding_query_parameters_from_a_URL | ||
*/ | ||
jQuery.urldecode = function(x) { | ||
if (!x) { | ||
return x | ||
} | ||
return decodeURIComponent(x.replace(/\+/g, ' ')); | ||
}; | ||
|
||
/** | ||
* small helper function to urlencode strings | ||
*/ | ||
jQuery.urlencode = encodeURIComponent; | ||
|
||
/** | ||
* This function returns the parsed url parameters of the | ||
* current request. Multiple values per key are supported, | ||
* it will always return arrays of strings for the value parts. | ||
*/ | ||
jQuery.getQueryParameters = function(s) { | ||
if (typeof s === 'undefined') | ||
s = document.location.search; | ||
var parts = s.substr(s.indexOf('?') + 1).split('&'); | ||
var result = {}; | ||
for (var i = 0; i < parts.length; i++) { | ||
var tmp = parts[i].split('=', 2); | ||
var key = jQuery.urldecode(tmp[0]); | ||
var value = jQuery.urldecode(tmp[1]); | ||
if (key in result) | ||
result[key].push(value); | ||
else | ||
result[key] = [value]; | ||
} | ||
return result; | ||
}; | ||
|
||
/** | ||
* highlight a given string on a jquery object by wrapping it in | ||
* span elements with the given class name. | ||
*/ | ||
jQuery.fn.highlightText = function(text, className) { | ||
function highlight(node, addItems) { | ||
if (node.nodeType === 3) { | ||
var val = node.nodeValue; | ||
var pos = val.toLowerCase().indexOf(text); | ||
if (pos >= 0 && | ||
!jQuery(node.parentNode).hasClass(className) && | ||
!jQuery(node.parentNode).hasClass("nohighlight")) { | ||
var span; | ||
var isInSVG = jQuery(node).closest("body, svg, foreignObject").is("svg"); | ||
if (isInSVG) { | ||
span = document.createElementNS("http://www.w3.org/2000/svg", "tspan"); | ||
} else { | ||
span = document.createElement("span"); | ||
span.className = className; | ||
} | ||
span.appendChild(document.createTextNode(val.substr(pos, text.length))); | ||
node.parentNode.insertBefore(span, node.parentNode.insertBefore( | ||
document.createTextNode(val.substr(pos + text.length)), | ||
node.nextSibling)); | ||
node.nodeValue = val.substr(0, pos); | ||
if (isInSVG) { | ||
var rect = document.createElementNS("http://www.w3.org/2000/svg", "rect"); | ||
var bbox = node.parentElement.getBBox(); | ||
rect.x.baseVal.value = bbox.x; | ||
rect.y.baseVal.value = bbox.y; | ||
rect.width.baseVal.value = bbox.width; | ||
rect.height.baseVal.value = bbox.height; | ||
rect.setAttribute('class', className); | ||
addItems.push({ | ||
"parent": node.parentNode, | ||
"target": rect}); | ||
} | ||
} | ||
} | ||
else if (!jQuery(node).is("button, select, textarea")) { | ||
jQuery.each(node.childNodes, function() { | ||
highlight(this, addItems); | ||
}); | ||
} | ||
} | ||
var addItems = []; | ||
var result = this.each(function() { | ||
highlight(this, addItems); | ||
}); | ||
for (var i = 0; i < addItems.length; ++i) { | ||
jQuery(addItems[i].parent).before(addItems[i].target); | ||
} | ||
return result; | ||
}; | ||
|
||
/* | ||
* backward compatibility for jQuery.browser | ||
* This will be supported until firefox bug is fixed. | ||
*/ | ||
if (!jQuery.browser) { | ||
jQuery.uaMatch = function(ua) { | ||
ua = ua.toLowerCase(); | ||
|
||
var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || | ||
/(webkit)[ \/]([\w.]+)/.exec(ua) || | ||
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || | ||
/(msie) ([\w.]+)/.exec(ua) || | ||
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || | ||
[]; | ||
|
||
return { | ||
browser: match[ 1 ] || "", | ||
version: match[ 2 ] || "0" | ||
}; | ||
}; | ||
jQuery.browser = {}; | ||
jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# SOME DESCRIPTIVE TITLE. | ||
# Copyright (C) 2023 Nextcloud GmbH | ||
# Copyright (C) 2025 Nextcloud GmbH | ||
# This file is distributed under the same license as the Nextcloud latest User Manual package. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||
# | ||
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: Nextcloud latest User Manual latest\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2023-03-01 16:07+0000\n" | ||
"POT-Creation-Date: 2025-02-12 11:58+0000\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
# SOME DESCRIPTIVE TITLE. | ||
# Copyright (C) 2025 Nextcloud GmbH | ||
# This file is distributed under the same license as the Nextcloud latest User Manual package. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Nextcloud latest User Manual latest\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2025-02-12 11:58+0000\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
|
||
#: ../../desktop/autoupdate.rst:3 | ||
msgid "The Automatic Updater" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:5 | ||
msgid "The Automatic Updater ensures that you always have the latest features and bug fixes for your Nextcloud synchronization client." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:8 | ||
msgid "The Automatic Updater updates only on macOS and Windows computers; Linux users only need to use their normal package managers. However, on Linux systems the Updater will check for updates and notify you when a new version is available." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:14 | ||
msgid "Basic Workflow" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:16 | ||
msgid "The following sections describe how to use the Automatic Updater on different operating systems." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:20 | ||
msgid "Windows" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:22 | ||
msgid "The Nextcloud client checks for updates and downloads them when available. You can view the update status under ``Settings -> General -> Updates`` in the Nextcloud client." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:26 | ||
msgid "If an update is available, and has been successfully downloaded, the Nextcloud client starts a silent update prior to its next launch and then restarts itself. Should the silent update fail, the client offers a manual download." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:30 | ||
msgid "Administrative privileges are required to perform the update." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:33 | ||
msgid "macOS" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:35 | ||
msgid "The macOS client has an autoupdater which uses the Sparkle framework. This autoupdater is bundled into the client App Bundle and checks for updates on launch, notifying you if an update is available. This will present a pop-up that can let you automatically download and install the latest client update with one click." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:41 | ||
msgid "In versions of the client where the Sparkle-based autoupdater is not bundled, a clickable notification will appear informing of an update being available. Upon clicking on said notification, the download page for the latest version of the client will be opened in the system's web browser." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:46 | ||
msgid "Like on other systems, you can view the update status under ``Settings -> General -> Updates`` in the Nextcloud client." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:50 | ||
msgid "Linux" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:52 | ||
msgid "Linux distributions provide their own update tools, so Nextcloud clients that use the Linux operating system do not perform any updates on their own. The client will inform you (``Settings -> General -> Updates``) when an update is available." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:58 | ||
msgid "Preventing Automatic Updates" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:60 | ||
msgid "In controlled environments, such as companies or universities, you might not want to enable the auto-update mechanism, as it interferes with controlled deployment tools and policies. To address this case, it is possible to disable the auto-updater entirely. The following sections describe how to disable the auto-update mechanism for different operating systems." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:67 | ||
msgid "Preventing Automatic Updates in Windows Environments" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:69 | ||
msgid "Users may disable automatic updates by adding this line to the [General] section of their ``nextcloud.cfg`` files::" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:74 | ||
msgid "Windows administrators have more options for preventing automatic updates in Windows environments by using one of two methods. The first method allows users to override the automatic update check mechanism, whereas the second method prevents any manual overrides." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:79 | ||
msgid "To prevent automatic updates, but allow manual overrides:" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:81 | ||
msgid "Edit these Registry keys:" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:83 | ||
msgid "(32-bit-Windows) ``HKEY_LOCAL_MACHINE\\Software\\Nextcloud\\Nextcloud``" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:84 | ||
msgid "(64-bit-Windows) ``HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Nextcloud\\Nextcloud``" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:86 | ||
#: ../../desktop/autoupdate.rst:101 | ||
msgid "Add the key ``skipUpdateCheck`` (of type DWORD)." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:88 | ||
#: ../../desktop/autoupdate.rst:103 | ||
msgid "Specify a value of ``1`` to the machine." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:90 | ||
msgid "To manually override this key, use the same value in ``HKEY_CURRENT_USER``." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:92 | ||
msgid "To prevent automatic updates and disallow manual overrides:" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:94 | ||
msgid "This is the preferred method of controlling the updater behavior using Group Policies." | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:97 | ||
msgid "Edit this Registry key:" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:99 | ||
msgid "``HKEY_LOCAL_MACHINE\\Software\\Policies\\Nextcloud GmbH\\Nextcloud``" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:105 | ||
msgid "branded clients have different key names" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:109 | ||
msgid "Preventing Automatic Updates in Linux Environments" | ||
msgstr "" | ||
|
||
#: ../../desktop/autoupdate.rst:111 | ||
msgid "Because the Linux client does not provide automatic updating functionality, there is no need to remove the automatic-update check. However, if you want to disable it edit your desktop client configuration file, ``$HOME/.config/Nextcloud/nextcloud.cfg``. Add this line to the [General] section::" | ||
msgstr "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
# SOME DESCRIPTIVE TITLE. | ||
# Copyright (C) 2025 Nextcloud GmbH | ||
# This file is distributed under the same license as the Nextcloud latest User Manual package. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | ||
# | ||
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Nextcloud latest User Manual latest\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2025-02-12 11:58+0000\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
|
||
#: ../../desktop/conflicts.rst:3 | ||
msgid "Conflicts" | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:6 | ||
msgid "Overview" | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:8 | ||
msgid "The Nextcloud desktop client uploads local changes and downloads remote changes. When a file has changed on the local side and on the remote between synchronization runs the client will be unable to resolve the situation on its own. It will create a conflict file with the local version, download the remote version and notify the user that a conflict occurred which needs attention." | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:15 | ||
msgid "Example" | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:17 | ||
msgid "Imagine there is a file called ``mydata.txt`` your synchronized folder. It has not changed for a while and contains the text \"contents\" locally and remotely. Now, nearly at the same time you update it locally to say \"local contents\" while the file on the server gets updated to contain \"remote contents\" by someone else." | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:22 | ||
msgid "When attempting to upload your local changes the desktop client will notice that the server version has also changed. It creates a conflict and you will now have two files on your local machine:" | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:26 | ||
msgid "``mydata.txt`` containing \"remote contents\"" | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:27 | ||
msgid "``mydata (conflicted copy 2018-04-10 093612).txt`` containing \"local contents\"" | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:29 | ||
msgid "In this situation the file ``mydata.txt`` has the remote changes (and will continue to be updated with further remote changes when they happen), but your local adjustments have not been sent to the server (unless the server enables conflict uploading, see below)." | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:34 | ||
msgid "The desktop client notifies you of this situation via system notifications, the system tray icon and a yellow \"unresolved conflicts\" badge in the account settings window. Clicking this badge shows a list that includes the unresolved conflicts and clicking one of them opens an explorer window pointing at the relevant file." | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:39 | ||
msgid "To resolve this conflict, open both files, compare the differences and copy your local changes from the \"conflicted copy\" file into the base file where applicable. In this example you might change ``mydata.txt`` to say \"local and remote contents\" and delete the file with \"conflicted copy\" in its name. With that, the conflict is resolved." | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:46 | ||
msgid "Uploading conflicts (experimental)" | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:48 | ||
msgid "By default the conflict file (the file with \"conflicted copy\" in its name that contains your local conflicting changes) is not uploaded to the server. The idea is that you, the author of the changes, are the best person for resolving the conflict and showing the conflict to other users might create confusion." | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:53 | ||
msgid "However, in some scenarios it makes a lot of sense to upload these conflicting changes such that local work can become visible even if the conflict won't be resolved immediately." | ||
msgstr "" | ||
|
||
#: ../../desktop/conflicts.rst:57 | ||
msgid "In the future there might be a server-wide switch for this behavior. For now it can already be tested by setting the environment variable ``OWNCLOUD_UPLOAD_CONFLICT_FILES=1``." | ||
msgstr "" |
Oops, something went wrong.