mirror of
https://github.com/haiwen/seahub.git
synced 2025-04-27 19:05:16 +00:00
Fix metadata text (#7321)
* 01 fix metadata long text * 02 no sub tag * 03 new view * update translation
This commit is contained in:
parent
2cc16bdf11
commit
c260d7f443
@ -1,11 +1,13 @@
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { I18nextProvider } from 'react-i18next';
|
||||
import { LongTextEditorDialog, getPreviewContent } from '@seafile/seafile-editor';
|
||||
import toaster from '../../../../components/toast';
|
||||
import LongtextAPI from './api';
|
||||
import { getValidLongTextValue, isLongTextValueExceedLimit } from '../../../utils/column';
|
||||
import { lang, serviceURL } from '../../../../utils/constants';
|
||||
import { LONG_TEXT_EXCEED_LIMIT_MESSAGE, LONG_TEXT_EXCEED_LIMIT_SUGGEST } from '../../../constants';
|
||||
import i18n from '../../../../_i18n/i18n-seafile-editor';
|
||||
|
||||
import './index.css';
|
||||
|
||||
@ -17,8 +19,11 @@ class LongTextEditor extends React.PureComponent {
|
||||
this.repoID = window.sfMetadataContext.getSetting('repoID');
|
||||
this.filePath = '/';
|
||||
const repoInfo = window.sfMetadataContext.getSetting('repoInfo');
|
||||
const { repo_name } = repoInfo;
|
||||
this.api = new LongtextAPI({ repoID: this.repoID, repoName: repo_name, server: serviceURL });
|
||||
this.api = new LongtextAPI({
|
||||
repoID: this.repoID,
|
||||
repoName: repoInfo.repo_name,
|
||||
server: serviceURL,
|
||||
});
|
||||
this.value = this.initEditorValue();
|
||||
}
|
||||
|
||||
@ -92,24 +97,24 @@ class LongTextEditor extends React.PureComponent {
|
||||
|
||||
render() {
|
||||
const { column, readOnly } = this.props;
|
||||
const headerName = column.name;
|
||||
|
||||
return (
|
||||
<LongTextEditorDialog
|
||||
className="sf-metadata-long-text-editor-dialog"
|
||||
lang={lang}
|
||||
readOnly={readOnly}
|
||||
headerName={headerName}
|
||||
value={this.value.text}
|
||||
autoSave={true}
|
||||
saveDelay={20 * 1000}
|
||||
isCheckBrowser={true}
|
||||
editorApi={this.api}
|
||||
// mathJaxSource={mediaUrl + 'js/mathjax/tex-svg.js'}
|
||||
onSaveEditorValue={this.onSaveEditorValue}
|
||||
onEditorValueChanged={this.onEditorValueChanged}
|
||||
onCloseEditorDialog={this.onCloseEditorDialog}
|
||||
/>
|
||||
<I18nextProvider i18n={ i18n }>
|
||||
<LongTextEditorDialog
|
||||
className="sf-metadata-long-text-editor-dialog"
|
||||
lang={lang}
|
||||
readOnly={readOnly}
|
||||
headerName={column.name}
|
||||
value={this.value.text}
|
||||
autoSave={true}
|
||||
saveDelay={20 * 1000}
|
||||
isCheckBrowser={true}
|
||||
editorApi={this.api}
|
||||
// mathJaxSource={mediaUrl + 'js/mathjax/tex-svg.js'}
|
||||
onSaveEditorValue={this.onSaveEditorValue}
|
||||
onEditorValueChanged={this.onEditorValueChanged}
|
||||
onCloseEditorDialog={this.onCloseEditorDialog}
|
||||
/>
|
||||
</I18nextProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -16,12 +16,11 @@ const LinkedTags = ({ isParentTags, linkedTags, switchToAddTagsPage, deleteLined
|
||||
<Button size="sm" color="primary" className="mr-2" onClick={switchToAddTagsPage}>{gettext('Link existing tags')}</Button>
|
||||
</div>
|
||||
<div className="sf-metadata-set-linked-tags-popover-body">
|
||||
{linkedTags.length === 0 && (
|
||||
<EmptyTip text={gettext(isParentTags ? 'No parent tag' : 'No sub tag')} />
|
||||
)}
|
||||
{linkedTags.length > 0 && (
|
||||
{linkedTags.length === 0 ?
|
||||
<EmptyTip text={isParentTags ? gettext('No parent tag') : gettext('No sub tag')} />
|
||||
:
|
||||
<Tags deletable tags={linkedTags} deleteTag={deleteLinedTag} />
|
||||
)}
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
@ -25,6 +25,7 @@ gettext('No login logs');
|
||||
gettext('No file update logs');
|
||||
gettext('No file access logs');
|
||||
gettext('Save Selected Items');
|
||||
gettext('New view');
|
||||
gettext('You have not shared any folders with other users yet. You can share a folder with other users by clicking the share icon to the right of a folder\'s name.');
|
||||
gettext('You have not created any share links yet. A share link can be used to share files and folders with anyone. You can create a share link for a file or folder by clicking the share icon to the right of its name.');
|
||||
gettext('You have not created any upload links yet. An upload link allows anyone to upload files to a folder or library. You can create an upload link for a folder or library by clicking the share icon to the right of its name.');
|
||||
|
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: malnaim <malnaim@safedecision.com.sa>, 2021,2023-2024\n"
|
||||
"Language-Team: Arabic (http://app.transifex.com/haiwen/seahub/language/ar/)\n"
|
||||
@ -865,8 +865,9 @@ msgid ""
|
||||
msgstr "أنت تمتلك %(nb_avatars)d شعارات, و الحد المسموح %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
msgstr "طول كلمة سر ويبداف -WebDav- يجب أن تكون أقل من 30 ."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
#: seahub/api2/endpoints/wikis.py:219
|
||||
@ -1536,11 +1537,11 @@ msgstr "فريق %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "الترخيص مرفوض"
|
||||
|
||||
@ -2533,8 +2534,8 @@ msgstr "مكتبات مشتركة"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3070,11 +3071,11 @@ msgstr "عطل"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "غير قادر على عرض الملف"
|
||||
|
||||
@ -3106,7 +3107,7 @@ msgstr "السجل التاريخي المحدد غير موجود"
|
||||
msgid "Unknown error"
|
||||
msgstr "خطأ غير معروف"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" غير موجود."
|
||||
@ -3133,9 +3134,9 @@ msgid "Bad upload link token."
|
||||
msgstr "رمز رابط تحميل غير صالح."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "الملف غير موجود"
|
||||
|
||||
@ -3163,49 +3164,49 @@ msgstr "الترميز الذي اخترته غير مناسب."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "ترميز الملف غير معروف"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "حجم الملف يتجاوز %s، ولا يمكن فتحه على الإنترنت."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "المكتبة مشفرة، و لا يمكن فتحها على الانترنت."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "خطأ عند تحضير صفحة معاينة ملف Office Online."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "خطأ عند تحضير صفحة معاينة ملف OnlyOffice."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "غير قادر على تنزيل الملف، مسار الملف غير صحيح"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "غير قادر على تنزيل الملف، مسار الملف خاطئ"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "غير قادر على تحميل الملف."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "شارك الرابط لـ%s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "غير قادر على تنزيل الملف"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr "الملف الأصلي غير موجود"
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: imwhatiam <imwhatiam123@gmail.com>, 2017\n"
|
||||
"Language-Team: Catalan (http://app.transifex.com/haiwen/seahub/language/ca/)\n"
|
||||
@ -864,7 +864,8 @@ msgid ""
|
||||
msgstr "Teniu %(nb_avatars)d avatars, i el màxim permès és de %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1515,11 +1516,11 @@ msgstr "L'equip %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "S'ha denegat l'accés "
|
||||
|
||||
@ -2500,8 +2501,8 @@ msgstr ""
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3037,11 +3038,11 @@ msgstr ""
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "No es pot visualitzar el fitxer"
|
||||
|
||||
@ -3073,7 +3074,7 @@ msgstr "L'historial que heu especificat no existeix"
|
||||
msgid "Unknown error"
|
||||
msgstr "Error desconegut"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr ""
|
||||
@ -3100,9 +3101,9 @@ msgid "Bad upload link token."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "El fitxer no existeix"
|
||||
|
||||
@ -3130,49 +3131,49 @@ msgstr "La codificació seleccionada no és vàlida."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Codificació de fitxer desconeguda"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "El fitxers és més gran de %s i no es pot obrir a la web."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Tomáš Kubalík <tkubalik@ifrog.cz>, 2017,2019-2020,2024\n"
|
||||
"Language-Team: Czech (http://app.transifex.com/haiwen/seahub/language/cs/)\n"
|
||||
@ -868,8 +868,9 @@ msgid ""
|
||||
msgstr "Již máte %(nb_avatars)d avatarů, maximální povolený počet avatarů je %(nb_max_avatars)d"
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
msgstr "Délka WebDav hesla by měla být kratší než 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
#: seahub/api2/endpoints/wikis.py:219
|
||||
@ -1529,11 +1530,11 @@ msgstr "Tým %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Přístup odepřen"
|
||||
|
||||
@ -2520,8 +2521,8 @@ msgstr "Sdílené knihovny"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3057,11 +3058,11 @@ msgstr "Zakázat"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Není možné prohlížet soubor"
|
||||
|
||||
@ -3093,7 +3094,7 @@ msgstr "Historie co jste specifikoval, neexistuje"
|
||||
msgid "Unknown error"
|
||||
msgstr "Neznámá chyba"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" neexistuje."
|
||||
@ -3120,9 +3121,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Chybný token upload odkazu"
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Soubor neexistuje"
|
||||
|
||||
@ -3150,49 +3151,49 @@ msgstr "Kódování co jste vybrali není správné."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Neznámé kódování souboru"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "velikost souboru předčila %s, není možné otevřít online. "
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "Knihovna je šifrována, není možné otevřít online."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Chyba při přípravě náhledu souboru v Office Online."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Chyba při přípravě náhledu souboru v OnlyOffice."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Soubor není možné stáhnout, popis umístění není platný"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Není možné stáhnout soubor, nesprávný popis umístění"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Soubor se nedaří stáhnout."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Sdílet odkaz pro %s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Nelze stáhnout soubor"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr "Původní soubor neexistuje"
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -80,7 +80,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Elias Schneuwly <elias.schneuwly@speicherbox.ch>, 2024\n"
|
||||
"Language-Team: German (http://app.transifex.com/haiwen/seahub/language/de/)\n"
|
||||
@ -934,8 +934,9 @@ msgid ""
|
||||
msgstr "Sie haben bereits %(nb_avatars)d Avatare. Maximal sind %(nb_max_avatars)d erlaubt."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
msgstr "Die Länge des WebDAV-Passworts sollte kürzer als 30 Zeichen sein."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
#: seahub/api2/endpoints/wikis.py:219
|
||||
@ -1585,11 +1586,11 @@ msgstr "Ihr Service-Team %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Zugriff verweigert"
|
||||
|
||||
@ -2570,8 +2571,8 @@ msgstr "Freigegebene Bibliotheken"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3107,11 +3108,11 @@ msgstr "Deaktivieren"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Die Datei kann nicht angezeigt werden"
|
||||
|
||||
@ -3143,7 +3144,7 @@ msgstr "Die von Ihnen gewählte Version ist nicht vorhanden"
|
||||
msgid "Unknown error"
|
||||
msgstr "Unbekannter Fehler"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "„%s“ ist nicht vorhanden."
|
||||
@ -3170,9 +3171,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Falsches Token im Upload-Link."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Die Datei ist nicht vorhanden"
|
||||
|
||||
@ -3200,49 +3201,49 @@ msgstr "Der gewählte Zeichensatz ist ungültig."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Unbekannte Datenkodierung"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Dateien können nur bis zu einer Größe von %s in der Web-Vorschau angezeigt werden."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "Die Bibliothek ist verschlüsselt und kann nicht online geöffnet werden."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Fehler beim Vorbereiten der Office Online-Dateivorschau."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Fehler beim Vorbereiten der OnlyOffice-Dateivorschau."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Kann die Datei nicht herunterladen, ungültiger Pfad"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Kann die Datei nicht herunterladen, falscher Pfad"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Datei kann nicht heruntergeladen werden."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Link für %s freigeben."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Die Datei kann nicht heruntergeladen werden"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr "Die originale Datei existiert nicht."
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: imwhatiam <imwhatiam123@gmail.com>, 2017\n"
|
||||
"Language-Team: Greek (http://app.transifex.com/haiwen/seahub/language/el/)\n"
|
||||
@ -868,7 +868,8 @@ msgid ""
|
||||
msgstr "Ήδη έχετε %(nb_avatars)d avatars, και ο μέγιστος αριθμός είναι %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1519,11 +1520,11 @@ msgstr "Η ομάδα του %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Απαγόρευση πρόσβασης"
|
||||
|
||||
@ -2504,8 +2505,8 @@ msgstr "Κοινόχρηστες βιβλιοθήκες"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3041,11 +3042,11 @@ msgstr ""
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr ""
|
||||
|
||||
@ -3077,7 +3078,7 @@ msgstr ""
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr ""
|
||||
@ -3104,9 +3105,9 @@ msgid "Bad upload link token."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Το αρχείο δεν υπάρχει."
|
||||
|
||||
@ -3134,49 +3135,49 @@ msgstr ""
|
||||
msgid "Unknown file encoding"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: English (http://app.transifex.com/haiwen/seahub/language/"
|
||||
@ -893,7 +893,9 @@ msgstr ""
|
||||
"%(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#, fuzzy
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr "Length of WebDav password should be less than 30."
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1554,10 +1556,10 @@ msgstr "The %(site_name)s team"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247 seahub/views/file.py:1274
|
||||
#: seahub/views/file.py:1498 seahub/views/file.py:1537 seahub/views/repo.py:115
|
||||
#: seahub/views/repo.py:172 seahub/views/repo.py:230 seahub/views/repo.py:259
|
||||
#: seahub/views/repo.py:288 seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246 seahub/views/file.py:1273
|
||||
#: seahub/views/file.py:1497 seahub/views/file.py:1536 seahub/views/repo.py:115
|
||||
#: seahub/views/repo.py:172 seahub/views/repo.py:230 seahub/views/repo.py:258
|
||||
#: seahub/views/repo.py:287 seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Permission denied"
|
||||
|
||||
@ -1830,11 +1832,11 @@ msgstr ""
|
||||
#: seahub/notifications/models.py:831
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(from_user)s has sent you a request for <a href='%(file_url)s'>draft #"
|
||||
"%(draft_id)s</a>"
|
||||
"%(from_user)s has sent you a request for <a href='%(file_url)s'>draft "
|
||||
"#%(draft_id)s</a>"
|
||||
msgstr ""
|
||||
"%(from_user)s has sent you a request for <a href='%(file_url)s'>draft #"
|
||||
"%(draft_id)s</a>"
|
||||
"%(from_user)s has sent you a request for <a href='%(file_url)s'>draft "
|
||||
"#%(draft_id)s</a>"
|
||||
|
||||
#: seahub/notifications/models.py:854
|
||||
#: seahub/notifications/templates/notifications/notice_email.html:66
|
||||
@ -1849,11 +1851,11 @@ msgstr ""
|
||||
#: seahub/notifications/models.py:878
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(user)s has transfered a library named <a href=\"%(repo_url)s\">"
|
||||
"%(repo_name)s</a> to you."
|
||||
"%(user)s has transfered a library named <a "
|
||||
"href=\"%(repo_url)s\">%(repo_name)s</a> to you."
|
||||
msgstr ""
|
||||
"%(user)s has transfered a library named <a href=\"%(repo_url)s\">"
|
||||
"%(repo_name)s</a> to you."
|
||||
"%(user)s has transfered a library named <a "
|
||||
"href=\"%(repo_url)s\">%(repo_name)s</a> to you."
|
||||
|
||||
#: seahub/notifications/models.py:951
|
||||
#, python-brace-format
|
||||
@ -1964,23 +1966,23 @@ msgstr ""
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A file named <a href=\"%(url_base)s%(file_url)s\">%(file_name)s</a> is "
|
||||
"uploaded to your folder <a href=\"%(url_base)s%(folder_url)s\">"
|
||||
"%(folder_name)s</a>."
|
||||
"uploaded to your folder <a "
|
||||
"href=\"%(url_base)s%(folder_url)s\">%(folder_name)s</a>."
|
||||
msgstr ""
|
||||
"A file named <a href=\"%(url_base)s%(file_url)s\">%(file_name)s</a> is "
|
||||
"uploaded to your folder <a href=\"%(url_base)s%(folder_url)s\">"
|
||||
"%(folder_name)s</a>."
|
||||
"uploaded to your folder <a "
|
||||
"href=\"%(url_base)s%(folder_url)s\">%(folder_name)s</a>."
|
||||
|
||||
#: seahub/notifications/templates/notifications/notice_email.html:54
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A folder named <a href=\"%(url_base)s%(folder_url)s\">%(folder_name)s</a> is "
|
||||
"uploaded to your folder <a href=\"%(url_base)s%(parent_dir_url)s\">"
|
||||
"%(parent_dir_name)s</a>."
|
||||
"uploaded to your folder <a "
|
||||
"href=\"%(url_base)s%(parent_dir_url)s\">%(parent_dir_name)s</a>."
|
||||
msgstr ""
|
||||
"A folder named <a href=\"%(url_base)s%(folder_url)s\">%(folder_name)s</a> is "
|
||||
"uploaded to your folder <a href=\"%(url_base)s%(parent_dir_url)s\">"
|
||||
"%(parent_dir_name)s</a>."
|
||||
"uploaded to your folder <a "
|
||||
"href=\"%(url_base)s%(parent_dir_url)s\">%(parent_dir_name)s</a>."
|
||||
|
||||
#: seahub/notifications/templates/notifications/notice_email.html:57
|
||||
#, python-format
|
||||
@ -2014,11 +2016,13 @@ msgstr ""
|
||||
#: seahub/notifications/templates/notifications/notice_email.html:69
|
||||
#, python-format
|
||||
msgid ""
|
||||
"A large number of files in your library <a href=\"%(url_base)s%(repo_url)s\">"
|
||||
"%(repo_name)s</a> has been deleted recently."
|
||||
"A large number of files in your library <a "
|
||||
"href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a> has been deleted "
|
||||
"recently."
|
||||
msgstr ""
|
||||
"A large number of files in your library <a href=\"%(url_base)s%(repo_url)s\">"
|
||||
"%(repo_name)s</a> has been deleted recently."
|
||||
"A large number of files in your library <a "
|
||||
"href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a> has been deleted "
|
||||
"recently."
|
||||
|
||||
#: seahub/notifications/templates/notifications/notice_email.html:84
|
||||
msgid "Go check out at the following page:"
|
||||
@ -2027,42 +2031,42 @@ msgstr "Go check out at the following page:"
|
||||
#: seahub/notifications/templates/notifications/notice_msg/folder_share_msg.html:1
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(user)s has shared a folder named <a href=\"%(url_base)s%(lib_url)s\">"
|
||||
"%(lib_name)s</a> to you."
|
||||
"%(user)s has shared a folder named <a "
|
||||
"href=\"%(url_base)s%(lib_url)s\">%(lib_name)s</a> to you."
|
||||
msgstr ""
|
||||
"%(user)s has shared a folder named <a href=\"%(url_base)s%(lib_url)s\">"
|
||||
"%(lib_name)s</a> to you."
|
||||
"%(user)s has shared a folder named <a "
|
||||
"href=\"%(url_base)s%(lib_url)s\">%(lib_name)s</a> to you."
|
||||
|
||||
#: seahub/notifications/templates/notifications/notice_msg/folder_share_to_group_msg.html:1
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(user)s has shared a folder named <a href=\"%(url_base)s%(lib_url)s\">"
|
||||
"%(lib_name)s</a> to group <a href=\"%(url_base)s%(group_url)s\">"
|
||||
"%(group_name)s</a>."
|
||||
"%(user)s has shared a folder named <a "
|
||||
"href=\"%(url_base)s%(lib_url)s\">%(lib_name)s</a> to group <a "
|
||||
"href=\"%(url_base)s%(group_url)s\">%(group_name)s</a>."
|
||||
msgstr ""
|
||||
"%(user)s has shared a folder named <a href=\"%(url_base)s%(lib_url)s\">"
|
||||
"%(lib_name)s</a> to group <a href=\"%(url_base)s%(group_url)s\">"
|
||||
"%(group_name)s</a>."
|
||||
"%(user)s has shared a folder named <a "
|
||||
"href=\"%(url_base)s%(lib_url)s\">%(lib_name)s</a> to group <a "
|
||||
"href=\"%(url_base)s%(group_url)s\">%(group_name)s</a>."
|
||||
|
||||
#: seahub/notifications/templates/notifications/notice_msg/repo_share_msg.html:1
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(user)s has shared a library named <a href=\"%(url_base)s%(lib_url)s\">"
|
||||
"%(lib_name)s</a> to you."
|
||||
"%(user)s has shared a library named <a "
|
||||
"href=\"%(url_base)s%(lib_url)s\">%(lib_name)s</a> to you."
|
||||
msgstr ""
|
||||
"%(user)s has shared a library named <a href=\"%(url_base)s%(lib_url)s\">"
|
||||
"%(lib_name)s</a> to you."
|
||||
"%(user)s has shared a library named <a "
|
||||
"href=\"%(url_base)s%(lib_url)s\">%(lib_name)s</a> to you."
|
||||
|
||||
#: seahub/notifications/templates/notifications/notice_msg/repo_share_to_group_msg.html:1
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(user)s has shared a library named <a href=\"%(url_base)s%(lib_url)s\">"
|
||||
"%(lib_name)s</a> to group <a href=\"%(url_base)s%(group_url)s\">"
|
||||
"%(group_name)s</a>."
|
||||
"%(user)s has shared a library named <a "
|
||||
"href=\"%(url_base)s%(lib_url)s\">%(lib_name)s</a> to group <a "
|
||||
"href=\"%(url_base)s%(group_url)s\">%(group_name)s</a>."
|
||||
msgstr ""
|
||||
"%(user)s has shared a library named <a href=\"%(url_base)s%(lib_url)s\">"
|
||||
"%(lib_name)s</a> to group <a href=\"%(url_base)s%(group_url)s\">"
|
||||
"%(group_name)s</a>."
|
||||
"%(user)s has shared a library named <a "
|
||||
"href=\"%(url_base)s%(lib_url)s\">%(lib_name)s</a> to group <a "
|
||||
"href=\"%(url_base)s%(group_url)s\">%(group_name)s</a>."
|
||||
|
||||
#: seahub/notifications/templates/notifications/notify_virus.html:13
|
||||
#, python-format
|
||||
@ -2606,8 +2610,8 @@ msgstr "Shared Libs"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3187,11 +3191,11 @@ msgstr "Disable"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Unable to view file"
|
||||
|
||||
@ -3223,7 +3227,7 @@ msgstr "History you specified does not exist"
|
||||
msgid "Unknown error"
|
||||
msgstr "Unknown error"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" does not exist."
|
||||
@ -3250,9 +3254,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Bad upload link token."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "File does not exist"
|
||||
|
||||
@ -3280,48 +3284,48 @@ msgstr "The encoding you chose is not proper."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Unknown file encoding"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "File size surpasses %s, can not be opened online."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "The library is encrypted, can not open file online."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063 seahub/views/file.py:1389
|
||||
#: seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062 seahub/views/file.py:1388
|
||||
#: seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Error when prepare Office Online file preview page."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079 seahub/views/file.py:1409
|
||||
#: seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078 seahub/views/file.py:1408
|
||||
#: seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Error when prepare OnlyOffice file preview page."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Unable to download file, invalid file path"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Unable to download file, wrong file path"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Unable to download file."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710 seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709 seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Share link for %s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Unable to download file"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr "The original file does not exist"
|
||||
|
||||
@ -3459,32 +3463,32 @@ msgstr "Unable to view Wiki"
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> created file "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> created file "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> created file "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> and "
|
||||
#~ "%(obj_path_count_minus_one)s other file(s) in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "%(obj_path_count_minus_one)s other file(s) in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> created file "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> and "
|
||||
#~ "%(obj_path_count_minus_one)s other file(s) in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "%(obj_path_count_minus_one)s other file(s) in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> deleted file "
|
||||
#~ "%(obj_name)s in library <a href=\"%(url_base)s%(repo_url)s\">"
|
||||
#~ "%(repo_name)s</a>."
|
||||
#~ "%(obj_name)s in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> deleted file "
|
||||
#~ "%(obj_name)s in library <a href=\"%(url_base)s%(repo_url)s\">"
|
||||
#~ "%(repo_name)s</a>."
|
||||
#~ "%(obj_name)s in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> deleted file "
|
||||
@ -3515,32 +3519,32 @@ msgstr "Unable to view Wiki"
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> moved file "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> moved file "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> moved file "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> and "
|
||||
#~ "%(obj_path_count_minus_one)s other file(s) in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "%(obj_path_count_minus_one)s other file(s) in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> moved file "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> and "
|
||||
#~ "%(obj_path_count_minus_one)s other file(s) in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "%(obj_path_count_minus_one)s other file(s) in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> updated file "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> updated file "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> created "
|
||||
@ -3554,22 +3558,22 @@ msgstr "Unable to view Wiki"
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> created "
|
||||
#~ "folder <a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> and "
|
||||
#~ "%(obj_path_count_minus_one)s other folder(s) in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "%(obj_path_count_minus_one)s other folder(s) in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> created "
|
||||
#~ "folder <a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> and "
|
||||
#~ "%(obj_path_count_minus_one)s other folder(s) in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "%(obj_path_count_minus_one)s other folder(s) in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> deleted "
|
||||
#~ "folder %(obj_name)s in library <a href=\"%(url_base)s%(repo_url)s\">"
|
||||
#~ "%(repo_name)s</a>."
|
||||
#~ "folder %(obj_name)s in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> deleted "
|
||||
#~ "folder %(obj_name)s in library <a href=\"%(url_base)s%(repo_url)s\">"
|
||||
#~ "%(repo_name)s</a>."
|
||||
#~ "folder %(obj_name)s in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> deleted "
|
||||
@ -3591,31 +3595,31 @@ msgstr "Unable to view Wiki"
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> renamed "
|
||||
#~ "folder %(old_obj_name)s to <a href=\"%(url_base)s%(obj_url)s\">"
|
||||
#~ "%(obj_name)s</a> in library <a href=\"%(url_base)s%(repo_url)s\">"
|
||||
#~ "%(repo_name)s</a>."
|
||||
#~ "folder %(old_obj_name)s to <a "
|
||||
#~ "href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> renamed "
|
||||
#~ "folder %(old_obj_name)s to <a href=\"%(url_base)s%(obj_url)s\">"
|
||||
#~ "%(obj_name)s</a> in library <a href=\"%(url_base)s%(repo_url)s\">"
|
||||
#~ "%(repo_name)s</a>."
|
||||
#~ "folder %(old_obj_name)s to <a "
|
||||
#~ "href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> moved folder "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> moved folder "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
||||
#~ msgid ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> moved folder "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> and "
|
||||
#~ "%(obj_path_count_minus_one)s other folder(s) in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "%(obj_path_count_minus_one)s other folder(s) in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ msgstr ""
|
||||
#~ " User <a href=\"%(url_base)s%(user_url)s\">%(user_name)s</a> moved folder "
|
||||
#~ "<a href=\"%(url_base)s%(obj_url)s\">%(obj_name)s</a> and "
|
||||
#~ "%(obj_path_count_minus_one)s other folder(s) in library <a href="
|
||||
#~ "\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
#~ "%(obj_path_count_minus_one)s other folder(s) in library <a "
|
||||
#~ "href=\"%(url_base)s%(repo_url)s\">%(repo_name)s</a>."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -16,7 +16,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Rodolfo Cossalter <rcoss@dm.uba.ar>, 2014-2015\n"
|
||||
"Language-Team: Spanish (http://app.transifex.com/haiwen/seahub/language/es/)\n"
|
||||
@ -870,7 +870,8 @@ msgid ""
|
||||
msgstr "Actualmente tienes %(nb_avatars)d avatares, y el máximo permitido es%(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1526,11 +1527,11 @@ msgstr "El equipo de %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Permiso denegado"
|
||||
|
||||
@ -2514,8 +2515,8 @@ msgstr "Bibliotecas Compartidas"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3051,11 +3052,11 @@ msgstr "Deshabilitar"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Imposible visualizar el archivo"
|
||||
|
||||
@ -3087,7 +3088,7 @@ msgstr "El historial especificado no existe"
|
||||
msgid "Unknown error"
|
||||
msgstr "Error desconocido"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" no existe."
|
||||
@ -3114,9 +3115,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Identificador del enlace de subida inválido."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "El archivo no existe"
|
||||
|
||||
@ -3144,49 +3145,49 @@ msgstr "La codificación elegida no es correcta."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Codificación de archivo desconocida"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "El tamaño del archivo sobrepasa %s, no se puede abrir en línea."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "La biblioteca está encriptada, no se puede abrir el archivo en línea."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Error al preparar la página de la vista preliminar de archivo de Office Online."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Error al preparar la página de la vista preliminar de archivo de OnlyOffice."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "No es posible descargar el archivo, ruta inválida"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "No es posible descargar el archivo, ruta errónea"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Imposible descargar archivo."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Enlace de compartir para %s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Imposible descargar archivo"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Rodolfo Cossalter <rcoss@dm.uba.ar>, 2014-2021\n"
|
||||
"Language-Team: Spanish (Argentina) (http://app.transifex.com/haiwen/seahub/language/es_AR/)\n"
|
||||
@ -867,7 +867,8 @@ msgid ""
|
||||
msgstr "Actualmente tienes %(nb_avatars)d avatares, y el máximo permitido es%(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1523,11 +1524,11 @@ msgstr "El equipo de %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Permiso denegado"
|
||||
|
||||
@ -2511,8 +2512,8 @@ msgstr "Bibliotecas Compartidas"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3048,11 +3049,11 @@ msgstr "Deshabilitar"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Imposible visualizar el archivo"
|
||||
|
||||
@ -3084,7 +3085,7 @@ msgstr "El historial especificado no existe"
|
||||
msgid "Unknown error"
|
||||
msgstr "Error desconocido"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" no existe."
|
||||
@ -3111,9 +3112,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Identificador del enlace de subida inválido."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "El archivo no existe"
|
||||
|
||||
@ -3141,49 +3142,49 @@ msgstr "La codificación elegida no es correcta."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Codificación de archivo desconocida"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "El tamaño del archivo sobrepasa %s, no se puede abrir en línea."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "La biblioteca está encriptada, no se puede abrir el archivo en línea."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Error al preparar la página de la vista preliminar de archivo de Office Online."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Error al preparar la página de la vista preliminar de archivo de OnlyOffice."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "No es posible descargar el archivo, ruta inválida"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "No es posible descargar el archivo, ruta errónea"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Imposible descargar archivo."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Enlace de compartir para %s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Imposible descargar archivo"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Rodolfo Cossalter <rcoss@dm.uba.ar>, 2014-2015\n"
|
||||
"Language-Team: Spanish (Mexico) (http://app.transifex.com/haiwen/seahub/language/es_MX/)\n"
|
||||
@ -868,7 +868,8 @@ msgid ""
|
||||
msgstr "Actualmente tienes %(nb_avatars)d avatars, y el máximo permitido es%(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1524,11 +1525,11 @@ msgstr "El equipo de %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Permiso denegado"
|
||||
|
||||
@ -2512,8 +2513,8 @@ msgstr "Bibliotecas Compartidas"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3049,11 +3050,11 @@ msgstr "Deshabilitar"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Imposible visualizar el archivo"
|
||||
|
||||
@ -3085,7 +3086,7 @@ msgstr "El historial especificado no existe"
|
||||
msgid "Unknown error"
|
||||
msgstr "Error desconocido"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" no existe."
|
||||
@ -3112,9 +3113,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Identificador del enlace de subida inválido."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "El archivo no existe"
|
||||
|
||||
@ -3142,49 +3143,49 @@ msgstr "La codificación elegida no es correcta."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Codificación de archivo desconocida"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "El tamaño del archivo sobrepasa %s, no se puede abrir en linea."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "La biblioteca está encriptada, no se puede abrir el archivo en línea."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Error al preparar la página de la vista preliminar de archivo de Office Online."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Error al preparar la página de la vista preliminar de archivo de OnlyOffice."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "No es posible descargar el archivo, ruta inválida"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "No es posible descargar el archivo, ruta errónea"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Imposible descargar archivo."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Enlace de compartir para %s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Imposible descargar archivo"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -13,7 +13,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Teppo Sarjonen <teppo.sarjonen@gmail.com>, 2017-2018\n"
|
||||
"Language-Team: Finnish (http://app.transifex.com/haiwen/seahub/language/fi/)\n"
|
||||
@ -867,7 +867,8 @@ msgid ""
|
||||
msgstr "Sinulla on jo %(nb_avatars)d avataria, maksimi sallittu määrä on %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1518,11 +1519,11 @@ msgstr "%(site_name)s tiimi"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Lupa evätty"
|
||||
|
||||
@ -2503,8 +2504,8 @@ msgstr "Jaetut kirjastot"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3040,11 +3041,11 @@ msgstr "Poista käytöstä"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Tiedoston katselu epäonnistui"
|
||||
|
||||
@ -3076,7 +3077,7 @@ msgstr "Määrittämääsi historiaa ei ole"
|
||||
msgid "Unknown error"
|
||||
msgstr "Tuntematon virhe"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" ei ole olemassa."
|
||||
@ -3103,9 +3104,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Virheellinen tunniste lähetyslinkissä."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Tiedostoa ei ole olemassa."
|
||||
|
||||
@ -3133,49 +3134,49 @@ msgstr "Valitsemasi koodaus ei ole kelvollinen."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Tunnistamaton tiedostokoodaus"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Tiedoston koko ylittää %s, sitä ei voida avata verkossa."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "Kirjasto on salattu, sitä ei voi avata verkossa."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Virhe valmistettaessa Office Online -tiedoston esikatselusivua."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Virhe valmistettaessa OnlyOffice -tiedoston esikatselusivua."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Tiedoston lataus epäonnistui, virheellinen tiedostopolku"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Tiedoston lataus epäonnistui, väärä tiedostopolku"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Tiedoston lataus epäonnistui."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Tiedostoa ei voi ladata"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -39,7 +39,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Konstantin <kostya49.fr@gmail.com>, 2024\n"
|
||||
"Language-Team: French (http://app.transifex.com/haiwen/seahub/language/fr/)\n"
|
||||
@ -893,8 +893,9 @@ msgid ""
|
||||
msgstr "Vous avez déjà %(nb_avatars)d avatars et la valeur maximale autorisée est de %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
msgstr "La longueur du mot de passe WebDav doit être inférieur à 30 caractères."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
#: seahub/api2/endpoints/wikis.py:219
|
||||
@ -1549,11 +1550,11 @@ msgstr "L'équipe de %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Autorisation refusée"
|
||||
|
||||
@ -2537,8 +2538,8 @@ msgstr "Bibliothèques partagées"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3074,11 +3075,11 @@ msgstr "Désactiver"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Impossible d'afficher le fichier"
|
||||
|
||||
@ -3110,7 +3111,7 @@ msgstr "L'historique que vous avez spécifié n'existe pas"
|
||||
msgid "Unknown error"
|
||||
msgstr "Erreur inconnue"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" n'existe pas."
|
||||
@ -3137,9 +3138,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Mauvais token de lien d'envoi."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Le fichier n'existe pas"
|
||||
|
||||
@ -3167,49 +3168,49 @@ msgstr "L'encodage que vous avez choisi n'est pas approprié."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Encodage de fichier inconnu"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "La taille du fichier dépasse %s, il ne peut donc pas être visionné en ligne."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "La bibliothèque est cryptée. Elle ne peut pas être ouverte en ligne."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Erreur en préparant la page de prévisualisation du document Office Online"
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Erreur en préparant la page de prévisualisation du fichier OnlyOffice"
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Impossible de télécharger le fichier, chemin de fichier invalide"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Impossible de télécharger le fichier, chemin de fichier erroné"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Impossible de télécharger le fichier."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Partager le lien pour %s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Impossible de télécharger le fichier"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Kunda, 2013-2014\n"
|
||||
"Language-Team: Hebrew (http://app.transifex.com/haiwen/seahub/language/he/)\n"
|
||||
@ -865,7 +865,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1521,11 +1522,11 @@ msgstr ""
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr ""
|
||||
|
||||
@ -2509,8 +2510,8 @@ msgstr ""
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3046,11 +3047,11 @@ msgstr ""
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "לא ניתן להציג קובץ"
|
||||
|
||||
@ -3082,7 +3083,7 @@ msgstr ""
|
||||
msgid "Unknown error"
|
||||
msgstr "שגיאה לא ידועה"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr ""
|
||||
@ -3109,9 +3110,9 @@ msgid "Bad upload link token."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "קובץ לא קיים"
|
||||
|
||||
@ -3139,49 +3140,49 @@ msgstr ""
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "קידוד קובץ לא ידוע"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -18,7 +18,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Kelemen Norbert <nkelemen18@nkelemen.hu>, 2018,2022-2023\n"
|
||||
"Language-Team: Hungarian (http://app.transifex.com/haiwen/seahub/language/hu/)\n"
|
||||
@ -872,7 +872,8 @@ msgid ""
|
||||
msgstr "Már van %(nb_avatars)d avatarja, a maximális engedélyezett szám %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1523,11 +1524,11 @@ msgstr "%(site_name)s csapat"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Jogosultság megtagadva"
|
||||
|
||||
@ -2508,8 +2509,8 @@ msgstr "Megosztott kötetek"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3045,11 +3046,11 @@ msgstr "Letilt"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Fájl megtekintése sikertelen"
|
||||
|
||||
@ -3081,7 +3082,7 @@ msgstr "A megadott napló nem létezik"
|
||||
msgid "Unknown error"
|
||||
msgstr "Ismeretlen hiba"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" nem létezik."
|
||||
@ -3108,9 +3109,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Hibás feltöltési link token."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "A fájl nem létezik"
|
||||
|
||||
@ -3138,49 +3139,49 @@ msgstr "A választott kódolás nem megfelelő."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Érvénytelen fájlkódolás"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Fájlméret több mint %s, nem nyitható meg online."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "Ez egy titkosított kötet, a fájlokat nem lehet online megjeleníteni."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Hiba történt a fájl Online Office előnézeti oldal betöltése közben."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Hiba történt a fájl OnlyOffice előnézeti oldal betöltése közben."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "A fájlt nem lehet letölteni, érvénytelen elérési útvonal"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "A fájlt nem lehet letölteni, hibás elérési útvonal"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Fájl letöltése sikertelen."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Nem lehet fájlt letölteni"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Hjörleifur Sveinbjörnsson <hjorleifur@gmail.com>, 2014-2016\n"
|
||||
"Language-Team: Icelandic (http://app.transifex.com/haiwen/seahub/language/is/)\n"
|
||||
@ -865,7 +865,8 @@ msgid ""
|
||||
msgstr "Þú hefur nú þegar %(nb_avatars)d sámyndir og leyfilegur hámarksfjöldi er %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1516,11 +1517,11 @@ msgstr "%(site_name)s teymið"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Aðgangi hafnað"
|
||||
|
||||
@ -2501,8 +2502,8 @@ msgstr "Deild Söfn"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3038,11 +3039,11 @@ msgstr ""
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Getur ekki skoðað skrá"
|
||||
|
||||
@ -3074,7 +3075,7 @@ msgstr "Sagan sem þú tilgreindir er ekki til"
|
||||
msgid "Unknown error"
|
||||
msgstr "Óþekkt villa"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" er ekki til."
|
||||
@ -3101,9 +3102,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Slæmt tákn í upphleðsluhlekk"
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Skrá er ekki til"
|
||||
|
||||
@ -3131,49 +3132,49 @@ msgstr "Kóðunin sem þú valdir á ekki við."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Óþekkt skráargerð"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Skráarstærð yfir %s, ekki hægt að opna í vafra."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "Þetta safn er dulkóðað, get ekki opnað skrár innan kerfis."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Gat ekki niðurhalað skrá, röng skráarslóð"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Gat ekki niðurhalað skrá, röng skráarslóð"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Get ekki halað niður skrá"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Stefano Ruberti <stefano.ruberti@gmail.com>, 2017-2019,2024\n"
|
||||
"Language-Team: Italian (http://app.transifex.com/haiwen/seahub/language/it/)\n"
|
||||
@ -868,8 +868,9 @@ msgid ""
|
||||
msgstr "Hai già %(nb_avatars)d avatar, massimo consentito %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
msgstr "La lunghezza della password WebDav deve essere inferiore a 30 caratteri."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
#: seahub/api2/endpoints/wikis.py:219
|
||||
@ -1524,11 +1525,11 @@ msgstr "Il team di %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Permesso negato."
|
||||
|
||||
@ -2512,8 +2513,8 @@ msgstr "Librerie condivise"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3049,11 +3050,11 @@ msgstr "Disabilitare"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Impossibile vedere il file"
|
||||
|
||||
@ -3085,7 +3086,7 @@ msgstr "La cronologia che hai specificato non esiste"
|
||||
msgid "Unknown error"
|
||||
msgstr "Errore sconosciuto"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" non esiste."
|
||||
@ -3112,9 +3113,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Token del link di caricamento errato."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Il file non esiste."
|
||||
|
||||
@ -3142,49 +3143,49 @@ msgstr "La codifica scelta non è corretta."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Codifica file sconosciuta"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "La dimensione del file supera %s e non può essere aperta online."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "La libreria è crittografata, non è possibile aprire il file online."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Errore durante la preparazione della pagina di anteprima del file di Office Online."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Errore durante la preparazione della pagina di anteprima del file OnlyOffice."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Impossibile scaricare il file, percorso file non valido"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Impossibile scaricare il file, percorso file errato"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Impossibile scaricare il file."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Condividi link per %s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Impossibile scaricare il file"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr "The original file does not exist"
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: 鑫 王 <wangxin@oneby.com.cn>, 2020\n"
|
||||
"Language-Team: Japanese (http://app.transifex.com/haiwen/seahub/language/ja/)\n"
|
||||
@ -868,7 +868,8 @@ msgid ""
|
||||
msgstr " すでに %(nb_avatars)d このプロフィール画像を有しています。最大 %(nb_max_avatars)d こまで設定できます。"
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1514,11 +1515,11 @@ msgstr " %(site_name)s ちーむ"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "権限がありません。"
|
||||
|
||||
@ -2496,8 +2497,8 @@ msgstr "共有ライブラリ"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3033,11 +3034,11 @@ msgstr ""
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "ファイルを閲覧できません"
|
||||
|
||||
@ -3069,7 +3070,7 @@ msgstr "指定された改版履歴がありません。"
|
||||
msgid "Unknown error"
|
||||
msgstr "不明なエラー"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr ""
|
||||
@ -3096,9 +3097,9 @@ msgid "Bad upload link token."
|
||||
msgstr "アップロードリンクのトークンが不正。"
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "ファイルが見つかりません"
|
||||
|
||||
@ -3126,49 +3127,49 @@ msgstr "選択した文字コードは正しくありません。"
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "ファイルエンコーディングがわかりません。"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "ファイルサイズが%sを超えています。オンラインで開けません。"
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "ファイルをダウンロードできません"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Seong-ho Cho <darkcircle.0426@gmail.com>, 2014-2017,2019,2022-2024\n"
|
||||
"Language-Team: Korean (http://app.transifex.com/haiwen/seahub/language/ko/)\n"
|
||||
@ -865,8 +865,9 @@ msgid ""
|
||||
msgstr "이미 아바타 %(nb_avatars)d개를 보유하고 있으며, 최대 허용 보유 갯수는 %(nb_max_avatars)d개 입니다."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
msgstr "WebDav 암호 길이는 30문자보다 짧아야합니다."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
#: seahub/api2/endpoints/wikis.py:219
|
||||
@ -1511,11 +1512,11 @@ msgstr "%(site_name)s 팀"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "권한이 거부되었습니다"
|
||||
|
||||
@ -2493,8 +2494,8 @@ msgstr "공유 라이브러리"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3030,11 +3031,11 @@ msgstr "비활성"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "파일을 볼 수 없습니다"
|
||||
|
||||
@ -3066,7 +3067,7 @@ msgstr "지정한 이력이 없습니다"
|
||||
msgid "Unknown error"
|
||||
msgstr "알 수 없는 오류"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\"이(가) 없습니다."
|
||||
@ -3093,9 +3094,9 @@ msgid "Bad upload link token."
|
||||
msgstr "잘못된 업로드 링크 토큰입니다."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "파일이 없습니다"
|
||||
|
||||
@ -3123,49 +3124,49 @@ msgstr "선택한 인코딩이 적합하지 않습니다"
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "알 수 없는 파일 인코딩"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "파일 크기가 %s을(를) 넘어, 온라인에서 열 수 없습니다."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "라이브러리를 암호화했습니다. 온라인에서 파일을 열어볼 수 없습니다."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "오피스 온라인 미리 보기 페이지를 준비하는 중 오류가 나타났습니다."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "오피스 파일 미리 보기 페이지를 준비하는 중 오류가 나타났습니다."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "파일을 다운로드할 수 없습니다. 부적절한 파일 경로입니다."
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "파일 경로가 잘못되어 파일을 다운로드할 수 없습니다"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "파일을 다운로드할 수 없습니다."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "%s(에)게 링크를 공유합니다."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "파일을 다운로드 할 수 없습니다."
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr "원본 파일이 없습니다"
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Vytautas Stanaitis <vytautas@basas.lt>, 2018\n"
|
||||
"Language-Team: Lithuanian (http://app.transifex.com/haiwen/seahub/language/lt/)\n"
|
||||
@ -865,7 +865,8 @@ msgid ""
|
||||
msgstr "Jau turite %(nb_avatars)d avatarus, daugiausiai galima turėti %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1526,11 +1527,11 @@ msgstr "%(site_name)s komanda"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Prieiga uždrausta"
|
||||
|
||||
@ -2517,8 +2518,8 @@ msgstr ""
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3054,11 +3055,11 @@ msgstr ""
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr ""
|
||||
|
||||
@ -3090,7 +3091,7 @@ msgstr "Nurodyto žurnalo nėra"
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr ""
|
||||
@ -3117,9 +3118,9 @@ msgid "Bad upload link token."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr ""
|
||||
|
||||
@ -3147,49 +3148,49 @@ msgstr ""
|
||||
msgid "Unknown file encoding"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Ilo Kra, 2023\n"
|
||||
"Language-Team: Latvian (http://app.transifex.com/haiwen/seahub/language/lv/)\n"
|
||||
@ -864,7 +864,8 @@ msgid ""
|
||||
msgstr "Jums jau ir %(nb_avatars)d avatars, un maksimālais atļautais ir %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1520,11 +1521,11 @@ msgstr "%(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Pieeja liegta"
|
||||
|
||||
@ -2508,8 +2509,8 @@ msgstr "Koplietots"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3045,11 +3046,11 @@ msgstr ""
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Nevar apskatīt datni"
|
||||
|
||||
@ -3081,7 +3082,7 @@ msgstr "Norādītais vēstures saraksts nepastāv"
|
||||
msgid "Unknown error"
|
||||
msgstr "Nezināma kļūda"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" nepastāv."
|
||||
@ -3108,9 +3109,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Slikta augšupielādes saites pilnvara."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Šāda datne nepastāv"
|
||||
|
||||
@ -3138,49 +3139,49 @@ msgstr "Atlasītais kodējums nav pareizs."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Nezināms datnes kodējums"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Datnes lielums pārsniedz %s, nevar atvērt tiešsaistes režīmā.."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "Bibliotēka ir šifrēta, nevar atvērt tiešsaistē."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Nevar lejupielādēt datni, nederīgs datnes ceļš"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Nevar lejupielādēt datni, nepareizs datnes ceļš"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Nevar lejupielādēt datni"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
3467
locale/nb_NO/LC_MESSAGES/django.po
Normal file
3467
locale/nb_NO/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
3471
locale/nl_NL/LC_MESSAGES/django.po
Normal file
3471
locale/nl_NL/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Ryszard Trojnacki <ryszard.trojnacki@gmail.com>, 2020\n"
|
||||
"Language-Team: Polish (http://app.transifex.com/haiwen/seahub/language/pl/)\n"
|
||||
@ -868,7 +868,8 @@ msgid ""
|
||||
msgstr "Obecnie posiadasz %(nb_avatars)d awatarów, a dozwolone maksimum to %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1529,11 +1530,11 @@ msgstr "Załoga %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Odmowa dostępu"
|
||||
|
||||
@ -2520,8 +2521,8 @@ msgstr "Współdzielone biblioteki"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3057,11 +3058,11 @@ msgstr "Wyłącz"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Nie można wyświetlić pliku"
|
||||
|
||||
@ -3093,7 +3094,7 @@ msgstr "Wskazana historia nie istnieje"
|
||||
msgid "Unknown error"
|
||||
msgstr "Nieznany błąd"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" nie istnieje."
|
||||
@ -3120,9 +3121,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Nieprawidłowy token łącza przesyłania."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Plik nie istnieje"
|
||||
|
||||
@ -3150,49 +3151,49 @@ msgstr "Wybrane kodowanie jest nieprawidłowe."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Nieznane kodowanie pliku"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Rozmiar pliku przekracza %s, nie może być otwarty online."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "Biblioteka jest zaszyfrowana, nie można otworzyć pliku online."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Nie można pobrać pliku, nieprawidłowa ścieżka"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Nie można pobrać pliku, zła ścieżka"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Nie można pobrać pliku."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Link udostępnienia dla %s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Nie udało się pobrać pliku"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -24,7 +24,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: zheng xie <xiez1989@gmail.com>, 2013,2017\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://app.transifex.com/haiwen/seahub/language/pt_BR/)\n"
|
||||
@ -878,7 +878,8 @@ msgid ""
|
||||
msgstr "Você já tem %(nb_avatars)d avatars, e o máximo permitido é %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1534,11 +1535,11 @@ msgstr "A equipe %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Permissão negada"
|
||||
|
||||
@ -2522,8 +2523,8 @@ msgstr "Bibliotecas Compartilhadas"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3059,11 +3060,11 @@ msgstr ""
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Incapaz de visualizar o arquivo"
|
||||
|
||||
@ -3095,7 +3096,7 @@ msgstr "O histórico que você especificou não existe"
|
||||
msgid "Unknown error"
|
||||
msgstr "Erro desconhecido"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" não existe."
|
||||
@ -3122,9 +3123,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Token do link de upload invalida"
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "O arquivo não existe"
|
||||
|
||||
@ -3152,49 +3153,49 @@ msgstr "A codificação escolhida não é adequada."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Codificação de arquivo desconhecida"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "O tamanho do arquivo supera %s, não pode ser aberto online."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "A biblioteca está criptografada. Os arquivos não podem ser abertos online."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Impossivel realizar o download do arquivo, caminho invalido"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Impossivel realizar o download do arquivo, caminho incorreto"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Não foi possível baixar o arquivo"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -26,7 +26,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Vladimir <pash.vld@gmail.com>, 2015-2024\n"
|
||||
"Language-Team: Russian (http://app.transifex.com/haiwen/seahub/language/ru/)\n"
|
||||
@ -880,8 +880,9 @@ msgid ""
|
||||
msgstr "У вас уже есть %(nb_avatars)d аватар, максимально разрешено %(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
msgstr "Длина пароля WebDAV должна быть менее 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
#: seahub/api2/endpoints/wikis.py:219
|
||||
@ -1541,11 +1542,11 @@ msgstr "Команда %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Доступ запрещен"
|
||||
|
||||
@ -2532,8 +2533,8 @@ msgstr "Общедоступные библиотеки"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3069,11 +3070,11 @@ msgstr "Отключить"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Не удается посмотреть файл"
|
||||
|
||||
@ -3105,7 +3106,7 @@ msgstr "Указанная история не существует"
|
||||
msgid "Unknown error"
|
||||
msgstr "Неизвестная ошибка"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" не существует."
|
||||
@ -3132,9 +3133,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Плохой токен ссылки загрузки."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Файл не существует"
|
||||
|
||||
@ -3162,49 +3163,49 @@ msgstr "Выбранный режим кодирования не являетс
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Неизвестная кодировка файла."
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Размер файла превышает %s, и не может быть открыт в онлайн режиме."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "Библиотека зашифрована, не может быть открыта онлайн."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Ошибка при подготовке страницы предварительного просмотра файла Office Online."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Ошибка при подготовке страницы предварительного просмотра файла OnlyOffice."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Невозможно скачать файл, неверный путь"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Невозможно скачать файл, неправильный путь"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Не удается загрузить файл."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Общедоступная ссылка для %s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Не удается скачать файл"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr "Исходный файл не существует"
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
3480
locale/sl_SI/LC_MESSAGES/django.po
Normal file
3480
locale/sl_SI/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: llj <lingjun.li1@gmail.com>, 2021\n"
|
||||
"Language-Team: Swedish (http://app.transifex.com/haiwen/seahub/language/sv/)\n"
|
||||
@ -868,7 +868,8 @@ msgid ""
|
||||
msgstr "Du har redan %(nb_avatars)d avatarer, och max antal tillåtet är %(nb_max_avatars)d"
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1519,11 +1520,11 @@ msgstr "%(site_name)s teamet"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Åtkomst nekas"
|
||||
|
||||
@ -2504,8 +2505,8 @@ msgstr "Delade Kataloger"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3041,11 +3042,11 @@ msgstr "Inaktivera"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Kan inte läsa fil"
|
||||
|
||||
@ -3077,7 +3078,7 @@ msgstr "Historiken du angett existerar inte"
|
||||
msgid "Unknown error"
|
||||
msgstr "Okänt fel"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" existerar inte."
|
||||
@ -3104,9 +3105,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Dålig uppladdningslänk symbol."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Filen existerar inte"
|
||||
|
||||
@ -3134,49 +3135,49 @@ msgstr "Krypteringen du har valt är inte korrekt."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Okänd fil-kodning"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Filen är större än %s och kan inte öppnas online."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "Katalogen är krypterad, kan inte öppna filen online."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Fel vid förberedelse av Office Online filvisningssidan."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "Fel vid förberedelse av OnlyOffice filvisningssidan."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Kan inte ladda ner fil. Felaktig filsökväg"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Kan inte ladda ner fil. Felaktig sökväg"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Kan inte ladda ner fil."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "Dela länk för %s."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Kan inte ladda ner fil"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
3456
locale/th_TH/LC_MESSAGES/django.po
Normal file
3456
locale/th_TH/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Muhammed Şamil Kıvanç, 2022\n"
|
||||
"Language-Team: Turkish (http://app.transifex.com/haiwen/seahub/language/tr/)\n"
|
||||
@ -868,8 +868,9 @@ msgid ""
|
||||
msgstr "%(nb_avatars)d avatarınız var, izin verilen maksimum sayı %(nb_max_avatars)d"
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
msgstr "WebDav parolasının uzunluğu 30'dan az olmalıdır."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
#: seahub/api2/endpoints/wikis.py:219
|
||||
@ -1519,11 +1520,11 @@ msgstr "%(site_name)s takımı"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "İzin reddedildi"
|
||||
|
||||
@ -2504,8 +2505,8 @@ msgstr "Paylaşılan Kütüphaneler"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3041,11 +3042,11 @@ msgstr "Devre dışı"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Dosya görüntülenemiyor."
|
||||
|
||||
@ -3077,7 +3078,7 @@ msgstr "Belirttiğiniz geçmiş yok"
|
||||
msgid "Unknown error"
|
||||
msgstr "Bilinmeyen hata"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" mevcut değil."
|
||||
@ -3104,9 +3105,9 @@ msgid "Bad upload link token."
|
||||
msgstr "Kötü bağlantı yükleme jetonu."
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Dosya yok."
|
||||
|
||||
@ -3134,49 +3135,49 @@ msgstr "Seçtiğiniz kodlama uygun değil."
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Bilinmeyen dosya kodlama"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Dosya boyutu %s i aşıyor, online açılamaz."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "Kütüphane şifreli, dosyayı çevrimiçi açamıyor."
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Office Online dosyası önizleme sayfası hazırlanırken hata oluştu."
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "OnlyOffice dosyası önizleme sayfası hazırlanırken hata oluştu."
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "Dosya indirilemedi, geçersiz dosya yolu"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "Dosya indirilemedi, hatalı dosya yolu"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "Dosya indirilemedi."
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "%s için link paylaş."
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Dosya indirilemiyor."
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -14,7 +14,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Oleksandr Suvorov <say@say.od.ua>, 2016\n"
|
||||
"Language-Team: Ukrainian (http://app.transifex.com/haiwen/seahub/language/uk/)\n"
|
||||
@ -868,7 +868,8 @@ msgid ""
|
||||
msgstr "У вас вже є %(nb_avatars)d аватар, максимально дозволено%(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1529,11 +1530,11 @@ msgstr "Команда %(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Доступ заборонено"
|
||||
|
||||
@ -2520,8 +2521,8 @@ msgstr ""
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3057,11 +3058,11 @@ msgstr ""
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "Не вдається переглянути файл"
|
||||
|
||||
@ -3093,7 +3094,7 @@ msgstr "Вказана історія не існує"
|
||||
msgid "Unknown error"
|
||||
msgstr "Невідома помилка"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr ""
|
||||
@ -3120,9 +3121,9 @@ msgid "Bad upload link token."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "Файл не існує"
|
||||
|
||||
@ -3150,49 +3151,49 @@ msgstr "Обраний режим шифрування не є правильн
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "Шевідомий алгоритм шифрування файлу."
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Розмір файлу перевищує %s, і не може бути відкритий в онлайн режимі."
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Vietnamese (http://app.transifex.com/haiwen/seahub/language/vi/)\n"
|
||||
@ -862,7 +862,8 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1508,11 +1509,11 @@ msgstr "%(site_name)s"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "Không có quyền"
|
||||
|
||||
@ -2490,8 +2491,8 @@ msgstr "Thư viện chia sẻ"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3027,11 +3028,11 @@ msgstr ""
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr ""
|
||||
|
||||
@ -3063,7 +3064,7 @@ msgstr "Lịch sử mà bạn chỉ định không tồn tại"
|
||||
msgid "Unknown error"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" không tồn tại."
|
||||
@ -3090,9 +3091,9 @@ msgid "Bad upload link token."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "File không tồn tại"
|
||||
|
||||
@ -3120,49 +3121,49 @@ msgstr ""
|
||||
msgid "Unknown file encoding"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "Dung lượng %s quá nặng, không thể mở trực tuyến"
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr " Thư viện đã mã hóa, không thể mở file trực tuyến"
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "Không thể tải file"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -16,7 +16,7 @@
|
||||
# Daniel Pan <daniel.pan@seafile.com>, 2015-2016
|
||||
# llj <lingjun.li1@gmail.com>, 2014
|
||||
# llj <lingjun.li1@gmail.com>, 2014
|
||||
# Seafile Info <info@seafile.com>, 2023-2024
|
||||
# Seafile Info <info@seafile.com>, 2023-2025
|
||||
# zheng xie <xiez1989@gmail.com>, 2014-2019
|
||||
# zMingGit <517046497@qq.com>, 2017
|
||||
# zMingGit <517046497@qq.com>, 2017
|
||||
@ -27,9 +27,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: Seafile Info <info@seafile.com>, 2023-2024\n"
|
||||
"Last-Translator: Seafile Info <info@seafile.com>, 2023-2025\n"
|
||||
"Language-Team: Chinese (China) (http://app.transifex.com/haiwen/seahub/language/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@ -881,8 +881,9 @@ msgid ""
|
||||
msgstr "你已经有 %(nb_avatars)d 个头像, 最多允许拥有 %(nb_max_avatars)d 个."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
msgstr "WebDAV 密码长度需要少于 30 个字符。"
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr "WebDAV 的密码长度应该小于30"
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
#: seahub/api2/endpoints/wikis.py:219
|
||||
@ -1527,11 +1528,11 @@ msgstr "%(site_name)s 团队"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "没有权限"
|
||||
|
||||
@ -2509,8 +2510,8 @@ msgstr "共享的资料库"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3046,11 +3047,11 @@ msgstr "禁用"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "无法查看该文件"
|
||||
|
||||
@ -3082,7 +3083,7 @@ msgstr "指定的历史记录不存在"
|
||||
msgid "Unknown error"
|
||||
msgstr "未知错误"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" 不存在。"
|
||||
@ -3109,9 +3110,9 @@ msgid "Bad upload link token."
|
||||
msgstr "无效的上传链接"
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "文件不存在"
|
||||
|
||||
@ -3139,49 +3140,49 @@ msgstr "文件编码不合适"
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "文件编码无法识别"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "文件大小超过 %s,无法在线查看。"
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "加密资料库不能在线预览文件。"
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr "Office Online 预览文件时出错。"
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr "OnlyOffice 预览文件时出错。"
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "无法下载文件,无效的文件路径"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "无法下载文件,错误的文件路径"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "无法下载文件。"
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr "%s 的共享链接。"
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "无法下载文件"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr "源文档不存在"
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -15,7 +15,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: seahub\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-01-04 10:40+0800\n"
|
||||
"POT-Creation-Date: 2025-01-07 10:21+0800\n"
|
||||
"PO-Revision-Date: 2013-10-25 07:03+0000\n"
|
||||
"Last-Translator: david082321 <david082321@gmail.com>, 2018\n"
|
||||
"Language-Team: Chinese (Taiwan) (http://app.transifex.com/haiwen/seahub/language/zh_TW/)\n"
|
||||
@ -869,7 +869,8 @@ msgid ""
|
||||
msgstr "你已經有 %(nb_avatars)d 個頭像,最大上限爲%(nb_max_avatars)d."
|
||||
|
||||
#: seahub/api2/endpoints/webdav_secret.py:56
|
||||
msgid "Length of WebDav password should be less than 30."
|
||||
#| msgid "Length of WebDav password should be less than 30."
|
||||
msgid "Length of WebDAV password should be less than 30."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/api2/endpoints/wiki2.py:214 seahub/api2/endpoints/wiki2.py:1408
|
||||
@ -1515,11 +1516,11 @@ msgstr "%(site_name)s 團隊"
|
||||
|
||||
#: seahub/group/views.py:105 seahub/share/views.py:137
|
||||
#: seahub/views/__init__.py:451 seahub/views/ajax.py:381
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1247
|
||||
#: seahub/views/file.py:1274 seahub/views/file.py:1498
|
||||
#: seahub/views/file.py:1537 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:259 seahub/views/repo.py:288
|
||||
#: seahub/views/repo.py:412
|
||||
#: seahub/views/ajax.py:427 seahub/views/file.py:1246
|
||||
#: seahub/views/file.py:1273 seahub/views/file.py:1497
|
||||
#: seahub/views/file.py:1536 seahub/views/repo.py:115 seahub/views/repo.py:172
|
||||
#: seahub/views/repo.py:230 seahub/views/repo.py:258 seahub/views/repo.py:287
|
||||
#: seahub/views/repo.py:411
|
||||
msgid "Permission denied"
|
||||
msgstr "沒有權限"
|
||||
|
||||
@ -2497,8 +2498,8 @@ msgstr "共享的資料庫"
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:86
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:175
|
||||
#: seahub/templates/onlyoffice_file_view_react.html:198
|
||||
#: seahub/templates/sdoc_file_view_react.html:64
|
||||
#: seahub/templates/sdoc_file_view_react.html:87
|
||||
#: seahub/templates/sdoc_file_view_react.html:65
|
||||
#: seahub/templates/sdoc_file_view_react.html:88
|
||||
#: seahub/templates/view_file_onlyoffice.html:93
|
||||
#: seahub/templates/view_file_onlyoffice.html:182
|
||||
#: seahub/templates/view_file_onlyoffice.html:205
|
||||
@ -3034,11 +3035,11 @@ msgstr "停用"
|
||||
|
||||
#: seahub/utils/__init__.py:176 seahub/utils/__init__.py:191
|
||||
#: seahub/views/file.py:499 seahub/views/file.py:521 seahub/views/file.py:526
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:869 seahub/views/file.py:1119
|
||||
#: seahub/views/file.py:1145 seahub/views/file.py:1175
|
||||
#: seahub/views/file.py:1318 seahub/views/file.py:1430
|
||||
#: seahub/views/file.py:1573 seahub/views/file.py:1691
|
||||
#: seahub/views/file.py:2162
|
||||
#: seahub/views/file.py:579 seahub/views/file.py:868 seahub/views/file.py:1118
|
||||
#: seahub/views/file.py:1144 seahub/views/file.py:1174
|
||||
#: seahub/views/file.py:1317 seahub/views/file.py:1429
|
||||
#: seahub/views/file.py:1572 seahub/views/file.py:1690
|
||||
#: seahub/views/file.py:2161
|
||||
msgid "Unable to view file"
|
||||
msgstr "無法查看該檔案"
|
||||
|
||||
@ -3070,7 +3071,7 @@ msgstr "指定的歷史記錄不存在"
|
||||
msgid "Unknown error"
|
||||
msgstr "未知錯誤"
|
||||
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:292
|
||||
#: seahub/views/__init__.py:790 seahub/views/repo.py:291
|
||||
#, python-format
|
||||
msgid "\"%s\" does not exist."
|
||||
msgstr "\"%s\" 不存在。"
|
||||
@ -3097,9 +3098,9 @@ msgid "Bad upload link token."
|
||||
msgstr "無效的上傳網址"
|
||||
|
||||
#: seahub/views/ajax.py:338 seahub/views/file.py:512 seahub/views/file.py:543
|
||||
#: seahub/views/file.py:1267 seahub/views/file.py:1532
|
||||
#: seahub/views/file.py:2198 seahub/views/file.py:2203
|
||||
#: seahub/views/file.py:2210
|
||||
#: seahub/views/file.py:1266 seahub/views/file.py:1531
|
||||
#: seahub/views/file.py:2197 seahub/views/file.py:2202
|
||||
#: seahub/views/file.py:2209
|
||||
msgid "File does not exist"
|
||||
msgstr "檔案不存在"
|
||||
|
||||
@ -3127,49 +3128,49 @@ msgstr "檔案編碼不合適"
|
||||
msgid "Unknown file encoding"
|
||||
msgstr "檔案編碼無法識別"
|
||||
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:766
|
||||
#: seahub/views/file.py:879 seahub/views/file.py:980
|
||||
#: seahub/views/file.py:397 seahub/views/file.py:432 seahub/views/file.py:765
|
||||
#: seahub/views/file.py:878 seahub/views/file.py:979
|
||||
#, python-format
|
||||
msgid "File size surpasses %s, can not be opened online."
|
||||
msgstr "檔案大小超過 %s,無法線上查看。"
|
||||
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:914
|
||||
#: seahub/views/file.py:404 seahub/views/file.py:913
|
||||
msgid "The library is encrypted, can not open file online."
|
||||
msgstr "不能線上預覽加密資料庫檔案。"
|
||||
|
||||
#: seahub/views/file.py:938 seahub/views/file.py:1063
|
||||
#: seahub/views/file.py:1389 seahub/views/file.py:1629
|
||||
#: seahub/views/file.py:937 seahub/views/file.py:1062
|
||||
#: seahub/views/file.py:1388 seahub/views/file.py:1628
|
||||
msgid "Error when prepare Office Online file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:973 seahub/views/file.py:1079
|
||||
#: seahub/views/file.py:1409 seahub/views/file.py:1645
|
||||
#: seahub/views/file.py:972 seahub/views/file.py:1078
|
||||
#: seahub/views/file.py:1408 seahub/views/file.py:1644
|
||||
msgid "Error when prepare OnlyOffice file preview page."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1211
|
||||
#: seahub/views/file.py:1210
|
||||
msgid "Unable to download file, invalid file path"
|
||||
msgstr "無法下載檔案,無效的檔案路徑"
|
||||
|
||||
#: seahub/views/file.py:1220
|
||||
#: seahub/views/file.py:1219
|
||||
msgid "Unable to download file, wrong file path"
|
||||
msgstr "無法下載檔案,錯誤的檔案路徑"
|
||||
|
||||
#: seahub/views/file.py:1227
|
||||
#: seahub/views/file.py:1226
|
||||
msgid "Unable to download file."
|
||||
msgstr "無法下載檔案"
|
||||
|
||||
#: seahub/views/file.py:1445 seahub/views/file.py:1710
|
||||
#: seahub/views/repo.py:350
|
||||
#: seahub/views/file.py:1444 seahub/views/file.py:1709
|
||||
#: seahub/views/repo.py:349
|
||||
#, python-format
|
||||
msgid "Share link for %s."
|
||||
msgstr ""
|
||||
|
||||
#: seahub/views/file.py:1846 seahub/views/file.py:1851
|
||||
#: seahub/views/file.py:1845 seahub/views/file.py:1850
|
||||
msgid "Unable to download file"
|
||||
msgstr "無法下載檔案"
|
||||
|
||||
#: seahub/views/file.py:2191
|
||||
#: seahub/views/file.py:2190
|
||||
msgid "The original file does not exist"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
2037
seahub/help/locale/nl_NL/LC_MESSAGES/django.po
Normal file
2037
seahub/help/locale/nl_NL/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
2015
seahub/help/locale/th_TH/LC_MESSAGES/django.po
Normal file
2015
seahub/help/locale/th_TH/LC_MESSAGES/django.po
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user