1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-02 15:57:31 +00:00

Merge branch '6.3'

Conflicts:
	frontend/build/frontend/js/main.js
	frontend/build/frontend/js/main.js.map
	frontend/build/frontend/js/wiki.js
	frontend/build/frontend/js/wiki.js.map
	frontend/src/components/constance.js
	frontend/src/pages/wiki/main-panel.js
	frontend/src/pages/wiki/side-panel.js
	frontend/src/wiki.js
This commit is contained in:
ilearnit 2018-09-12 12:03:07 +08:00
commit 15b5be489d
117 changed files with 15135 additions and 14721 deletions

View File

@ -25,7 +25,7 @@ def make(default=True, lang='en'):
# add strings in 'organization'
os.symlink('../../seahub-extra/seahub_extra/organizations', 'seahub/organizations')
local('django-admin.py makemessages -s -l %s -e py,html -i "thirdpart*" -i "docs*" -i "seahub/two_factor/gateways" -i "seahub/two_factor/templates/two_factor/core/otp_required.html" -i "seahub/two_factor/templates/two_factor/core/phone_register.html" -i "seahub/two_factor/templates/two_factor/profile/profile.html"' % lang)
local('django-admin.py makemessages -s -l %s -e py,html -i "thirdpart*" -i "docs*" -i "seahub/two_factor/gateways" -i "seahub/two_factor/templates/two_factor/core/otp_required.html" -i "seahub/two_factor/templates/two_factor/core/phone_register.html" -i "seahub/two_factor/templates/two_factor/profile/profile.html" -i "seahub/two_factor/models/phone.py" -i "seahub/two_factor/models/base.py" -i "seahub/two_factor/templates/two_factor/core/setup_complete.html"' % lang)
# remove 'organization' symlink to make codebase clean
os.remove('seahub/organizations')

View File

@ -335,7 +335,8 @@ module.exports = {
// solution that requires the user to opt into importing specific locales.
// https://github.com/jmblog/how-to-optimize-momentjs-with-webpack
// You can remove this if you don't use Moment.js:
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /zh-cn|zh-tw|en|cs|nl_NL|fi|fr|de|hu|it|ko|lv|pl|ru|es|es_MX|sv/),
//new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new BundleTracker({filename: './webpack-stats.pro.json'}),
],

View File

@ -96,7 +96,7 @@ class EditorUtilities {
url = serviceUrl + "/lib/" + repoID + "/file" + encodeURIComponent(fileNode.path());
}
} else {
url = serviceUrl + "/#common/lib/" + repoID + "/" + encodeURIComponent(fileNode.path());
url = serviceUrl + "/#common/lib/" + repoID + encodeURIComponent(fileNode.path());
}
return url;
}
@ -108,7 +108,7 @@ class EditorUtilities {
isInternalDirLink(url) {
var re = new RegExp(serviceUrl + "/#[a-z\-]*?/lib/" + "[0-9a-f\-]{36}/.*");
var re = new RegExp(serviceUrl + "/#[a-z\-]*?/lib/" + "[0-9a-f\-]{36}.*");
return re.test(url);
}

View File

@ -1,4 +1,3 @@
let slug, repoID, serviceUrl, initialFilePath;
export const dirPath = '/';
export const gettext = window.gettext;
@ -10,12 +9,10 @@ export const mediaUrl = window.app.config.mediaUrl;
export const siteTitle = window.app.config.siteTitle;
export const logoWidth = window.app.config.logoWidth;
export const logoHeight = window.app.config.logoHeight;
export const isPro = window.app.config.isPro === "True";
if (window.wiki) {
slug = window.wiki.config.slug;
repoID = window.wiki.config.repoId;
serviceUrl = window.wiki.config.serviceUrl;
initialFilePath = window.wiki.config.initial_file_path;
}
export { slug, repoID, serviceUrl, initialFilePath }
export const slug = window.wiki ? window.wiki.config.slug : '';
export const repoID = window.wiki ? window.wiki.config.repoId : '';
export const serviceUrl = window.wiki ? window.wiki.config.serviceUrl : '';
export const initialFilePath = window.wiki ? window.wiki.config.initial_file_path : '';
export const permission = window.wiki ? window.wiki.config.permission : '';

View File

@ -6,6 +6,8 @@ import WikiOutline from './wiki-outline';
var URL = require('url-parse');
const gettext = window.gettext;
require('@seafile/seafile-editor/src/lib/code-hight-package');
const contentClass = "wiki-md-viewer-rendered-content";
@ -181,7 +183,7 @@ class MarkdownViewer extends React.Component {
renderingContent={this.state.renderingContent} html={this.state.html}
onLinkClick={this.props.onLinkClick}
/>
<p id="wiki-page-last-modified">Last modified by {this.props.latestContributor}, <span>{this.props.lastModified}</span></p>
<p id="wiki-page-last-modified">{gettext("Last modified by")} {this.props.latestContributor}, <span>{this.props.lastModified}</span></p>
</div>
<div className="markdown-outline">
<WikiOutline

View File

@ -59,7 +59,6 @@ class Rename extends React.Component {
render() {
let type = this.props.currentNode.type;
let preName = this.props.currentNode.name;
return (
<Modal isOpen={true} toggle={this.toggle}>
<ModalHeader toggle={this.toggle}>{type === 'file' ? gettext("Rename File") : gettext("Rename Folder") }</ModalHeader>

View File

@ -1,101 +1,24 @@
import React from 'react'
import Delete from './menu-dialog/delete-dialog';
import CreateFlieFolder from './menu-dialog/create-fileforder-dialog';
import Rename from './menu-dialog/rename-dialog';
const gettext = window.gettext;
class NodeMenu extends React.Component {
constructor(props) {
super(props);
this.state = {
showDelete: false,
showAddFileFolder: false,
showRename: false,
isFile: false
};
}
toggleDelete = () => {
this.setState({showDelete: !this.state.showDelete});
this.props.onHideContextMenu();
}
toggleAddFileFolder = (ev, flag) => {
if(flag){
this.setState({
showAddFileFolder: !this.state.showAddFileFolder,
isFile: true
});
} else {
this.setState({
showAddFileFolder: !this.state.showAddFileFolder,
isFile: false
})
}
this.props.onHideContextMenu();
this.props.toggleAddFileFolder(flag);
}
toggleRename = () => {
this.setState({showRename: !this.state.showRename});
this.props.onHideContextMenu();
this.props.toggleRename();
}
onDelete = () => {
this.setState({showDelete: !this.state.showDelete});
this.props.onDeleteNode();
}
deleteCancel = () => {
this.setState({showDelete: !this.state.showDelete});
}
onAddFile = (filePath) => {
this.setState({
showAddFileFolder: !this.state.showAddFileFolder,
isFile: false
});
this.props.onAddFileNode(filePath);
}
addFileCancel = () => {
this.setState({
showAddFileFolder: !this.state.showAddFileFolder,
isFile: false
});
}
onAddFolder = (dirPath) => {
this.setState({
showAddFileFolder: !this.state.showAddFileFolder,
isFile: false
});
this.props.onAddFolderNode(dirPath);
}
addFolderCancel = () => {
this.setState({
showAddFileFolder: !this.state.showAddFileFolder,
isFile: false
});
}
onRename = (newName) => {
this.setState({showRename: !this.state.showRename});
this.props.onRenameNode(newName);
}
renameCancel = () => {
this.setState({showRename: !this.state.showRename});
toggleDelete = () => {
this.props.toggleDelete();
}
renderNodeMenu() {
let style = null;
let position = this.props.menuPosition;
if (this.props.isShowMenu) {
style = {position: "fixed",left: position.left, top: position.top, display: 'block'};
}
let style = {position: "fixed",left: position.left, top: position.top, display: 'block'};
if (this.props.currentNode.type === "dir") {
@ -134,30 +57,6 @@ class NodeMenu extends React.Component {
return (
<div className="node-menu-module">
{this.renderNodeMenu()}
{this.state.showDelete &&
<Delete
currentNode={this.props.currentNode}
handleSubmit={this.onDelete}
toggleCancel={this.deleteCancel}
/>
}
{this.state.showAddFileFolder &&
<CreateFlieFolder
isFile={this.state.isFile}
currentNode={this.props.currentNode}
onAddFolder={this.onAddFolder}
addFolderCancel={this.addFolderCancel}
onAddFile={this.onAddFile}
addFileCancel={this.addFileCancel}
/>
}
{this.state.showRename &&
<Rename
currentNode={this.props.currentNode}
onRename={this.onRename}
toggleCancel={this.renameCancel}
/>
}
</div>
)
}

View File

@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { serviceUrl } from '../constance';
class TreeDirList extends React.Component {
constructor(props) {
@ -18,7 +18,7 @@ class TreeDirList extends React.Component {
return (
<tr className='row' onMouseEnter={this.onMouseEnter} onMouseLeave={this.onMouseLeave}>
<td className="dirent-icon" style={{width: "5%"}}>
<img src={node.type === "dir" ? "/media/img/folder-192.png" : "/media/img/file/192/txt.png"}></img>
<img src={node.type === "dir" ? serviceUrl + "/media/img/folder-192.png" : serviceUrl + "/media/img/file/192/txt.png"}></img>
</td>
<td style={{width: "60%"}}>
<a className="custom-link" onClick={this.onMainNodeClick}>{node.name}</a>

View File

@ -1,5 +1,6 @@
import React from 'react';
import MenuControl from '../menu-component/node-menu-control'
import MenuControl from '../menu-component/node-menu-control';
import { permission } from '../constance';
function sortByType(a, b) {
if (a.type == "dir" && b.type != "dir") {
@ -110,7 +111,6 @@ class TreeNodeView extends React.Component {
paddingLeft={this.props.paddingLeft}
treeView={this.props.treeView}
isNodeItemFrezee={this.props.isNodeItemFrezee}
permission={this.props.permission}
currentFilePath={this.props.currentFilePath}
onDirCollapse={this.props.onDirCollapse}
/>
@ -124,7 +124,7 @@ class TreeNodeView extends React.Component {
}
renderMenuController() {
if (this.props.permission === "rw") {
if (permission === "True") {
let isShow = (this.props.node.path === this.props.currentFilePath);
return (
<div className="right-icon">

View File

@ -1,5 +1,9 @@
import Node from './node';
import moment from 'moment';
import { bytesToSize } from '../utils';
const lang = window.app.config.lang;
moment.locale(lang)
class Tree {
@ -90,8 +94,7 @@ class Tree {
return findNode;
}
setNodeToActivated(node) {
this.setTreeToUnActivated();
expandNode(node) {
let treeNode = this.findNodeFromTree(node);
if (treeNode) {
treeNode.isExpanded = true;
@ -104,7 +107,16 @@ class Tree {
return false;
}
setTreeToUnActivated() {
collapseNode(node) {
let treeNode = this.findNodeFromTree(node);
if (treeNode) {
treeNode.isExpanded = false;
return true;
}
return false;
}
resetTreeState() {
function cb(treeNode) {
treeNode.isExpanded = false;
return false;
@ -172,7 +184,7 @@ class Tree {
var node = new Node({
name: model.name,
type: model.type,
size: model.size,
size: bytesToSize(model.size),
last_update_time: moment.unix(model.last_update_time).fromNow(),
isExpanded: false
});
@ -200,7 +212,7 @@ class Tree {
let node = new Node({
name: nodeObj.name,
type: nodeObj.type,
size: nodeObj.size,
size: bytesToSize(nodeObj.size),
last_update_time: moment.unix(nodeObj.last_update_time).fromNow(),
isExpanded: false
});
@ -226,7 +238,7 @@ class Tree {
var node = new Node({
name: node.name,
type: node.type,
size: node.size,
size: bytesToSize(node.size),
last_update_time: moment.unix(node.last_update_time).fromNow(),
isExpanded: false
});

View File

@ -71,6 +71,7 @@ img[src=""] {
.cur-view-container {
display: flex;
min-height: 0;
overflow: auto;
}
.cur-view-container .markdown-container {

View File

@ -1,5 +1,5 @@
import React, { Component } from 'react';
import { gettext, repoID, serviceUrl, slug, siteRoot } from '../../components/constance';
import { gettext, repoID, serviceUrl, slug, siteRoot, isPro } from '../../components/constance';
import Search from '../../components/search';
import Account from '../../components/account';
import MarkdownViewer from '../../components/markdown-viewer';
@ -49,9 +49,10 @@ class MainPanel extends Component {
<a className="btn btn-secondary btn-topbar" onClick={this.onEditClick}>{gettext("Edit Page")}</a>
</div>
<div className="common-toolbar">
<Search onSearchedClick={this.props.onSearchedClick}
placeholder={gettext("Search files in this wiki")}
/>
{isPro && <Search onSearchedClick={this.props.onSearchedClick}
placeholder={gettext("Search files in this wiki")}
/>
}
<Account />
</div>
</div>

View File

@ -3,6 +3,9 @@ import TreeView from '../../components/tree-view/tree-view';
import { siteRoot, logoPath, mediaUrl, siteTitle, logoWidth, logoHeight } from '../../components/constance';
import NodeMenu from '../../components/menu-component/node-menu';
import MenuControl from '../../components/menu-component/node-menu-control';
import Delete from '../../components/menu-component/menu-dialog/delete-dialog';
import Rename from '../../components/menu-component/menu-dialog/rename-dialog';
import CreateFlieFolder from '../../components/menu-component/menu-dialog/create-fileforder-dialog';
const gettext = window.gettext;
@ -19,7 +22,11 @@ class SidePanel extends Component {
top: 0
},
isLoadFailed: false,
isMenuIconShow: false
isMenuIconShow: false,
showDelete: false,
showAddFileFolder: false,
showRename: false,
isFile: false
}
this.searchedPath = null;
}
@ -71,26 +78,52 @@ class SidePanel extends Component {
}
onHideContextMenu = () => {
if (!this.state.isShowMenu) {
return;
}
this.setState({
isShowMenu: false,
isNodeItemFrezee: false
})
}
onAddFolderNode = (dirPath) => {
this.props.onAddFolderNode(dirPath);
toggleAddFileFolder = (flag) => {
let isFile = flag === true ? true : false;
this.setState({
showAddFileFolder: !this.state.showAddFileFolder,
isFile: isFile
});
this.onHideContextMenu();
}
toggleRename = () => {
this.setState({showRename: !this.state.showRename});
this.onHideContextMenu();
}
toggleDelete = () => {
this.setState({showDelete: !this.state.showDelete});
this.onHideContextMenu();
}
onAddFolderNode = (dirPath) => {
this.setState({showAddFileFolder: !this.state.showAddFileFolder});
this.props.onAddFolderNode(dirPath);
}
onAddFileNode = (filePath) => {
this.setState({showAddFileFolder: !this.state.showAddFileFolder});
this.props.onAddFileNode(filePath);
}
onRenameNode = (newName) => {
this.setState({showRename: !this.state.showRename})
let node = this.state.currentNode;
this.props.onRenameNode(node, newName)
}
onDeleteNode = () => {
this.setState({showDelete: !this.state.showDelete})
let node = this.state.currentNode;
this.props.onDeleteNode(node);
}
@ -109,6 +142,22 @@ class SidePanel extends Component {
document.removeEventListener('click', this.onHideContextMenu);
}
addFolderCancel = () => {
this.setState({showAddFileFolder: !this.state.showAddFileFolder});
}
addFileCancel = () => {
this.setState({showAddFileFolder: !this.state.showAddFileFolder});
}
deleteCancel = () => {
this.setState({showDelete: !this.state.showDelete})
}
renameCancel = () => {
this.setState({showRename: !this.state.showRename})
}
render() {
return (
<div className={`wiki-side-panel ${this.props.closeSideBar ? "": "left-zero"}`}>
@ -135,7 +184,6 @@ class SidePanel extends Component {
<div className="wiki-pages-container">
{this.props.treeData &&
<TreeView
permission={this.props.permission}
currentFilePath={this.props.currentFilePath}
treeData={this.props.treeData}
currentNode={this.state.currentNode}
@ -145,16 +193,39 @@ class SidePanel extends Component {
onDirCollapse={this.props.onDirCollapse}
/>
}
{this.state.isShowMenu &&
<NodeMenu
isShowMenu={this.state.isShowMenu}
menuPosition={this.state.menuPosition}
currentNode={this.state.currentNode}
onHideContextMenu={this.onHideContextMenu}
onDeleteNode={this.onDeleteNode}
onAddFileNode={this.onAddFileNode}
onAddFolderNode={this.onAddFolderNode}
onRenameNode={this.onRenameNode}
toggleAddFileFolder={this.toggleAddFileFolder}
toggleRename={this.toggleRename}
toggleDelete={this.toggleDelete}
/>
}
{this.state.showDelete &&
<Delete
currentNode={this.state.currentNode}
handleSubmit={this.onDeleteNode}
toggleCancel={this.deleteCancel}
/>
}
{this.state.showAddFileFolder &&
<CreateFlieFolder
isFile={this.state.isFile}
currentNode={this.state.currentNode}
onAddFolder={this.onAddFolderNode}
addFolderCancel={this.addFolderCancel}
onAddFile={this.onAddFileNode}
addFileCancel={this.addFileCancel}
/>
}
{this.state.showRename &&
<Rename
currentNode={this.state.currentNode}
onRename={this.onRenameNode}
toggleCancel={this.renameCancel}
/>
}
</div>
</div>
</div>

View File

@ -34,14 +34,47 @@ class Wiki extends Component {
}
componentDidMount() {
this.initSidePanelData();
this.initMainPanelData(initialFilePath);
this.initWikiData(initialFilePath);
}
initMainPanelData(filePath) {
if (!this.isMarkdownFile(filePath)) {
filePath = "/home.md";
}
initWikiData(filePath){
this.setState({isFileLoading: true});
editorUtilities.getFiles().then((files) => {
// construct the tree object
var treeData = new Tree();
treeData.parseListToTree(files);
let node = treeData.getNodeByPath(filePath);
treeData.expandNode(node);
if (node.isDir()) {
this.exitViewFileState(treeData, node);
this.setState({isFileLoading: false});
} else {
treeData.expandNode(node);
editorUtilities.getWikiFileContent(slug, filePath).then(res => {
this.setState({
tree_data: treeData,
content: res.data.content,
latestContributor: res.data.latest_contributor,
lastModified: moment.unix(res.data.last_modified).fromNow(),
permission: res.data.permission,
filePath: filePath,
isFileLoading: false
})
});
const hash = window.location.hash;
let fileUrl = serviceUrl + '/wikis/' + slug + filePath + hash;
window.history.pushState({urlPath: fileUrl, filePath: filePath}, filePath, fileUrl);
}
}, () => {
console.log("failed to load files");
this.setState({
isLoadFailed: true
})
})
}
initMainPanelData(filePath){
this.setState({isFileLoading: true});
editorUtilities.getWikiFileContent(slug, filePath)
.then(res => {
@ -60,29 +93,14 @@ class Wiki extends Component {
window.history.pushState({urlPath: fileUrl, filePath: filePath}, filePath, fileUrl);
}
initSidePanelData() {
editorUtilities.getFiles().then((files) => {
// construct the tree object
var treeData = new Tree();
treeData.parseListToTree(files);
let homeNode = this.getHomeNode(treeData);
this.setState({
tree_data: treeData,
changedNode: homeNode
});
}, () => {
console.log("failed to load files");
this.setState({
isLoadFailed: true
})
})
}
onLinkClick = (event) => {
const url = event.target.href;
if (this.isInternalMarkdownLink(url)) {
let path = this.getPathFromInternalMarkdownLink(url);
this.initMainPanelData(path);
} else if (this.isInternalDirLink(url)) {
let path = this.getPathFromInternalDirLink(url);
this.initWikiData(path);
} else {
window.location.href = url;
}
@ -100,17 +118,15 @@ class Wiki extends Component {
let tree = this.state.tree_data.clone();
let node = tree.getNodeByPath(path);
tree.setNodeToActivated(node);
let path = node.path; //node is file
this.enterViewFileState(tree, node, path);
tree.expandNode(node);
this.enterViewFileState(tree, node, node.path);
}
}
onMainNavBarClick = (nodePath) => {
let tree = this.state.tree_data.clone();
let node = tree.getNodeByPath(nodePath);
tree.setNodeToActivated(node);
tree.expandNode(node);
this.exitViewFileState(tree, node);
@ -121,7 +137,7 @@ class Wiki extends Component {
onMainNodeClick = (node) => {
let tree = this.state.tree_data.clone();
tree.setNodeToActivated(node);
tree.expandNode(node);
if (node.isMarkdown()) {
this.initMainPanelData(node.path);
this.enterViewFileState(tree, node, node.path);
@ -141,6 +157,13 @@ class Wiki extends Component {
this.enterViewFileState(tree, node, node.path);
} else if(node instanceof Node && node.isDir()){
let tree = this.state.tree_data.clone();
if (this.state.filePath === node.path) {
if (node.isExpanded) {
tree.collapseNode(node);
} else {
tree.expandNode(node);
}
}
this.exitViewFileState(tree, node);
} else {
const w=window.open('about:blank');
@ -181,7 +204,7 @@ class Wiki extends Component {
let parentNode = tree.getNodeByPath(parentPath);
tree.addNodeToParent(node, parentNode);
if (this.state.isViewFileState) {
tree.setNodeToActivated(node);
tree.expandNode(node);
this.setState({
tree_data: tree,
changedNode: node
@ -205,7 +228,7 @@ class Wiki extends Component {
let parentNode = tree.getNodeByPath(parentPath);
tree.addNodeToParent(node, parentNode);
if (this.state.isViewFileState) {
tree.setNodeToActivated(node);
tree.expandNode(node);
this.setState({
tree_data: tree,
changedNode: node
@ -221,15 +244,17 @@ class Wiki extends Component {
let filePath = node.path;
if (node.isMarkdown()) {
editorUtilities.renameFile(filePath, newName).then(res => {
let date = new Date().getTime()/1000;
let cloneNode = node.clone();
tree.updateNodeParam(node, "name", newName);
node.name = newName;
let date = new Date().getTime()/1000;
tree.updateNodeParam(node, "last_update_time", moment.unix(date).fromNow());
node.last_update_time = moment.unix(date).fromNow();
if (this.state.isViewFileState) {
if (this.isModifyCurrentFile(node)) {
tree.setNodeToActivated(node);
if (this.isModifyCurrentFile(cloneNode)) {
tree.expandNode(node);
this.setState({
tree_data: tree,
changedNode: node
@ -239,22 +264,29 @@ class Wiki extends Component {
this.setState({tree_data: tree});
}
} else {
this.setState({tree_data: tree});
let parentNode = tree.findNodeParentFromTree(node);
this.setState({
tree_data: tree,
changedNode: parentNode
});
}
})
} else if (node.isDir()) {
editorUtilities.renameDir(filePath, newName).then(res => {
let currentFilePath = this.state.filePath;// the sequence is must right
let currentFilePath = this.state.filePath;
let currentFileNode = tree.getNodeByPath(currentFilePath);
let date = new Date().getTime()/1000;
let nodePath = node.path;
tree.updateNodeParam(node, "name", newName);
node.name = newName; // just synchronization node data && tree data;
node.name = newName;
let date = new Date().getTime()/1000;
tree.updateNodeParam(node, "last_update_time", moment.unix(date).fromNow());
node.last_update_time = moment.unix(date).fromNow();
if (this.state.isViewFileState) {
if (this.isModifyContainsCurrentFile(node)) {
tree.setNodeToActivated(currentFileNode);
if (currentFilePath.indexOf(nodePath) > -1) {
tree.expandNode(currentFileNode);
this.setState({
tree_data: tree,
changedNode: currentFileNode
@ -264,8 +296,11 @@ class Wiki extends Component {
this.setState({tree_data: tree});
}
} else {
if (node.path.indexOf(currentFilePath) > -1) {
tree.setNodeToActivated(currentFileNode);
if (nodePath === currentFilePath) { // old node
tree.expandNode(node);
this.exitViewFileState(tree, node);
} else if (node.path.indexOf(currentFilePath) > -1) { // new node
tree.expandNode(currentFileNode);
this.exitViewFileState(tree, currentFileNode);
} else {
this.setState({tree_data: tree});
@ -297,7 +332,7 @@ class Wiki extends Component {
if (this.state.isViewFileState) {
if (isCurrentFile) {
let homeNode = this.getHomeNode(tree);
tree.setNodeToActivated(homeNode);
tree.expandNode(homeNode);
this.setState({
tree_data: tree,
changedNode: homeNode
@ -399,6 +434,11 @@ class Wiki extends Component {
return re.test(url);
}
isInternalDirLink(url) {
var re = new RegExp(serviceUrl + '/#[a-z\-]*?/lib/' + repoID + '/.*');
return re.test(url);
}
getPathFromInternalMarkdownLink(url) {
var re = new RegExp(serviceUrl + '/lib/' + repoID + '/file' + "(.*\.md)");
var array = re.exec(url);
@ -406,6 +446,22 @@ class Wiki extends Component {
return path;
}
getPathFromInternalDirLink(url) {
var re = new RegExp(serviceUrl + '/#[a-z\-]*?/lib/' + repoID + "(/.*)");
var array = re.exec(url);
var path = decodeURIComponent(array[1]);
var dirPath = path.substring(1);
var re = new RegExp("(^/.*)");
if (re.test(dirPath)) {
path = dirPath;
} else {
path = '/' + dirPath
}
return path;
}
render() {
return (
<div id="main" className="wiki-main">
@ -414,7 +470,6 @@ class Wiki extends Component {
closeSideBar={this.state.closeSideBar}
onCloseSide ={this.onCloseSide}
treeData={this.state.tree_data}
permission={this.state.permission}
currentFilePath={this.state.filePath}
changedNode={this.state.changedNode}
onAddFolderNode={this.onAddFolderNode}

File diff suppressed because it is too large Load Diff

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Arabic (http://www.transifex.com/haiwen/seahub/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,21 +18,9 @@ msgstr ""
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "مدير النظام"
#: frontend/src/components/account.js:127
msgid "Used"
@ -40,47 +28,52 @@ msgstr ""
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "إعدادات"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "تسجيل خروج"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "ملف جديد"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "مجلد جديد"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "الاسم"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "تقديم"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "إلغاء"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -98,32 +91,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "اعادة تسمية ملف"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "اعادة تسمية مجلد"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "تعديل اسم"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "بحث عن ملفات في هذه ال wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "الحجم"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "آخر تحديث"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "تحرير صفحة"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "صفحات"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -209,11 +222,11 @@ msgstr "الاسم مطلوب"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
msgstr ""
msgstr "الاسم لا يجب ان يحتوي على '/'."
#: static/scripts/app/models/repo.js:41 static/scripts/app/views/share.js:334
msgid "Please enter password"
@ -348,7 +361,7 @@ msgstr "تم نسخ %(name)s بنجاح"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -611,7 +624,7 @@ msgid "locked by {placeholder}"
msgstr "مقفل بواسطة {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "تم حذف %(name)s بنجاح"
@ -966,7 +979,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "تحويل مكتبة"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -1007,7 +1020,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "حذف مستخدم"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"

File diff suppressed because it is too large Load Diff

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Bulgarian (http://www.transifex.com/haiwen/seahub/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,18 +18,6 @@ msgstr ""
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
@ -46,41 +34,46 @@ msgstr ""
msgid "Log out"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -98,33 +91,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr ""
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -209,7 +222,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -348,7 +361,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -440,7 +453,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "Зареждане..."
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -474,7 +487,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "Моля проверете връзката."
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
@ -611,7 +624,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Catalan (http://www.transifex.com/haiwen/seahub/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,73 +17,66 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Administrador de sistema"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Usat"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Configuració"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Tanca la sessió"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "Crea un fitxer"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Nom"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Envia"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "Cancela"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "Elimina"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,32 +90,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
msgstr "Reanomena el fitxer"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Reanomena"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Cerca fitxers al wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Mida"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Última actualització"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Edita la pàgina"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Pàgines"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -199,16 +212,16 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:430
#: static/scripts/app/views/group.js:65 static/scripts/common.js:643
msgid "Just now"
msgstr ""
msgstr "Ara mateix"
#: static/scripts/app/models/repo.js:34
msgid "Name is required"
msgstr ""
msgstr "El nom és obligatori"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -216,19 +229,19 @@ msgstr ""
#: static/scripts/app/models/repo.js:41 static/scripts/app/views/share.js:334
msgid "Please enter password"
msgstr ""
msgstr "Introduïu la contrasenya"
#: static/scripts/app/models/repo.js:42 static/scripts/app/views/share.js:342
msgid "Please enter the password again"
msgstr ""
msgstr "Torneu a introduir la contrasenya"
#: static/scripts/app/models/repo.js:44 static/scripts/app/views/share.js:338
msgid "Password is too short"
msgstr ""
msgstr "La contrasenya és massa curta"
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
msgstr ""
msgstr "Les contrasenyes no coincideixen"
#: static/scripts/app/models/repo.js:63 static/scripts/common.js:345
msgid "Read-Only library"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Lectura-Escriptura"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Només lectura"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -258,27 +271,27 @@ msgstr ""
#: static/scripts/app/views/details.js:47
msgid "New files"
msgstr ""
msgstr "Fitxers nous"
#: static/scripts/app/views/details.js:53
msgid "Deleted files"
msgstr ""
msgstr "Fitxers eliminats"
#: static/scripts/app/views/details.js:59
msgid "Renamed or Moved files"
msgstr ""
msgstr "Fitxers moguts o reanomenats"
#: static/scripts/app/views/details.js:65
msgid "Modified files"
msgstr ""
msgstr "Fitxers modificats"
#: static/scripts/app/views/details.js:71
msgid "New directories"
msgstr ""
msgstr "Directoris nous"
#: static/scripts/app/views/details.js:77
msgid "Deleted directories"
msgstr ""
msgstr "Directoris eliminats"
#: static/scripts/app/views/device.js:42
#: static/scripts/sysadmin-app/views/device.js:42
@ -319,11 +332,11 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:118
msgid "Saving..."
msgstr ""
msgstr "Guardant..."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
msgid "Failed."
msgstr ""
msgstr "Error."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
#: static/scripts/app/views/dialogs/dirent-mvcp.js:159
@ -334,7 +347,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:188
#: static/scripts/app/views/dir.js:1173
msgid "Invalid destination path"
msgstr ""
msgstr "La ruta de destí no és vàlida"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:207
#: static/scripts/app/views/dirent.js:296
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -359,7 +372,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/dir.js:82
#: static/scripts/sysadmin-app/views/group-members.js:51
msgid "It is required."
msgstr ""
msgstr "És obligatori."
#: static/scripts/app/views/dialogs/dirent-smart-link.js:50
msgid "Internal link copied to clipboard"
@ -417,7 +430,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:222
msgid "Please click and choose a directory."
msgstr ""
msgstr "Seleccioneu un directori"
#: static/scripts/app/views/dialogs/repo-history-settings.js:36
msgid "{placeholder} History Setting"
@ -439,7 +452,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "S'està carregant..."
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -468,16 +481,16 @@ msgstr ""
#: static/scripts/app/views/dir.js:409
msgid "Password is required."
msgstr ""
msgstr "Es requereix contrasenya."
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "Verifiqueu la connexió a la xarxa"
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
msgstr ""
msgstr "Cal el nom complet, no només l'extensió."
#: static/scripts/app/views/dir.js:779
msgid "New Markdown File"
@ -497,11 +510,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1035 static/scripts/app/views/dir.js:1178
msgid "Processing..."
msgstr ""
msgstr "Processant..."
#: static/scripts/app/views/dir.js:1072
msgid "Successfully deleted %(name)s."
msgstr ""
msgstr "S'ha eliminat %(name)s."
#: static/scripts/app/views/dir.js:1074
msgid "Successfully deleted %(name)s and 1 other item."
@ -509,7 +522,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1076
msgid "Successfully deleted %(name)s and %(amount)s other items."
msgstr ""
msgstr "S'ha eliminat %(name)s i %(amount)s elements més."
#: static/scripts/app/views/dir.js:1085
msgid "Failed to delete %(name)s."
@ -525,11 +538,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1102
msgid "Delete Items"
msgstr ""
msgstr "Elimina els elements"
#: static/scripts/app/views/dir.js:1103
msgid "Are you sure you want to delete these selected items?"
msgstr ""
msgstr "Esteu segur que voleu eliminar els elements seleccionats?"
#: static/scripts/app/views/dir.js:1117
msgid "Move selected item(s) to:"
@ -541,7 +554,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1222 static/scripts/app/views/dir.js:1384
msgid "Successfully moved %(name)s."
msgstr ""
msgstr "S'ha mogut %(name)s."
#: static/scripts/app/views/dir.js:1224 static/scripts/app/views/dir.js:1386
msgid "Successfully moved %(name)s and 1 other item."
@ -549,11 +562,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1226 static/scripts/app/views/dir.js:1388
msgid "Successfully moved %(name)s and %(amount)s other items."
msgstr ""
msgstr "S'ha mogut %(name)s i %(amount)s més."
#: static/scripts/app/views/dir.js:1231 static/scripts/app/views/dir.js:1392
msgid "Successfully copied %(name)s."
msgstr ""
msgstr "S'ha copiat %(name)s."
#: static/scripts/app/views/dir.js:1233 static/scripts/app/views/dir.js:1394
msgid "Successfully copied %(name)s and 1 other item."
@ -561,7 +574,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1235 static/scripts/app/views/dir.js:1396
msgid "Successfully copied %(name)s and %(amount)s other items."
msgstr ""
msgstr "S'ha copiat %(name)s i %(amount)s més."
#: static/scripts/app/views/dir.js:1251
msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)."
@ -569,7 +582,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1253
msgid "Internal error. Failed to move %(name)s."
msgstr ""
msgstr "Error intern. No s'ha mogut %(name)s."
#: static/scripts/app/views/dir.js:1257
msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)."
@ -577,7 +590,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1259
msgid "Internal error. Failed to copy %(name)s."
msgstr ""
msgstr "Error intern. No s'ha copiat %(name)s."
#: static/scripts/app/views/dir.js:1301
msgid "Moving file %(index)s of %(total)s"
@ -610,21 +623,21 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
msgstr "S'ha eliminat %(name)s"
#: static/scripts/app/views/fileupload.js:10
msgid "File is too big"
msgstr ""
msgstr "El fitxer és massa gran"
#: static/scripts/app/views/fileupload.js:11
msgid "File is too small"
msgstr ""
msgstr "El fitxer és massa petit"
#: static/scripts/app/views/fileupload.js:12
msgid "Filetype not allowed"
msgstr ""
msgstr "Aquest tipus de fitxer no està permès"
#: static/scripts/app/views/fileupload.js:13
msgid "Maximum number of files exceeded"
@ -632,11 +645,11 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:14
msgid "Uploaded bytes exceed file size"
msgstr ""
msgstr "El total de bytes pujats és superior a la mida del fitxer"
#: static/scripts/app/views/fileupload.js:15
msgid "Empty file upload result"
msgstr ""
msgstr "S'ha pujat un fitxer buit"
#: static/scripts/app/views/fileupload.js:17
#: static/scripts/app/views/fileupload.js:225
@ -646,7 +659,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/address-book-group-item.js:152
#: static/scripts/sysadmin-app/views/system-repo.js:52
msgid "Error"
msgstr ""
msgstr "Error"
#: static/scripts/app/views/fileupload.js:18
msgid "uploaded"
@ -658,7 +671,7 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:20
msgid "Start"
msgstr ""
msgstr "Inicia"
#: static/scripts/app/views/fileupload.js:46
msgid "File Uploading..."
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "Error. Verifiqueu la connexió a la xarxa"
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"
@ -751,19 +764,19 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "Abandona el grup"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "Esteu segur que voleu abandonar el grup?"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "Surt del grup"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
msgstr ""
msgstr "Esteu segur que voleu abandonar aquest grup?"
#: static/scripts/app/views/invitation.js:37
#: static/scripts/sysadmin-app/views/address-book-group-item.js:57
@ -809,7 +822,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Esteu segur que voleu eliminar %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
@ -874,7 +887,7 @@ msgstr ""
#: static/scripts/app/views/share.js:485
msgid "Please input at least an email."
msgstr ""
msgstr "Introduïu un correu electrònic com a mínim."
#: static/scripts/app/views/share.js:502
msgid "Successfully sent to {placeholder}"
@ -945,7 +958,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "El nom és obligatori."
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -965,7 +978,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "Transfereix la llibreria"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -990,7 +1003,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:82
#: static/scripts/sysadmin-app/views/group.js:30
msgid "Delete Group"
msgstr ""
msgstr "Elimina el grup"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:83
msgid "Deleted group {group_name}"
@ -1006,7 +1019,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "Elimina l'usuari"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"
@ -1018,7 +1031,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "Elimina membre"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1026,12 +1039,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "Deixa de compartir la llibreria"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "Esteu segur que voleu deixar de compartir %s ?"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"
@ -1061,7 +1074,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "Restaura la llibreria"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format

File diff suppressed because it is too large Load Diff

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Czech (http://www.transifex.com/haiwen/seahub/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,18 +20,6 @@ msgstr ""
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr "Upravit stránku"
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr "Wiki stránky"
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr "Stránky"
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr "Systémový administrátor"
@ -48,41 +36,46 @@ msgstr "Nastavení"
msgid "Log out"
msgstr "Odhlástit"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Nový soubor"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Nová složka"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr "Název"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr "Zadejte název"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr "Odeslat"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Zrišit"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -100,88 +93,108 @@ msgstr "ANO"
msgid "NO"
msgstr "NE"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Přejmenovat soubor"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Přejmenovat adresář"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr "Zadejte název nového souboru:"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr "Zadejte název nové složky:"
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Přejmenovat"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Vyhledat soubory v této wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Velikost"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Poslední aktualizace"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Upravit stránku"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wiki stránky"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Stránky"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
msgstr "Zobrazit/Upravit knihovnu v cloudu"
#: seahub/templates/priv/ali.js:9
msgid "Preview-on-Cloud library"
msgstr ""
msgstr "Zobrazit knihovnu v cloudu"
#: seahub/templates/priv/ali.js:10
msgid "Admin access"
msgstr ""
msgstr "Přistup administrátora"
#: seahub/templates/priv/ali.js:12
msgid "Read-Write folder"
msgstr ""
msgstr "Číst/Upravovat složku"
#: seahub/templates/priv/ali.js:13
msgid "Read-Only folder"
msgstr ""
msgstr "Číst složku"
#: seahub/templates/priv/ali.js:14
msgid "Preview-Edit-on-Cloud folder"
msgstr ""
msgstr "Zobrazit/Upravovat složku v cloudu"
#: seahub/templates/priv/ali.js:15
msgid "Preview-on-Cloud folder"
msgstr ""
msgstr "Zobrazit složku v cloudu"
#: seahub/templates/priv/ali.js:17
msgid "Preview-Edit-on-Cloud"
msgstr ""
msgstr "Zobrazit/Upravit v cloudu"
#: seahub/templates/priv/ali.js:18
msgid "Preview-on-Cloud"
msgstr ""
msgstr "Zobrazit v cloudu"
#: seahub/templates/priv/ali.js:21
msgid "Read-Write-Sync"
msgstr ""
msgstr "Číst/Upravit/Synchronizovat"
#: seahub/templates/priv/ali.js:22
msgid "Read-Only-Sync"
msgstr ""
msgstr "Číst/Synchronizovat"
#: seahub/templates/priv/ali.js:23
msgid "Co-Owner"
msgstr ""
msgstr "Spolumajitel"
#: seahub/templates/priv/ali.js:24
msgid "Edit-on-Cloud"
msgstr ""
msgstr "Upravit v cloudu"
#: seahub/templates/priv/ali.js:25
msgid "View-on-Cloud"
msgstr ""
msgstr "Zobrazit v cloudu"
#: static/scripts/app/models/deleted-repo.js:19
#: static/scripts/app/models/repo.js:59 static/scripts/common.js:343
@ -211,7 +224,7 @@ msgstr "Jméno je povinné."
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -350,7 +363,7 @@ msgstr "Úspěšně zkopírováno %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -613,7 +626,7 @@ msgid "locked by {placeholder}"
msgstr "uzamčeno {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Úspěšně smazáno %(name)s"

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Danish (Denmark) (http://www.transifex.com/haiwen/seahub/language/da_DK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,18 +18,6 @@ msgstr ""
"Language: da_DK\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
@ -46,45 +34,50 @@ msgstr ""
msgid "Log out"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Navn"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Udfør"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "Afbryd"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "Slet"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -98,33 +91,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Størrelse"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Sidste opdatering"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr ""
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -209,7 +222,7 @@ msgstr "Navn er nødvendigt"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -238,12 +251,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Read-Write"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Read-Only"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -324,7 +337,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
msgid "Failed."
msgstr ""
msgstr "Fejlet."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
#: static/scripts/app/views/dialogs/dirent-mvcp.js:159
@ -348,7 +361,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -611,7 +624,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
@ -810,7 +823,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Er du sikker på du vil slette %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79

File diff suppressed because it is too large Load Diff

View File

@ -23,9 +23,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: German (http://www.transifex.com/haiwen/seahub/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -33,18 +33,6 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr "Bearbeiten"
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr "Seiten"
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr "System-Administration"
@ -61,41 +49,46 @@ msgstr "Einstellungen"
msgid "Log out"
msgstr "Abmelden"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Neue Datei"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Neuer Ordner"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr "Name"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr "NeuerName"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr "Absenden"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Abbrechen"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -113,33 +106,53 @@ msgstr "JA"
msgid "NO"
msgstr "NEIN"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Datei umbenennen"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Ordner umbenennen"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr "Neuer Dateiname:"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr "Neuer Ordnername:"
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Umbenennen"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Wiki-Dateien suchen"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Größe"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Letzte Änderung"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Bearbeiten"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Seiten"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -150,7 +163,7 @@ msgstr ""
#: seahub/templates/priv/ali.js:10
msgid "Admin access"
msgstr ""
msgstr "Zugang für Administration"
#: seahub/templates/priv/ali.js:12
msgid "Read-Write folder"
@ -170,11 +183,11 @@ msgstr ""
#: seahub/templates/priv/ali.js:17
msgid "Preview-Edit-on-Cloud"
msgstr ""
msgstr "Vorschau von Bearbeiten in der Cloud"
#: seahub/templates/priv/ali.js:18
msgid "Preview-on-Cloud"
msgstr ""
msgstr "Vorschau in der Cloud"
#: seahub/templates/priv/ali.js:21
msgid "Read-Write-Sync"
@ -186,15 +199,15 @@ msgstr ""
#: seahub/templates/priv/ali.js:23
msgid "Co-Owner"
msgstr ""
msgstr "Mit-Eigentümer/in"
#: seahub/templates/priv/ali.js:24
msgid "Edit-on-Cloud"
msgstr ""
msgstr "Online bearbeiten"
#: seahub/templates/priv/ali.js:25
msgid "View-on-Cloud"
msgstr ""
msgstr "Vorschau"
#: static/scripts/app/models/deleted-repo.js:19
#: static/scripts/app/models/repo.js:59 static/scripts/common.js:343
@ -224,7 +237,7 @@ msgstr "Name erforderlich"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -363,7 +376,7 @@ msgstr "%(name)s ist kopiert"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -626,7 +639,7 @@ msgid "locked by {placeholder}"
msgstr "von {placeholder} gesperrt"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "%(name)s ist gelöscht."

File diff suppressed because it is too large Load Diff

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Greek (http://www.transifex.com/haiwen/seahub/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,21 +18,9 @@ msgstr ""
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Διαχειριστής συστήματος"
#: frontend/src/components/account.js:127
msgid "Used"
@ -40,47 +28,52 @@ msgstr ""
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Ρυθμίσεις"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Αποσύνδεση"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Νέο αρχείο"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "Νέος φάκελος"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Όνομα"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Υποβολή"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Ακύρωση"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -98,33 +91,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Μετονομασία αρχείου"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Μετονομασία φακέλου"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
msgstr "Μετονομασία"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Μέγεθος"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Τελευταία τροποποίηση"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Επεξεργασία Σελίδας"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Σελίδες"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -209,7 +222,7 @@ msgstr "Το όνομα είναι απαραίτητο"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -348,7 +361,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -510,7 +523,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1076
msgid "Successfully deleted %(name)s and %(amount)s other items."
msgstr ""
msgstr "Διαγράφηκε επιτυχώς το %(name)s και %(amount)s άλλων αντικειμένων."
#: static/scripts/app/views/dir.js:1085
msgid "Failed to delete %(name)s."
@ -542,27 +555,27 @@ msgstr "Αντιγραφή επιλεγμένου αντικειμένου(ων)
#: static/scripts/app/views/dir.js:1222 static/scripts/app/views/dir.js:1384
msgid "Successfully moved %(name)s."
msgstr ""
msgstr "Επιτυχής μετακίνηση του %(name)s."
#: static/scripts/app/views/dir.js:1224 static/scripts/app/views/dir.js:1386
msgid "Successfully moved %(name)s and 1 other item."
msgstr ""
msgstr "Επιτυχής μετακίνηση του %(name)s και 1 άλλου αντικειμένου."
#: static/scripts/app/views/dir.js:1226 static/scripts/app/views/dir.js:1388
msgid "Successfully moved %(name)s and %(amount)s other items."
msgstr ""
msgstr "Επιτυχής μετακίνηση του %(name)s και %(amount)s άλλων αντικειμένων."
#: static/scripts/app/views/dir.js:1231 static/scripts/app/views/dir.js:1392
msgid "Successfully copied %(name)s."
msgstr ""
msgstr "Επιτυχής αντιγραφή του %(name)s."
#: static/scripts/app/views/dir.js:1233 static/scripts/app/views/dir.js:1394
msgid "Successfully copied %(name)s and 1 other item."
msgstr ""
msgstr "Επιτυχής αντιγραφή του %(name)s και 1 άλλου αντικειμένου."
#: static/scripts/app/views/dir.js:1235 static/scripts/app/views/dir.js:1396
msgid "Successfully copied %(name)s and %(amount)s other items."
msgstr ""
msgstr "Επιτυχής αντιγραφή του %(name)s και %(amount)s άλλων αντικειμένων."
#: static/scripts/app/views/dir.js:1251
msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)."
@ -611,7 +624,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Επιτυχής διαγραφή του %(name)s"
@ -633,11 +646,11 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:14
msgid "Uploaded bytes exceed file size"
msgstr ""
msgstr "Τα μεταφορτωμένα bytes υπερβαίνουν το μέγεθος του αρχείου"
#: static/scripts/app/views/fileupload.js:15
msgid "Empty file upload result"
msgstr ""
msgstr "Αποτέλεσμα μεταφόρτωσης αρχείου κενό"
#: static/scripts/app/views/fileupload.js:17
#: static/scripts/app/views/fileupload.js:225
@ -752,19 +765,19 @@ msgstr "Επιτυχής εισαγωγή."
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "Διαγραφή Ομάδας"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "Σίγουρα θέλετε να διαγράψετε αυτή την ομάδα;"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "Εγκατάλειψη Ομάδας"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
msgstr ""
msgstr "Είστε σίγουροι πως θέλετε να εγκαταλείψετε αυτή την ομάδα;"
#: static/scripts/app/views/invitation.js:37
#: static/scripts/sysadmin-app/views/address-book-group-item.js:57
@ -810,7 +823,7 @@ msgstr "Διαγραφή βιβλιοθήκης"
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Είστε σίγουρος/η πως θέλετε να διαγράψετε τον/την %s ;"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
@ -1027,12 +1040,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "Σταμάτημα κοινής χρήσης βιβλιοθήκης"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "Είστε σίγουροι πως θέλετε να σταματήσετε την κοινή χρήση του %s ;"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Greek (Greece) (http://www.transifex.com/haiwen/seahub/language/el_GR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,18 +17,6 @@ msgstr ""
"Language: el_GR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
@ -39,51 +27,56 @@ msgstr ""
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Ρυθμίσεις"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Όνομα"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Υποβολή"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "Ακύρωση"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "Διαγραφή"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,33 +90,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
msgstr "Μετονομασία"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Μέγεθος"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Τελευταία τροποποίηση"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Τροποποίηση σελίδας"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Σελίδες"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -199,7 +212,7 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:430
#: static/scripts/app/views/group.js:65 static/scripts/common.js:643
msgid "Just now"
msgstr ""
msgstr "Μόλις τώρα"
#: static/scripts/app/models/repo.js:34
msgid "Name is required"
@ -208,7 +221,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Ανάγνωση-Γραφή"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Μόνο Ανάγνωση"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -323,7 +336,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
msgid "Failed."
msgstr ""
msgstr "Απέτυχε."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
#: static/scripts/app/views/dialogs/dirent-mvcp.js:159
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -439,7 +452,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "Φορτώνει"
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -473,7 +486,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "Παρακαλώ ελέγξτε τη σύνδεση με το δίκτυο."
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
@ -610,7 +623,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "Απέτυχε. Παρακαλώ ελέγξτε τη σύνδεσή σας στο δίκτυο."
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"
@ -751,19 +764,19 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "Απόρριψη ομάδας"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "Πραγματικά θέλετε να απορρίψετε αυτή την ομάδα;"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "Αποχώρηση από ομάδα"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
msgstr ""
msgstr "Είστε σίγουροι πως θέλετε να αποχωρήσετε από αυτή την ομάδα;"
#: static/scripts/app/views/invitation.js:37
#: static/scripts/sysadmin-app/views/address-book-group-item.js:57
@ -809,7 +822,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Είστε σίγουροι πως θέλετε να διαγράψετε τον/την %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
@ -945,7 +958,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "Το όνομα είναι απαραίτητο."
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -1018,7 +1031,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "Διαγραφή μέλους"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"

File diff suppressed because it is too large Load Diff

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 14:40+0800\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,18 +17,6 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
@ -45,41 +33,46 @@ msgstr ""
msgid "Log out"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -97,33 +90,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr ""
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -208,7 +221,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -610,7 +623,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Spanish (http://www.transifex.com/haiwen/seahub/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,18 +21,6 @@ msgstr ""
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr "Editar Página"
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr "Páginas"
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr "Administración del Sistema"
@ -49,41 +37,46 @@ msgstr "Configuración"
msgid "Log out"
msgstr "Desconectarse"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Nuevo archivo"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Nueva Carpeta"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr "Nombre"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr "newName"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr "Enviar"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Cancelar"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -101,88 +94,108 @@ msgstr "SI"
msgid "NO"
msgstr "NO"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Renombrar Archivo"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Renombrar Carpeta"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr "Ingrese el nuevo nombre de archivo:"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr "Ingrese el nuevo nombre de carpeta:"
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Renombrar"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Buscar archivos en el wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Tamaño"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Última actualización"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Editar Página"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Páginas"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
msgstr "Biblioteca Vista-Previa-Edicion-en-Nube"
#: seahub/templates/priv/ali.js:9
msgid "Preview-on-Cloud library"
msgstr ""
msgstr "Biblioteca Vista-Previa-en-Nube"
#: seahub/templates/priv/ali.js:10
msgid "Admin access"
msgstr ""
msgstr "Acceso de administrador"
#: seahub/templates/priv/ali.js:12
msgid "Read-Write folder"
msgstr ""
msgstr "Carpeta de lectura / escritura"
#: seahub/templates/priv/ali.js:13
msgid "Read-Only folder"
msgstr ""
msgstr "Carpeta de sólo lectura"
#: seahub/templates/priv/ali.js:14
msgid "Preview-Edit-on-Cloud folder"
msgstr ""
msgstr "Carpeta Vista-Previa-Edicion-en-Nube"
#: seahub/templates/priv/ali.js:15
msgid "Preview-on-Cloud folder"
msgstr ""
msgstr "Carpeta Vista-Previa-en-Nube"
#: seahub/templates/priv/ali.js:17
msgid "Preview-Edit-on-Cloud"
msgstr ""
msgstr "Vista-Previa-Edicion-en-Nube"
#: seahub/templates/priv/ali.js:18
msgid "Preview-on-Cloud"
msgstr ""
msgstr "Vista-Previa-en-Nube"
#: seahub/templates/priv/ali.js:21
msgid "Read-Write-Sync"
msgstr ""
msgstr "Lectura-Escritura-Sincronización"
#: seahub/templates/priv/ali.js:22
msgid "Read-Only-Sync"
msgstr ""
msgstr "Sólo-Lectura-Sincronización"
#: seahub/templates/priv/ali.js:23
msgid "Co-Owner"
msgstr ""
msgstr "Co-Propietario"
#: seahub/templates/priv/ali.js:24
msgid "Edit-on-Cloud"
msgstr ""
msgstr "Edición-en-Nube"
#: seahub/templates/priv/ali.js:25
msgid "View-on-Cloud"
msgstr ""
msgstr "Vista-en-Nube"
#: static/scripts/app/models/deleted-repo.js:19
#: static/scripts/app/models/repo.js:59 static/scripts/common.js:343
@ -212,7 +225,7 @@ msgstr "Nombre requerido"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -351,7 +364,7 @@ msgstr "Copiado con éxito %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -614,7 +627,7 @@ msgid "locked by {placeholder}"
msgstr "bloqueado por {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Eliminados con éxito %(name)s"
@ -874,7 +887,7 @@ msgstr "Ingresa cantidad válida de días"
#: static/scripts/app/views/share.js:468
msgid "Share link is copied to the clipboard."
msgstr ""
msgstr "Enlace de compartir copiado al portapapeles"
#: static/scripts/app/views/share.js:485
msgid "Please input at least an email."

File diff suppressed because it is too large Load Diff

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/haiwen/seahub/language/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,18 +20,6 @@ msgstr ""
"Language: es_AR\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr "Editar Página"
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr "Páginas"
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr "Administración del Sistema"
@ -48,41 +36,46 @@ msgstr "Configuración"
msgid "Log out"
msgstr "Desconectarse"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Nuevo archivo"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Nueva Carpeta"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr "Nombre"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr "newName"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr "Enviar"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Cancelar"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -100,88 +93,108 @@ msgstr "SI"
msgid "NO"
msgstr "NO"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Renombrar Archivo"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Renombrar Carpeta"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr "Ingrese el nuevo nombre de archivo:"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr "Ingrese el nuevo nombre de carpeta:"
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Renombrar"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Buscar archivos en el wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Tamaño"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Última actualización"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Editar Página"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Páginas"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
msgstr "Biblioteca Vista-Previa-Edicion-en-Nube"
#: seahub/templates/priv/ali.js:9
msgid "Preview-on-Cloud library"
msgstr ""
msgstr "Biblioteca Vista-Previa-en-Nube"
#: seahub/templates/priv/ali.js:10
msgid "Admin access"
msgstr ""
msgstr "Acceso de administrador"
#: seahub/templates/priv/ali.js:12
msgid "Read-Write folder"
msgstr ""
msgstr "Carpeta de lectura / escritura"
#: seahub/templates/priv/ali.js:13
msgid "Read-Only folder"
msgstr ""
msgstr "Carpeta de sólo lectura"
#: seahub/templates/priv/ali.js:14
msgid "Preview-Edit-on-Cloud folder"
msgstr ""
msgstr "Carpeta Vista-Previa-Edicion-en-Nube"
#: seahub/templates/priv/ali.js:15
msgid "Preview-on-Cloud folder"
msgstr ""
msgstr "Carpeta Vista-Previa-en-Nube"
#: seahub/templates/priv/ali.js:17
msgid "Preview-Edit-on-Cloud"
msgstr ""
msgstr "Vista-Previa-Edicion-en-Nube"
#: seahub/templates/priv/ali.js:18
msgid "Preview-on-Cloud"
msgstr ""
msgstr "Vista-Previa-en-Nube"
#: seahub/templates/priv/ali.js:21
msgid "Read-Write-Sync"
msgstr ""
msgstr "Lectura-Escritura-Sincronización"
#: seahub/templates/priv/ali.js:22
msgid "Read-Only-Sync"
msgstr ""
msgstr "Sólo-Lectura-Sincronización"
#: seahub/templates/priv/ali.js:23
msgid "Co-Owner"
msgstr ""
msgstr "Co-Propietario"
#: seahub/templates/priv/ali.js:24
msgid "Edit-on-Cloud"
msgstr ""
msgstr "Edición-en-Nube"
#: seahub/templates/priv/ali.js:25
msgid "View-on-Cloud"
msgstr ""
msgstr "Vista-en-Nube"
#: static/scripts/app/models/deleted-repo.js:19
#: static/scripts/app/models/repo.js:59 static/scripts/common.js:343
@ -211,7 +224,7 @@ msgstr "Nombre requerido"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -350,7 +363,7 @@ msgstr "Copiado con éxito %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -613,7 +626,7 @@ msgid "locked by {placeholder}"
msgstr "bloqueado por {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Eliminados con éxito %(name)s"
@ -873,7 +886,7 @@ msgstr "Ingresa cantidad válida de días"
#: static/scripts/app/views/share.js:468
msgid "Share link is copied to the clipboard."
msgstr ""
msgstr "Enlace de compartir copiado al portapapeles"
#: static/scripts/app/views/share.js:485
msgid "Please input at least an email."

File diff suppressed because it is too large Load Diff

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/haiwen/seahub/language/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,18 +20,6 @@ msgstr ""
"Language: es_MX\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr "Editar Página"
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr "Páginas"
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr "Administración del Sistema"
@ -48,41 +36,46 @@ msgstr "Configuración"
msgid "Log out"
msgstr "Desconectarse"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Nuevo archivo"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Nueva Carpeta"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr "Nombre"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr "newName"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr "Enviar"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Cancelar"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -100,88 +93,108 @@ msgstr "SI"
msgid "NO"
msgstr "NO"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Renombrar Archivo"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Renombrar Carpeta"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr "Ingrese el nuevo nombre de archivo:"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr "Ingrese el nuevo nombre de carpeta:"
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Renombrar"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Buscar archivos en el wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Tamaño"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Última actualización"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Editar Página"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Páginas"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
msgstr "Biblioteca Vista-Previa-Edicion-en-Nube"
#: seahub/templates/priv/ali.js:9
msgid "Preview-on-Cloud library"
msgstr ""
msgstr "Biblioteca Vista-Previa-en-Nube"
#: seahub/templates/priv/ali.js:10
msgid "Admin access"
msgstr ""
msgstr "Acceso de administrador"
#: seahub/templates/priv/ali.js:12
msgid "Read-Write folder"
msgstr ""
msgstr "Carpeta de lectura / escritura"
#: seahub/templates/priv/ali.js:13
msgid "Read-Only folder"
msgstr ""
msgstr "Carpeta de sólo lectura"
#: seahub/templates/priv/ali.js:14
msgid "Preview-Edit-on-Cloud folder"
msgstr ""
msgstr "Carpeta Vista-Previa-Edicion-en-Nube"
#: seahub/templates/priv/ali.js:15
msgid "Preview-on-Cloud folder"
msgstr ""
msgstr "Carpeta Vista-Previa-en-Nube"
#: seahub/templates/priv/ali.js:17
msgid "Preview-Edit-on-Cloud"
msgstr ""
msgstr "Vista-Previa-Edicion-en-Nube"
#: seahub/templates/priv/ali.js:18
msgid "Preview-on-Cloud"
msgstr ""
msgstr "Vista-Previa-en-Nube"
#: seahub/templates/priv/ali.js:21
msgid "Read-Write-Sync"
msgstr ""
msgstr "Lectura-Escritura-Sincronización"
#: seahub/templates/priv/ali.js:22
msgid "Read-Only-Sync"
msgstr ""
msgstr "Sólo-Lectura-Sincronización"
#: seahub/templates/priv/ali.js:23
msgid "Co-Owner"
msgstr ""
msgstr "Co-Propietario"
#: seahub/templates/priv/ali.js:24
msgid "Edit-on-Cloud"
msgstr ""
msgstr "Edición-en-Nube"
#: seahub/templates/priv/ali.js:25
msgid "View-on-Cloud"
msgstr ""
msgstr "Vista-en-Nube"
#: static/scripts/app/models/deleted-repo.js:19
#: static/scripts/app/models/repo.js:59 static/scripts/common.js:343
@ -211,7 +224,7 @@ msgstr "Nombre requerido"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -350,7 +363,7 @@ msgstr "Copiado con éxito %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -613,7 +626,7 @@ msgid "locked by {placeholder}"
msgstr "bloqueado por {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Eliminados con éxito %(name)s"
@ -873,7 +886,7 @@ msgstr "Ingresa cantidad válida de días"
#: static/scripts/app/views/share.js:468
msgid "Share link is copied to the clipboard."
msgstr ""
msgstr "Enlace de compartir copiado al portapapeles"
#: static/scripts/app/views/share.js:485
msgid "Please input at least an email."

File diff suppressed because it is too large Load Diff

View File

@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Finnish (http://www.transifex.com/haiwen/seahub/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,21 +21,9 @@ msgstr ""
"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr "Muokkaa Sivua"
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr "Wikit"
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr "Sivut"
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Järjestelmän hallinta"
#: frontend/src/components/account.js:127
msgid "Used"
@ -49,41 +37,46 @@ msgstr "Asetukset"
msgid "Log out"
msgstr "Kirjaudu ulos"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Uusi Tiedosto"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Uusi Hakemisto"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr "Nimi"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr "Uusi Nimi"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr "Hyväksy"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Peruuta"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -101,32 +94,52 @@ msgstr "KYLLÄ"
msgid "NO"
msgstr "EI"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Nimeä tiedosto uudelleen"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Nimeä kansio uudelleen"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Nimeä uudelleen"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
msgstr "Etsi tiedostoja tästä wikistä"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Koko"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Viimeisin päivitys"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Muokkaa Sivua"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wikit"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Sivut"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -212,7 +225,7 @@ msgstr "Nimi vaaditaan"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -351,7 +364,7 @@ msgstr "Kohde %(name)s kopioitu onnistuneesti"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -614,7 +627,7 @@ msgid "locked by {placeholder}"
msgstr "lukittu {placeholder} toimesta"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "%(name)s poistettu onnistuneesti"

File diff suppressed because it is too large Load Diff

View File

@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: French (http://www.transifex.com/haiwen/seahub/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -24,18 +24,6 @@ msgstr ""
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr "Éditer la page"
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr "Pages"
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr "Administrateur système"
@ -52,41 +40,46 @@ msgstr "Paramètres"
msgid "Log out"
msgstr "Déconnexion"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Nouveau fichier"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Nouveau dossier"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr "Nom"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr "NouveauNom"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr "Soumettre"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Annuler"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -104,88 +97,108 @@ msgstr "OUI"
msgid "NO"
msgstr "NON"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Renommer le fichier"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Renommer le dossier"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr "Saisissez un nouveau nom de fichier : "
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr "Saisissez un nouveau nom de dossier : "
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Renommer"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Rechercher des fichiers dans ce Wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Taille"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Mise à jour"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Éditer la page"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Pages"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
msgstr "Prévisualisation-Édition-dans-le-Cloud"
#: seahub/templates/priv/ali.js:9
msgid "Preview-on-Cloud library"
msgstr ""
msgstr "Bibliothèque en Prévisualisation-dans-le-Cloud"
#: seahub/templates/priv/ali.js:10
msgid "Admin access"
msgstr ""
msgstr "Accès administrateur"
#: seahub/templates/priv/ali.js:12
msgid "Read-Write folder"
msgstr ""
msgstr "Dossier en Lecture-Écriture"
#: seahub/templates/priv/ali.js:13
msgid "Read-Only folder"
msgstr ""
msgstr "Dossier en Lecture-Seulement"
#: seahub/templates/priv/ali.js:14
msgid "Preview-Edit-on-Cloud folder"
msgstr ""
msgstr "Dossier en Prévisualisation-Édition-dans-le-Cloud"
#: seahub/templates/priv/ali.js:15
msgid "Preview-on-Cloud folder"
msgstr ""
msgstr "Dossier en Prévisualisation-dans-le-Cloud"
#: seahub/templates/priv/ali.js:17
msgid "Preview-Edit-on-Cloud"
msgstr ""
msgstr "Prévisualisation-Édition-dans-le-Cloud"
#: seahub/templates/priv/ali.js:18
msgid "Preview-on-Cloud"
msgstr ""
msgstr "Prévisualisation-dans-le-Cloud"
#: seahub/templates/priv/ali.js:21
msgid "Read-Write-Sync"
msgstr ""
msgstr "Lecture-Écriture-Synchronisation"
#: seahub/templates/priv/ali.js:22
msgid "Read-Only-Sync"
msgstr ""
msgstr "Lecture-Seulement-Synchronisation"
#: seahub/templates/priv/ali.js:23
msgid "Co-Owner"
msgstr ""
msgstr "Coauteur"
#: seahub/templates/priv/ali.js:24
msgid "Edit-on-Cloud"
msgstr ""
msgstr "Éditer-dans-le-cloud"
#: seahub/templates/priv/ali.js:25
msgid "View-on-Cloud"
msgstr ""
msgstr "Voir-dans-le-cloud"
#: static/scripts/app/models/deleted-repo.js:19
#: static/scripts/app/models/repo.js:59 static/scripts/common.js:343
@ -215,7 +228,7 @@ msgstr "Le nom est obligatoire"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -354,7 +367,7 @@ msgstr " %(name)s copié avec succès"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -617,7 +630,7 @@ msgid "locked by {placeholder}"
msgstr "Verrouillé par {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "%(name)s supprimé avec succès"

File diff suppressed because it is too large Load Diff

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Hebrew (http://www.transifex.com/haiwen/seahub/language/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,21 +17,9 @@ msgstr ""
"Language: he\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "מנהל מערכת"
#: frontend/src/components/account.js:127
msgid "Used"
@ -39,51 +27,56 @@ msgstr ""
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "הגדרות"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "התנתק"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "קובץ חדש"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "שם"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "שלח"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "בטל"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "למחוק"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,31 +90,51 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "שינוי שם"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "חיפוש קבצים בויקי הזה"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "גודל"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "עודכן לאחרונה"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "עריכת דף"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr ""
#: seahub/templates/priv/ali.js:8
@ -199,7 +212,7 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:430
#: static/scripts/app/views/group.js:65 static/scripts/common.js:643
msgid "Just now"
msgstr ""
msgstr "כרגע"
#: static/scripts/app/models/repo.js:34
msgid "Name is required"
@ -208,7 +221,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -216,19 +229,19 @@ msgstr ""
#: static/scripts/app/models/repo.js:41 static/scripts/app/views/share.js:334
msgid "Please enter password"
msgstr ""
msgstr "אנא הכנס את הסיסמא"
#: static/scripts/app/models/repo.js:42 static/scripts/app/views/share.js:342
msgid "Please enter the password again"
msgstr ""
msgstr "אנא הכנס את הסיסמא שוב"
#: static/scripts/app/models/repo.js:44 static/scripts/app/views/share.js:338
msgid "Password is too short"
msgstr ""
msgstr "הסיסמא קצרה מדי"
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
msgstr ""
msgstr "סיסמאות אינן תואמות"
#: static/scripts/app/models/repo.js:63 static/scripts/common.js:345
msgid "Read-Only library"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "קריאה-כתיבה"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "קריאה-בלבד"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -258,11 +271,11 @@ msgstr ""
#: static/scripts/app/views/details.js:47
msgid "New files"
msgstr ""
msgstr "קבצים חדשים"
#: static/scripts/app/views/details.js:53
msgid "Deleted files"
msgstr ""
msgstr "קבצים שנמחקו"
#: static/scripts/app/views/details.js:59
msgid "Renamed or Moved files"
@ -278,7 +291,7 @@ msgstr ""
#: static/scripts/app/views/details.js:77
msgid "Deleted directories"
msgstr ""
msgstr "תיקיות שנמחקו"
#: static/scripts/app/views/device.js:42
#: static/scripts/sysadmin-app/views/device.js:42
@ -319,11 +332,11 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:118
msgid "Saving..."
msgstr ""
msgstr "שומר..."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
msgid "Failed."
msgstr ""
msgstr "נכשל."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
#: static/scripts/app/views/dialogs/dirent-mvcp.js:159
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -359,7 +372,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/dir.js:82
#: static/scripts/sysadmin-app/views/group-members.js:51
msgid "It is required."
msgstr ""
msgstr "זה דרוש."
#: static/scripts/app/views/dialogs/dirent-smart-link.js:50
msgid "Internal link copied to clipboard"
@ -439,7 +452,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "טוען..."
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -468,12 +481,12 @@ msgstr ""
#: static/scripts/app/views/dir.js:409
msgid "Password is required."
msgstr ""
msgstr "נדרשת סיסמה."
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "נא בדוק את הרשת."
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
@ -501,7 +514,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1072
msgid "Successfully deleted %(name)s."
msgstr ""
msgstr "נמחק בהצלחה %(name)s."
#: static/scripts/app/views/dir.js:1074
msgid "Successfully deleted %(name)s and 1 other item."
@ -525,7 +538,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1102
msgid "Delete Items"
msgstr ""
msgstr "מחק פריטים"
#: static/scripts/app/views/dir.js:1103
msgid "Are you sure you want to delete these selected items?"
@ -610,17 +623,17 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
msgstr "נמחק בהצלחה %(name)s"
#: static/scripts/app/views/fileupload.js:10
msgid "File is too big"
msgstr ""
msgstr "קובץ גדול מדי"
#: static/scripts/app/views/fileupload.js:11
msgid "File is too small"
msgstr ""
msgstr "קובץ קטן מדי"
#: static/scripts/app/views/fileupload.js:12
msgid "Filetype not allowed"
@ -646,7 +659,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/address-book-group-item.js:152
#: static/scripts/sysadmin-app/views/system-repo.js:52
msgid "Error"
msgstr ""
msgstr "שגיאה"
#: static/scripts/app/views/fileupload.js:18
msgid "uploaded"
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "נכשל. נא בדוק הרשת."
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"
@ -759,7 +772,7 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "עזוב קבוצה"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
@ -809,7 +822,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "האם אתה בטוח שברצונך למחוק %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
@ -990,7 +1003,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:82
#: static/scripts/sysadmin-app/views/group.js:30
msgid "Delete Group"
msgstr ""
msgstr "מחק קבוצה"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:83
msgid "Deleted group {group_name}"
@ -1006,7 +1019,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "מחק משתמש"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"
@ -1018,7 +1031,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "מחק חבר"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1026,7 +1039,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "בטל שיתוף ספרייה"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
@ -1061,7 +1074,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "שחזור הספרייה"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format

File diff suppressed because it is too large Load Diff

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:44+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Hungarian (http://www.transifex.com/haiwen/seahub/language/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,69 +20,62 @@ msgstr ""
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Rendszer-adminisztrátor"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Felhasznált"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Beállítások"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Kijelentkezés"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Új fájl"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "Új könyvtár"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Név"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Beküldés"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Mégsem"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -100,32 +93,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Fájl átnevezése"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Könyvtár átnevezése"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
msgstr "Átnevezés"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
msgstr "Fájlok keresése a wikiben"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Méret"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Utolsó frissítés "
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Oldal szerkesztése"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wikik"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Oldalak"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -211,7 +224,7 @@ msgstr "Név szükséges"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -350,7 +363,7 @@ msgstr "%(name)s másolása sikeres"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -613,7 +626,7 @@ msgid "locked by {placeholder}"
msgstr "zárolta: {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "%(name)s törlése sikeres"

File diff suppressed because it is too large Load Diff

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Icelandic (http://www.transifex.com/haiwen/seahub/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,69 +18,62 @@ msgstr ""
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Kerfisstjórnun"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Notað"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Stillingar"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Útskrá"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "Ný Skrá"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Ný Mappa"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Nafn"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Samþykkja"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Hætta við"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -98,32 +91,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Endurnefna Skrá"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Endurnefna Möppu"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Skipta um nafn"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Leita að skrám í þessu wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Stærð"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Síðasta Uppfærsla"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Breyta Síðu"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Síður"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -209,7 +222,7 @@ msgstr "Nafn er skilyrði"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -238,12 +251,12 @@ msgstr "Aðeins-Lesa safn"
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Lesa-Skrifa"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Aðeins-Lesa"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -348,7 +361,7 @@ msgstr "Tókst að afrita %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -611,7 +624,7 @@ msgid "locked by {placeholder}"
msgstr "læst af {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Giftursamlega eyddi %(name)s"
@ -799,7 +812,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:65
#: static/scripts/sysadmin-app/views/trash-repo.js:28
msgid "Delete Library"
msgstr ""
msgstr "Eyða Safni"
#: static/scripts/app/views/repo.js:96
#: static/scripts/sysadmin-app/views/address-book-group-item.js:47
@ -810,12 +823,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Ertu viss um að þú viljir eyða %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
msgid "Successfully deleted."
msgstr ""
msgstr "Giftursamlega eytt"
#: static/scripts/app/views/repo.js:237
#: static/scripts/sysadmin-app/views/repo.js:97
@ -946,7 +959,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "Nafn er áskilið"
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -966,7 +979,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "Færa safn"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -991,7 +1004,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:82
#: static/scripts/sysadmin-app/views/group.js:30
msgid "Delete Group"
msgstr ""
msgstr "Eyða Hópi"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:83
msgid "Deleted group {group_name}"
@ -1007,7 +1020,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "Eyða Notanda"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"
@ -1019,7 +1032,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "Eyða Félaga"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1027,12 +1040,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "Hætta deilingu Safns"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "Ertu viss um að þú viljir taka deilingu af %s ?"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"
@ -1048,31 +1061,31 @@ msgstr ""
#: static/scripts/sysadmin-app/views/search-trash-repos.js:46
msgid "Delete Library By Owner"
msgstr ""
msgstr "Eyða Safni Eftir Eiganda"
#: static/scripts/sysadmin-app/views/search-trash-repos.js:47
#, javascript-format
msgid "Are you sure you want to delete all %s's libraries?"
msgstr ""
msgstr "Ertu viss um að þú viljir eyða öllum söfnum sem %s á?"
#: static/scripts/sysadmin-app/views/trash-repo.js:29
#, javascript-format
msgid "Are you sure you want to delete %s completely?"
msgstr ""
msgstr "Ertu viss um að þú viljir eyða %s algjörlega?"
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "Endurvekja Safn"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format
msgid "Are you sure you want to restore %s?"
msgstr ""
msgstr "Ertu viss um að þú viljir endurheimta %s?"
#: static/scripts/sysadmin-app/views/trash-repos.js:49
msgid "Clear Trash"
msgstr ""
msgstr "Tæma Ruslið"
#: static/scripts/sysadmin-app/views/trash-repos.js:50
msgid "Are you sure you want to clear trash?"
msgstr ""
msgstr "Ertu viss um að þú viljir tæma ruslið?"

File diff suppressed because it is too large Load Diff

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Italian (http://www.transifex.com/haiwen/seahub/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,69 +19,62 @@ msgstr ""
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Amministratore del Sistema"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Utilizzato"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Impostazioni"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Termina Sessione"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Nuovo File"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "Nuova Cartella"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Nome"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Invia"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Annulla"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -99,32 +92,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "File Rinominato"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Cartella Rinominata"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
msgstr "Rinomina"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
msgstr "Ricerca documenti in questo wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Dimensione"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Ultimo aggiornamento"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Modifica Pagina"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wiki"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Pagine"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -210,7 +223,7 @@ msgstr "Il nome è obbligatorio"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -349,7 +362,7 @@ msgstr "Copiato con successo %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -612,7 +625,7 @@ msgid "locked by {placeholder}"
msgstr "bloccato da {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Eliminato con successo %(name)s"

File diff suppressed because it is too large Load Diff

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Japanese (http://www.transifex.com/haiwen/seahub/language/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,73 +17,66 @@ msgstr ""
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "システム管理"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "利用中"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "設定"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "ログアウト"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "新規ファイル"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "氏名"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "登録"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "キャンセル"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "削除"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,32 +90,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
msgstr "ファイルを改名"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "名前の変更"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Wikiのファイルの検索"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "サイズ"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "前回の更新"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "ページを編集する"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "ページ"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -199,16 +212,16 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:430
#: static/scripts/app/views/group.js:65 static/scripts/common.js:643
msgid "Just now"
msgstr ""
msgstr "ただ今"
#: static/scripts/app/models/repo.js:34
msgid "Name is required"
msgstr ""
msgstr "名前は必須項目です。"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -216,19 +229,19 @@ msgstr ""
#: static/scripts/app/models/repo.js:41 static/scripts/app/views/share.js:334
msgid "Please enter password"
msgstr ""
msgstr "パスワードを入力してください"
#: static/scripts/app/models/repo.js:42 static/scripts/app/views/share.js:342
msgid "Please enter the password again"
msgstr ""
msgstr "パスワードを再度入力してください"
#: static/scripts/app/models/repo.js:44 static/scripts/app/views/share.js:338
msgid "Password is too short"
msgstr ""
msgstr "パスワードが短すぎます。"
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
msgstr ""
msgstr "パスワードが一致しません。"
#: static/scripts/app/models/repo.js:63 static/scripts/common.js:345
msgid "Read-Only library"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "読み/書き"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "読みのみ"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -258,27 +271,27 @@ msgstr ""
#: static/scripts/app/views/details.js:47
msgid "New files"
msgstr ""
msgstr "新規ファイル"
#: static/scripts/app/views/details.js:53
msgid "Deleted files"
msgstr ""
msgstr "削除されたファイル"
#: static/scripts/app/views/details.js:59
msgid "Renamed or Moved files"
msgstr ""
msgstr "ファイルは、改名されたか移動された"
#: static/scripts/app/views/details.js:65
msgid "Modified files"
msgstr ""
msgstr "変更されたファイル"
#: static/scripts/app/views/details.js:71
msgid "New directories"
msgstr ""
msgstr "新規ディレクトリー"
#: static/scripts/app/views/details.js:77
msgid "Deleted directories"
msgstr ""
msgstr "削除されたディレクトリー"
#: static/scripts/app/views/device.js:42
#: static/scripts/sysadmin-app/views/device.js:42
@ -311,30 +324,30 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:102
msgid "Moving %(name)s"
msgstr ""
msgstr "「%(name)s」を移動中"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:102
msgid "Copying %(name)s"
msgstr ""
msgstr "「%(name)s」をコピー中"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:118
msgid "Saving..."
msgstr ""
msgstr "保存中..."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
msgid "Failed."
msgstr ""
msgstr "失敗。"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
#: static/scripts/app/views/dialogs/dirent-mvcp.js:159
#: static/scripts/app/views/dir.js:1423
msgid "Canceled."
msgstr ""
msgstr "キャンセルしました"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:188
#: static/scripts/app/views/dir.js:1173
msgid "Invalid destination path"
msgstr ""
msgstr "行き先パス名が不正です。"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:207
#: static/scripts/app/views/dirent.js:296
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -359,7 +372,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/dir.js:82
#: static/scripts/sysadmin-app/views/group-members.js:51
msgid "It is required."
msgstr ""
msgstr "入力必須です"
#: static/scripts/app/views/dialogs/dirent-smart-link.js:50
msgid "Internal link copied to clipboard"
@ -371,7 +384,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:50
msgid "Please enter the old password"
msgstr ""
msgstr "旧いパスワードを入力してください"
#: static/scripts/app/views/dialogs/repo-change-password.js:54
msgid "Please enter a new password"
@ -379,15 +392,15 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:58
msgid "New password is too short"
msgstr ""
msgstr "新しいパスワードは短すぎます"
#: static/scripts/app/views/dialogs/repo-change-password.js:62
msgid "Please enter the new password again"
msgstr ""
msgstr "新しいパスワードを再入力してください"
#: static/scripts/app/views/dialogs/repo-change-password.js:66
msgid "New passwords don't match"
msgstr ""
msgstr "パスワードが一致しません。"
#: static/scripts/app/views/dialogs/repo-change-password.js:87
msgid "Successfully changed library password."
@ -417,7 +430,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:222
msgid "Please click and choose a directory."
msgstr ""
msgstr "クリックしてディレクトリを選んでください。"
#: static/scripts/app/views/dialogs/repo-history-settings.js:36
msgid "{placeholder} History Setting"
@ -439,7 +452,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "読み込み中..."
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -468,16 +481,16 @@ msgstr ""
#: static/scripts/app/views/dir.js:409
msgid "Password is required."
msgstr ""
msgstr "パスワードは入力必須です"
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "ネットワークをご確認ください。"
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
msgstr ""
msgstr "拡張子しか有りません。名前を入れてください。"
#: static/scripts/app/views/dir.js:779
msgid "New Markdown File"
@ -497,11 +510,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1035 static/scripts/app/views/dir.js:1178
msgid "Processing..."
msgstr ""
msgstr "処理中"
#: static/scripts/app/views/dir.js:1072
msgid "Successfully deleted %(name)s."
msgstr ""
msgstr "%(name)sを削除しました。"
#: static/scripts/app/views/dir.js:1074
msgid "Successfully deleted %(name)s and 1 other item."
@ -525,7 +538,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1102
msgid "Delete Items"
msgstr ""
msgstr "削除したアイテム"
#: static/scripts/app/views/dir.js:1103
msgid "Are you sure you want to delete these selected items?"
@ -541,27 +554,27 @@ msgstr ""
#: static/scripts/app/views/dir.js:1222 static/scripts/app/views/dir.js:1384
msgid "Successfully moved %(name)s."
msgstr ""
msgstr "「%(name)s」を移動しました。"
#: static/scripts/app/views/dir.js:1224 static/scripts/app/views/dir.js:1386
msgid "Successfully moved %(name)s and 1 other item."
msgstr ""
msgstr " %(name)s ほか1項目を移動しました。"
#: static/scripts/app/views/dir.js:1226 static/scripts/app/views/dir.js:1388
msgid "Successfully moved %(name)s and %(amount)s other items."
msgstr ""
msgstr "%(name)s のほか%(amount)s項目を移動しました。"
#: static/scripts/app/views/dir.js:1231 static/scripts/app/views/dir.js:1392
msgid "Successfully copied %(name)s."
msgstr ""
msgstr "「%(name)s」をコピーしました。"
#: static/scripts/app/views/dir.js:1233 static/scripts/app/views/dir.js:1394
msgid "Successfully copied %(name)s and 1 other item."
msgstr ""
msgstr " %(name)s ほか1項目をコピーしました。"
#: static/scripts/app/views/dir.js:1235 static/scripts/app/views/dir.js:1396
msgid "Successfully copied %(name)s and %(amount)s other items."
msgstr ""
msgstr "%(name)s のほか%(amount)s項目をコピーしました。"
#: static/scripts/app/views/dir.js:1251
msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)."
@ -569,7 +582,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1253
msgid "Internal error. Failed to move %(name)s."
msgstr ""
msgstr "内部エラー。「%(name)s」の移動に失敗しました。"
#: static/scripts/app/views/dir.js:1257
msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)."
@ -577,15 +590,15 @@ msgstr ""
#: static/scripts/app/views/dir.js:1259
msgid "Internal error. Failed to copy %(name)s."
msgstr ""
msgstr "内部エラー。「%(name)s」のコピーに失敗しました。"
#: static/scripts/app/views/dir.js:1301
msgid "Moving file %(index)s of %(total)s"
msgstr ""
msgstr "ファイル %(index)s / %(total)s移動中"
#: static/scripts/app/views/dir.js:1301
msgid "Copying file %(index)s of %(total)s"
msgstr ""
msgstr "ファイル %(index)s / %(total)sコピー中"
#: static/scripts/app/views/dir.js:1327
msgid "Failed to move %(name)s"
@ -610,21 +623,21 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
msgstr " %(name)s が削除されました。"
#: static/scripts/app/views/fileupload.js:10
msgid "File is too big"
msgstr ""
msgstr "ファイルが大きすぎます"
#: static/scripts/app/views/fileupload.js:11
msgid "File is too small"
msgstr ""
msgstr "ファイルが小さすぎます"
#: static/scripts/app/views/fileupload.js:12
msgid "Filetype not allowed"
msgstr ""
msgstr "ファイルタイプが許可されていません"
#: static/scripts/app/views/fileupload.js:13
msgid "Maximum number of files exceeded"
@ -632,7 +645,7 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:14
msgid "Uploaded bytes exceed file size"
msgstr ""
msgstr "ファイルのアップロード最大サイズを超えました"
#: static/scripts/app/views/fileupload.js:15
msgid "Empty file upload result"
@ -646,35 +659,35 @@ msgstr ""
#: static/scripts/sysadmin-app/views/address-book-group-item.js:152
#: static/scripts/sysadmin-app/views/system-repo.js:52
msgid "Error"
msgstr ""
msgstr "エラー"
#: static/scripts/app/views/fileupload.js:18
msgid "uploaded"
msgstr ""
msgstr "アップロードされました"
#: static/scripts/app/views/fileupload.js:19
msgid "canceled"
msgstr ""
msgstr "キャンセルしました"
#: static/scripts/app/views/fileupload.js:20
msgid "Start"
msgstr ""
msgstr "開始"
#: static/scripts/app/views/fileupload.js:46
msgid "File Uploading..."
msgstr ""
msgstr "ファイルのアップロード中"
#: static/scripts/app/views/fileupload.js:47
msgid "File Upload complete"
msgstr ""
msgstr "ファイルアップロードが完了しました"
#: static/scripts/app/views/fileupload.js:48
msgid "File Upload canceled"
msgstr ""
msgstr "ファイルアップロードがキャンセルされました"
#: static/scripts/app/views/fileupload.js:49
msgid "File Upload failed"
msgstr ""
msgstr "ファイルアップロードが失敗しました"
#: static/scripts/app/views/fileupload.js:279
msgid "Replace file {filename}?"
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "操作に失敗しました。ネットワークをご確認ください。"
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"
@ -743,7 +756,7 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:238
msgid "Please choose a CSV file"
msgstr ""
msgstr "CSVファイルを選択してください"
#: static/scripts/app/views/group-settings.js:269
msgid "Successfully imported."
@ -751,19 +764,19 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "グループ削除"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "このグループを本当に削除しますか?"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "グループを抜ける"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
msgstr ""
msgstr "このグループから脱退してよいですか?"
#: static/scripts/app/views/invitation.js:37
#: static/scripts/sysadmin-app/views/address-book-group-item.js:57
@ -798,7 +811,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:65
#: static/scripts/sysadmin-app/views/trash-repo.js:28
msgid "Delete Library"
msgstr ""
msgstr "ライブラリ削除"
#: static/scripts/app/views/repo.js:96
#: static/scripts/sysadmin-app/views/address-book-group-item.js:47
@ -809,7 +822,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "%s を削除して宜しいでしょうか?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
@ -866,7 +879,7 @@ msgstr ""
#: static/scripts/app/views/share.js:365
msgid "Please enter valid days"
msgstr ""
msgstr "有効な日数を入力してください。"
#: static/scripts/app/views/share.js:468
msgid "Share link is copied to the clipboard."
@ -874,7 +887,7 @@ msgstr ""
#: static/scripts/app/views/share.js:485
msgid "Please input at least an email."
msgstr ""
msgstr "1つの以上のメールアドレスを入力してください"
#: static/scripts/app/views/share.js:502
msgid "Successfully sent to {placeholder}"
@ -891,7 +904,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/trash-repo.js:71
#: static/scripts/sysadmin-app/views/trash-repos.js:64
msgid "Success"
msgstr ""
msgstr "成功"
#: static/scripts/app/views/starred-file-item.js:69
msgid "Successfully unstared {placeholder}"
@ -945,7 +958,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "氏名は必須項目です。"
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -965,7 +978,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "ライブラリの移転"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -990,7 +1003,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:82
#: static/scripts/sysadmin-app/views/group.js:30
msgid "Delete Group"
msgstr ""
msgstr "グループ削除"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:83
msgid "Deleted group {group_name}"
@ -1006,7 +1019,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "ユーザ削除"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"
@ -1018,7 +1031,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "メンバー削除"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1026,12 +1039,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "ライブラリ共有を外す"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "%s の共有を本当に外しますか?"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"
@ -1052,26 +1065,26 @@ msgstr ""
#: static/scripts/sysadmin-app/views/search-trash-repos.js:47
#, javascript-format
msgid "Are you sure you want to delete all %s's libraries?"
msgstr ""
msgstr "すべての %s ライブラリを削除して、本当によろしいですか?"
#: static/scripts/sysadmin-app/views/trash-repo.js:29
#, javascript-format
msgid "Are you sure you want to delete %s completely?"
msgstr ""
msgstr "%s を完全に削除して本当に良いですか?"
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "ライブラリの復元"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format
msgid "Are you sure you want to restore %s?"
msgstr ""
msgstr "%s を復元してよろしいでしょうか?"
#: static/scripts/sysadmin-app/views/trash-repos.js:49
msgid "Clear Trash"
msgstr ""
msgstr "ゴミ箱を空にする"
#: static/scripts/sysadmin-app/views/trash-repos.js:50
msgid "Are you sure you want to clear trash?"
msgstr ""
msgstr "ゴミ箱を空にしてよいでしょうか?"

File diff suppressed because it is too large Load Diff

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Korean (http://www.transifex.com/haiwen/seahub/language/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,69 +18,62 @@ msgstr ""
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "시스템 관리자"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "사용함"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "설정"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "로그아웃"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "새 파일"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "새 폴더"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "이름"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "보내기"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "취소"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -98,32 +91,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "파일 이름 바꾸기"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "폴더 이름 바꾸기"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "이름 바꾸기"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "이 위키에서 파일 검색"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "크기"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "최근 업데이트"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "페이지 편집"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "페이지"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -209,7 +222,7 @@ msgstr "이름이 필요합니다"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -348,7 +361,7 @@ msgstr "%(name)s 복사에 성공했습니다"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -611,7 +624,7 @@ msgid "locked by {placeholder}"
msgstr "{placeholder}이(가) 잠금"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "%(name)s을(를) 성공적으로 삭제했습니다"

File diff suppressed because it is too large Load Diff

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Lithuanian (http://www.transifex.com/haiwen/seahub/language/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,18 +17,6 @@ msgstr ""
"Language: lt\n"
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
@ -39,51 +27,56 @@ msgstr ""
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Nustatymai"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Vardas"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Pateikti"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "Atšaukti"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "Ištrinti"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,33 +90,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Ieškoti bylų šioje wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Dydis"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Paskutinis atnaujinimas"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Redaguoti puslapį"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Puslapiai"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -199,20 +212,20 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:430
#: static/scripts/app/views/group.js:65 static/scripts/common.js:643
msgid "Just now"
msgstr ""
msgstr "Ką tik"
#: static/scripts/app/models/repo.js:34
msgid "Name is required"
msgstr ""
msgstr "Vardas privalomas"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
msgstr ""
msgstr "Vardas negali turėti '/'."
#: static/scripts/app/models/repo.js:41 static/scripts/app/views/share.js:334
msgid "Please enter password"
@ -224,7 +237,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:44 static/scripts/app/views/share.js:338
msgid "Password is too short"
msgstr ""
msgstr "Slaptažodis per trumpas"
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Skaityti-Rašyti"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Tik-Skaityti"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -334,7 +347,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:188
#: static/scripts/app/views/dir.js:1173
msgid "Invalid destination path"
msgstr ""
msgstr "Neteisingas paskirties maršrutas"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:207
#: static/scripts/app/views/dirent.js:296
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -359,7 +372,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/dir.js:82
#: static/scripts/sysadmin-app/views/group-members.js:51
msgid "It is required."
msgstr ""
msgstr "Privaloma."
#: static/scripts/app/views/dialogs/dirent-smart-link.js:50
msgid "Internal link copied to clipboard"
@ -468,7 +481,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:409
msgid "Password is required."
msgstr ""
msgstr "Slaptažodis privalomas."
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
@ -610,7 +623,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
@ -646,7 +659,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/address-book-group-item.js:152
#: static/scripts/sysadmin-app/views/system-repo.js:52
msgid "Error"
msgstr ""
msgstr "Klaida"
#: static/scripts/app/views/fileupload.js:18
msgid "uploaded"
@ -682,7 +695,7 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:305
msgid "File is locked"
msgstr ""
msgstr "Byla užblokuota"
#: static/scripts/app/views/fileupload.js:440
msgid "Network error"
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "Nepavyko. Patikrinkite tinklą."
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"
@ -790,7 +803,7 @@ msgstr ""
#: static/scripts/app/views/notifications.js:63
msgid "Refresh"
msgstr ""
msgstr "Atnaujinti"
#: static/scripts/app/views/repo.js:95
#: static/scripts/sysadmin-app/views/address-book-group-library.js:30
@ -809,7 +822,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Ar tikrai norite ištrinti %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
@ -854,7 +867,7 @@ msgstr ""
#: static/scripts/app/views/share.js:287 static/scripts/app/views/share.js:288
#: static/scripts/app/views/share.js:309 static/scripts/app/views/share.js:310
msgid "Hide"
msgstr ""
msgstr "Slėpti"
#: static/scripts/app/views/share.js:305 static/scripts/app/views/share.js:306
msgid "Show"
@ -891,7 +904,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/trash-repo.js:71
#: static/scripts/sysadmin-app/views/trash-repos.js:64
msgid "Success"
msgstr ""
msgstr "Sėkmingai"
#: static/scripts/app/views/starred-file-item.js:69
msgid "Successfully unstared {placeholder}"
@ -945,7 +958,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "Vardas privalomas."
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -1006,7 +1019,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "Ištrinti vartotoją"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"
@ -1061,7 +1074,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "Atkurti biblioteką"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format

File diff suppressed because it is too large Load Diff

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Latvian (http://www.transifex.com/haiwen/seahub/language/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,69 +18,62 @@ msgstr ""
"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Administratora logs"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Lietots"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Iestatījumi"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Iziet"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Jauna datne"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "Jauna mape"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Vārds"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Pielietot"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Atcelt"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -98,32 +91,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Pārsaukt datni"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Pārsaukt mapi"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Pārsaukt"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Mekklēt datnes wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Izmērs "
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Atjaunots"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Rediģēt lapu"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Lapas"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -209,7 +222,7 @@ msgstr "Nepieciešams nosaukums"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -348,7 +361,7 @@ msgstr "Veiksmīgi kopēts %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -611,7 +624,7 @@ msgid "locked by {placeholder}"
msgstr "bloķēts {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Veiksmīgi dzēsts %(name)s"
@ -946,7 +959,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "Nepieciešams nosaukums."
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -966,7 +979,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "Pārsūtīt bibliotēku"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -1019,7 +1032,7 @@ msgstr "Veiksmīgi iztīrītas visas kļūdas."
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "Dzēst dalībnieku"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1027,12 +1040,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "Atcelt koplietošanu bibliotēkai"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "Vai tiešām vēlaties atcelt koplietošanu %s ?"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Latvian (Latvia) (http://www.transifex.com/haiwen/seahub/language/lv_LV/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,18 +17,6 @@ msgstr ""
"Language: lv_LV\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
@ -39,51 +27,56 @@ msgstr ""
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Iestatījumi"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Iziet"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "Jauna datne"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Nosaukums"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Pielietot"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "Atcelt"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "Dzēst"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,33 +90,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Atjaunots"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr ""
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -199,7 +212,7 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:430
#: static/scripts/app/views/group.js:65 static/scripts/common.js:643
msgid "Just now"
msgstr ""
msgstr "Tikko"
#: static/scripts/app/models/repo.js:34
msgid "Name is required"
@ -208,7 +221,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -220,7 +233,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:42 static/scripts/app/views/share.js:342
msgid "Please enter the password again"
msgstr ""
msgstr "Lūdzu ievadīt paroli vēlreiz"
#: static/scripts/app/models/repo.js:44 static/scripts/app/views/share.js:338
msgid "Password is too short"
@ -228,7 +241,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
msgstr ""
msgstr "Paroles nesakrīt"
#: static/scripts/app/models/repo.js:63 static/scripts/common.js:345
msgid "Read-Only library"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Lasīt-Rakstīt"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Tikai lasīt"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -270,15 +283,15 @@ msgstr ""
#: static/scripts/app/views/details.js:65
msgid "Modified files"
msgstr ""
msgstr "Mainītās datnes"
#: static/scripts/app/views/details.js:71
msgid "New directories"
msgstr ""
msgstr "Jaunas mapes"
#: static/scripts/app/views/details.js:77
msgid "Deleted directories"
msgstr ""
msgstr "Dzēstās mapes"
#: static/scripts/app/views/device.js:42
#: static/scripts/sysadmin-app/views/device.js:42
@ -323,7 +336,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
msgid "Failed."
msgstr ""
msgstr "Neizdevās"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
#: static/scripts/app/views/dialogs/dirent-mvcp.js:159
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -439,7 +452,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "Ielāde... "
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -473,7 +486,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "Lūdzu pārbaudiet tīkla pieslēgumu"
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
@ -610,7 +623,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "Neizdevās. Lūdzu pārbaudiet tīkla pieslēgumu."
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"
@ -751,19 +764,19 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "Aizmirst grupu"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "Tiešām aizmirst grupu"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "Pamest grupu"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
msgstr ""
msgstr "Tiešām pārtraukt"
#: static/scripts/app/views/invitation.js:37
#: static/scripts/sysadmin-app/views/address-book-group-item.js:57
@ -809,7 +822,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Tiešām dzēst %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
@ -1018,7 +1031,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "Dzēst biedru"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1026,12 +1039,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "Atcelt pieejas krātuvei"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "Tiešām atcelt pieejas %s ?"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"

File diff suppressed because it is too large Load Diff

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Macedonian (http://www.transifex.com/haiwen/seahub/language/mk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,18 +17,6 @@ msgstr ""
"Language: mk\n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
@ -45,41 +33,46 @@ msgstr ""
msgid "Log out"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -97,33 +90,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr ""
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -208,7 +221,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -610,7 +623,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/haiwen/seahub/language/nb_NO/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,69 +19,62 @@ msgstr ""
"Language: nb_NO\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Systemadministrator"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Forbrukt"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Innstillinger"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Logg ut"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Ny fil"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "New mappe"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Navn"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Send inn"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Avbryt"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -99,32 +92,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Gi nytt navn til fil"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Gi nytt navn til mappe"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Omdøpe"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Søk etter filer i denne wikien."
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Størrelse"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Siste oppdatering"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Rediger side"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Sider"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -210,7 +223,7 @@ msgstr "Navn er påkrevd"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -341,15 +354,15 @@ msgstr "Ugyldig destinasjonsbane"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:207
#: static/scripts/app/views/dirent.js:296
msgid "Successfully moved %(name)s"
msgstr ""
msgstr "Vellykket flytting av %(name)s"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:210
msgid "Successfully copied %(name)s"
msgstr ""
msgstr "Vellykket kopiering av %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -419,7 +432,7 @@ msgstr "Du kan bare velge 1 element"
#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:222
msgid "Please click and choose a directory."
msgstr ""
msgstr "Vennligst trykk og velg en mappe"
#: static/scripts/app/views/dialogs/repo-history-settings.js:36
msgid "{placeholder} History Setting"
@ -612,7 +625,7 @@ msgid "locked by {placeholder}"
msgstr "låst av {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Vellykket sletting av %(name)s"
@ -735,7 +748,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:108
#: static/scripts/sysadmin-app/views/repos.js:59
msgid "You cannot select any more choices"
msgstr ""
msgstr "Du kan ikke velge flere"
#: static/scripts/app/views/group-settings.js:178
msgid ""
@ -745,7 +758,7 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:238
msgid "Please choose a CSV file"
msgstr ""
msgstr "Velg en CSV-fil"
#: static/scripts/app/views/group-settings.js:269
msgid "Successfully imported."
@ -753,11 +766,11 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "Forkaste gruppen"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "Ønsker du virkelig å slette denne gruppen?"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
@ -811,12 +824,12 @@ msgstr "Slett bibliotek"
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Er du sikker på at du vil slette %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
msgid "Successfully deleted."
msgstr ""
msgstr "Vellykket sletting."
#: static/scripts/app/views/repo.js:237
#: static/scripts/sysadmin-app/views/repo.js:97
@ -967,7 +980,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "Overfør bibliotek"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -1028,12 +1041,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "Opphev deling av bibliotek"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "Er du sikker på at du vil oppheve delingen av %s?"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"
@ -1049,17 +1062,17 @@ msgstr ""
#: static/scripts/sysadmin-app/views/search-trash-repos.js:46
msgid "Delete Library By Owner"
msgstr ""
msgstr "Slett bibliotek etter eier"
#: static/scripts/sysadmin-app/views/search-trash-repos.js:47
#, javascript-format
msgid "Are you sure you want to delete all %s's libraries?"
msgstr ""
msgstr "Er du sikker på at du ønsker å slette alle %s's biblioteker?"
#: static/scripts/sysadmin-app/views/trash-repo.js:29
#, javascript-format
msgid "Are you sure you want to delete %s completely?"
msgstr ""
msgstr "Er du sikker på at du ønsker å slette %s fullstendig?"
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"

File diff suppressed because it is too large Load Diff

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Dutch (http://www.transifex.com/haiwen/seahub/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,18 +17,6 @@ msgstr ""
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
@ -45,41 +33,46 @@ msgstr ""
msgid "Log out"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -97,33 +90,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr ""
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -208,7 +221,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -610,7 +623,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""

View File

@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/haiwen/seahub/language/nl_NL/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -22,69 +22,62 @@ msgstr ""
"Language: nl_NL\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Systeembeheerder"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Gebruikt"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Instellingen"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Uitloggen"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Nieuw bestand"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "Nieuwe map"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Naam"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Verzenden"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Annuleren"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -102,32 +95,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Bestand hernoemen"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Map hernoemen"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Hernoem"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Zoek bestanden in deze wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Grootte"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Laatste wijziging"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Pagina aanpassen"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Pagina's"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -213,7 +226,7 @@ msgstr "Naam is verplicht"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -352,7 +365,7 @@ msgstr "Succesvolle kopie van %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -615,7 +628,7 @@ msgid "locked by {placeholder}"
msgstr "vergrendeld door {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Verwijderen van %(name)s gelukt"
@ -1031,12 +1044,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "Delen ongedaan maken"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "Weet u zeker dat u wilt stoppen met het delen van %s ? "
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"

File diff suppressed because it is too large Load Diff

View File

@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Polish (http://www.transifex.com/haiwen/seahub/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,69 +18,62 @@ msgstr ""
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Administrator systemu"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Wykorzystane"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Ustawienia"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Wyloguj się"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Nowy plik"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "Nowy folder"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Nazwa"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Wyślij"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Anuluj"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -98,32 +91,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Zmień nazwę pliku"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Zmień nazwę folderu"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Zmień nazwę"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Przeszukaj pliki w tej Wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Rozmiar"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Ostatnia aktualizacja"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Edytuj stronę"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Strony"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -209,7 +222,7 @@ msgstr "Nazwa jest wymagana"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -348,7 +361,7 @@ msgstr "Pomyślnie skopiowano %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -611,7 +624,7 @@ msgid "locked by {placeholder}"
msgstr "zablokowany przez {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Pomyślnie usunięto %(name)s"

File diff suppressed because it is too large Load Diff

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/haiwen/seahub/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,69 +20,62 @@ msgstr ""
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Administrador do sistema"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Usado"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Configuração"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Sair"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Novo Arquivo"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "Nova Pasta"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Nome"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Enviar"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Cancelar"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -100,32 +93,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Renonear Arquivo"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Renomear Pasta"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Renomear"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Pesquisar arquivos nessa wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Tamanho"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Última atualização"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Editar página"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Páginas"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -211,7 +224,7 @@ msgstr "Nome requerido"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -350,7 +363,7 @@ msgstr "%(name)s copiado com sucesso"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -613,7 +626,7 @@ msgid "locked by {placeholder}"
msgstr "Bloqueado por {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "%(name)s excluído com sucesso"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/haiwen/seahub/language/pt_PT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,18 +17,6 @@ msgstr ""
"Language: pt_PT\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
@ -45,45 +33,50 @@ msgstr ""
msgid "Log out"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Nome"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "Eliminar"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,33 +90,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr ""
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -208,7 +221,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -224,7 +237,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:44 static/scripts/app/views/share.js:338
msgid "Password is too short"
msgstr ""
msgstr "A palavra-passe é muito curta"
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Ler/Escrever"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Ler Apenas"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -439,7 +452,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "A carregar..."
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -473,7 +486,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "Por favor verifique a ligação à rede."
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
@ -610,7 +623,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "Erro. Por favor verifique a ligação à rede."
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"

File diff suppressed because it is too large Load Diff

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Russian (http://www.transifex.com/haiwen/seahub/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,18 +20,6 @@ msgstr ""
"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr "Редактировать страницу"
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr "Wiki"
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr "Страницы"
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr "Системный администратор"
@ -48,41 +36,46 @@ msgstr "Настройки"
msgid "Log out"
msgstr "Выход"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Новый файл"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Новая папка"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr "Имя"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr "Новое имя"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr "Отправить"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Отменить"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -100,88 +93,108 @@ msgstr "ДА"
msgid "NO"
msgstr "НЕТ"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Переименовать файл"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Переименовать папку"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr "Введите новое имя файла:"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr "Введите новое имя папки:"
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Переименовать"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Поиск файлов в wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Размер"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Последнее обновление"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Редактировать страницу"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wiki"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Страницы"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
msgstr "Предпросмотр и изменение библиотеки в облаке"
#: seahub/templates/priv/ali.js:9
msgid "Preview-on-Cloud library"
msgstr ""
msgstr "Предпросмотр библиотеки в облаке"
#: seahub/templates/priv/ali.js:10
msgid "Admin access"
msgstr ""
msgstr "Доступ администратора"
#: seahub/templates/priv/ali.js:12
msgid "Read-Write folder"
msgstr ""
msgstr "Чтение и запись папки"
#: seahub/templates/priv/ali.js:13
msgid "Read-Only folder"
msgstr ""
msgstr "Только чтение папки"
#: seahub/templates/priv/ali.js:14
msgid "Preview-Edit-on-Cloud folder"
msgstr ""
msgstr "Предпросмотр и изменение папки в облаке"
#: seahub/templates/priv/ali.js:15
msgid "Preview-on-Cloud folder"
msgstr ""
msgstr "Предпросмотр папки в облаке"
#: seahub/templates/priv/ali.js:17
msgid "Preview-Edit-on-Cloud"
msgstr ""
msgstr "Предпросмотр и изменение в облаке"
#: seahub/templates/priv/ali.js:18
msgid "Preview-on-Cloud"
msgstr ""
msgstr "Предпросмотр в облаке"
#: seahub/templates/priv/ali.js:21
msgid "Read-Write-Sync"
msgstr ""
msgstr "Чтение, запись и синхронизация"
#: seahub/templates/priv/ali.js:22
msgid "Read-Only-Sync"
msgstr ""
msgstr "Чтение и только синхронизация"
#: seahub/templates/priv/ali.js:23
msgid "Co-Owner"
msgstr ""
msgstr "Совладелец"
#: seahub/templates/priv/ali.js:24
msgid "Edit-on-Cloud"
msgstr ""
msgstr "Изменение в облаке"
#: seahub/templates/priv/ali.js:25
msgid "View-on-Cloud"
msgstr ""
msgstr "Просмотр в облаке"
#: static/scripts/app/models/deleted-repo.js:19
#: static/scripts/app/models/repo.js:59 static/scripts/common.js:343
@ -211,7 +224,7 @@ msgstr "Имя обязательно"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -350,7 +363,7 @@ msgstr "Успешно скопировано %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -613,7 +626,7 @@ msgid "locked by {placeholder}"
msgstr "заблокирован {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Успешно удалено %(name)s"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/haiwen/seahub/language/sk_SK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,18 +17,6 @@ msgstr ""
"Language: sk_SK\n"
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
@ -45,45 +33,50 @@ msgstr ""
msgid "Log out"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Meno"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "Zrušiť"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "Zmazať"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,33 +90,53 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr ""
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Posledná zmena"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr ""
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr ""
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr ""
@ -208,7 +221,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -228,7 +241,7 @@ msgstr ""
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
msgstr ""
msgstr "Heslá nie sú rovnaké"
#: static/scripts/app/models/repo.js:63 static/scripts/common.js:345
msgid "Read-Only library"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Čítanie-Zápis"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Iba čítanie"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -439,7 +452,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "Nahrávam..."
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -473,7 +486,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "Prosím skontrolujte pripojenie k sieti."
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
@ -610,7 +623,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "Chyba. Prosím skontrolujte pripojenie k sieti."
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"
@ -945,7 +958,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "Meno je povinné."
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -990,7 +1003,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:82
#: static/scripts/sysadmin-app/views/group.js:30
msgid "Delete Group"
msgstr ""
msgstr "Zmazať skupinu"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:83
msgid "Deleted group {group_name}"
@ -1061,7 +1074,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "Obnoviť knižnicu"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Slovenian (Slovenia) (http://www.transifex.com/haiwen/seahub/language/sl_SI/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,73 +17,66 @@ msgstr ""
"Language: sl_SI\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Sistemski admin"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Porabljeno"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Nastavitve"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Odjava"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "Nova datoteka"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Nova mapa"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Ime"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Potrdi"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "Prekliči"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "Izbriši"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,32 +90,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
msgstr "Preimenuj datoteko"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Preimenuj"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Iskanje datotek v tem Wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Velikost"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Posodobljeno"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Uredi stran"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Strani"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -203,12 +216,12 @@ msgstr "Ravnokar"
#: static/scripts/app/models/repo.js:34
msgid "Name is required"
msgstr ""
msgstr "Naziv je zahtevan"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -216,19 +229,19 @@ msgstr ""
#: static/scripts/app/models/repo.js:41 static/scripts/app/views/share.js:334
msgid "Please enter password"
msgstr ""
msgstr "Prosimo vnesite geslo"
#: static/scripts/app/models/repo.js:42 static/scripts/app/views/share.js:342
msgid "Please enter the password again"
msgstr ""
msgstr "Prosimo ponovno vnesite geslo"
#: static/scripts/app/models/repo.js:44 static/scripts/app/views/share.js:338
msgid "Password is too short"
msgstr ""
msgstr "Geslo je prekratko"
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
msgstr ""
msgstr "Gesli se ne ujemata"
#: static/scripts/app/models/repo.js:63 static/scripts/common.js:345
msgid "Read-Only library"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Branje-pisanje"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Samo branje"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -258,27 +271,27 @@ msgstr ""
#: static/scripts/app/views/details.js:47
msgid "New files"
msgstr ""
msgstr "Nove datoteke"
#: static/scripts/app/views/details.js:53
msgid "Deleted files"
msgstr ""
msgstr "Izbrisane datoteke"
#: static/scripts/app/views/details.js:59
msgid "Renamed or Moved files"
msgstr ""
msgstr "Preimenovane ali premaknjene datoteke"
#: static/scripts/app/views/details.js:65
msgid "Modified files"
msgstr ""
msgstr "Spremenjene datoteke"
#: static/scripts/app/views/details.js:71
msgid "New directories"
msgstr ""
msgstr "Nove mape"
#: static/scripts/app/views/details.js:77
msgid "Deleted directories"
msgstr ""
msgstr "Izbrisane mape"
#: static/scripts/app/views/device.js:42
#: static/scripts/sysadmin-app/views/device.js:42
@ -311,15 +324,15 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:102
msgid "Moving %(name)s"
msgstr ""
msgstr "Premikanje %(name)s"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:102
msgid "Copying %(name)s"
msgstr ""
msgstr "Kopiranje %(name)s"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:118
msgid "Saving..."
msgstr ""
msgstr "Shranjujem…."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
msgid "Failed."
@ -329,25 +342,25 @@ msgstr "Neuspešno."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:159
#: static/scripts/app/views/dir.js:1423
msgid "Canceled."
msgstr ""
msgstr "Preklicano."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:188
#: static/scripts/app/views/dir.js:1173
msgid "Invalid destination path"
msgstr ""
msgstr "Neveljavna končna pot"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:207
#: static/scripts/app/views/dirent.js:296
msgid "Successfully moved %(name)s"
msgstr ""
msgstr "Uspešen premik %(name)s"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:210
msgid "Successfully copied %(name)s"
msgstr ""
msgstr "Uspešno kopiranje %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -359,7 +372,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/dir.js:82
#: static/scripts/sysadmin-app/views/group-members.js:51
msgid "It is required."
msgstr ""
msgstr "Je zahtevano."
#: static/scripts/app/views/dialogs/dirent-smart-link.js:50
msgid "Internal link copied to clipboard"
@ -371,7 +384,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:50
msgid "Please enter the old password"
msgstr ""
msgstr "Prosimo vnesite novo geslo"
#: static/scripts/app/views/dialogs/repo-change-password.js:54
msgid "Please enter a new password"
@ -379,15 +392,15 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:58
msgid "New password is too short"
msgstr ""
msgstr "Novo geslo je prekratko"
#: static/scripts/app/views/dialogs/repo-change-password.js:62
msgid "Please enter the new password again"
msgstr ""
msgstr "Prosimo vnesite ponovno novo geslo"
#: static/scripts/app/views/dialogs/repo-change-password.js:66
msgid "New passwords don't match"
msgstr ""
msgstr "Novi gesli se ne ujemata"
#: static/scripts/app/views/dialogs/repo-change-password.js:87
msgid "Successfully changed library password."
@ -417,7 +430,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:222
msgid "Please click and choose a directory."
msgstr ""
msgstr "Prosimo kliknite in izberite mapo."
#: static/scripts/app/views/dialogs/repo-history-settings.js:36
msgid "{placeholder} History Setting"
@ -439,7 +452,7 @@ msgstr "Zapri (Esc)"
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "Nalagam..."
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -468,7 +481,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:409
msgid "Password is required."
msgstr ""
msgstr "Geslo je zahtevano"
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
@ -477,7 +490,7 @@ msgstr "Prosimo, preverite povezavo."
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
msgstr ""
msgstr "Je samo končnica, prosimo vnesite še naziv."
#: static/scripts/app/views/dir.js:779
msgid "New Markdown File"
@ -497,11 +510,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1035 static/scripts/app/views/dir.js:1178
msgid "Processing..."
msgstr ""
msgstr "Obdelujem…."
#: static/scripts/app/views/dir.js:1072
msgid "Successfully deleted %(name)s."
msgstr ""
msgstr "Uspešno ostranjena %(name)s."
#: static/scripts/app/views/dir.js:1074
msgid "Successfully deleted %(name)s and 1 other item."
@ -509,7 +522,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1076
msgid "Successfully deleted %(name)s and %(amount)s other items."
msgstr ""
msgstr "Uspešno odstranjeno %(name)s in %(amount)s ostalih datotek."
#: static/scripts/app/views/dir.js:1085
msgid "Failed to delete %(name)s."
@ -525,11 +538,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1102
msgid "Delete Items"
msgstr ""
msgstr "Izbriši predmete"
#: static/scripts/app/views/dir.js:1103
msgid "Are you sure you want to delete these selected items?"
msgstr ""
msgstr "Ali ste prepričani da želite izbrisati izbrano?"
#: static/scripts/app/views/dir.js:1117
msgid "Move selected item(s) to:"
@ -541,27 +554,27 @@ msgstr ""
#: static/scripts/app/views/dir.js:1222 static/scripts/app/views/dir.js:1384
msgid "Successfully moved %(name)s."
msgstr ""
msgstr "Uspešno prestavljeno %(name)s."
#: static/scripts/app/views/dir.js:1224 static/scripts/app/views/dir.js:1386
msgid "Successfully moved %(name)s and 1 other item."
msgstr ""
msgstr "Uspešno prestavljeno %(name)s in 1 druga datoteka."
#: static/scripts/app/views/dir.js:1226 static/scripts/app/views/dir.js:1388
msgid "Successfully moved %(name)s and %(amount)s other items."
msgstr ""
msgstr "Supešno prestavljeno %(name)s in %(amount)s ostalih datotek."
#: static/scripts/app/views/dir.js:1231 static/scripts/app/views/dir.js:1392
msgid "Successfully copied %(name)s."
msgstr ""
msgstr "Uspešno kopirano %(name)s."
#: static/scripts/app/views/dir.js:1233 static/scripts/app/views/dir.js:1394
msgid "Successfully copied %(name)s and 1 other item."
msgstr ""
msgstr "Uspešno kopirana %(name)s in 1 dodatna datoteka."
#: static/scripts/app/views/dir.js:1235 static/scripts/app/views/dir.js:1396
msgid "Successfully copied %(name)s and %(amount)s other items."
msgstr ""
msgstr "Uspešno kopirana %(name)s in %(amount)s ostalih datotek."
#: static/scripts/app/views/dir.js:1251
msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)."
@ -569,7 +582,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1253
msgid "Internal error. Failed to move %(name)s."
msgstr ""
msgstr "Notranja napaka. Spodletelo premikanje %(name)s."
#: static/scripts/app/views/dir.js:1257
msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)."
@ -577,15 +590,15 @@ msgstr ""
#: static/scripts/app/views/dir.js:1259
msgid "Internal error. Failed to copy %(name)s."
msgstr ""
msgstr "Notranja napaka. Spodletelo kopiranje %(name)s."
#: static/scripts/app/views/dir.js:1301
msgid "Moving file %(index)s of %(total)s"
msgstr ""
msgstr "Premik datoteke %(index)s od %(total)s"
#: static/scripts/app/views/dir.js:1301
msgid "Copying file %(index)s of %(total)s"
msgstr ""
msgstr "Kopiranje datoteke %(index)s od %(total)s"
#: static/scripts/app/views/dir.js:1327
msgid "Failed to move %(name)s"
@ -610,21 +623,21 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
msgstr "Uspešno odstranjena %(name)s"
#: static/scripts/app/views/fileupload.js:10
msgid "File is too big"
msgstr ""
msgstr "Datoteka je prevelika"
#: static/scripts/app/views/fileupload.js:11
msgid "File is too small"
msgstr ""
msgstr "Datoteka je premajhna"
#: static/scripts/app/views/fileupload.js:12
msgid "Filetype not allowed"
msgstr ""
msgstr "Vrsta datoteke ni dovoljena"
#: static/scripts/app/views/fileupload.js:13
msgid "Maximum number of files exceeded"
@ -632,11 +645,11 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:14
msgid "Uploaded bytes exceed file size"
msgstr ""
msgstr "Prekoračena velikost naloženih bitov."
#: static/scripts/app/views/fileupload.js:15
msgid "Empty file upload result"
msgstr ""
msgstr "Rezultat nalaganja prazne datoteke"
#: static/scripts/app/views/fileupload.js:17
#: static/scripts/app/views/fileupload.js:225
@ -646,7 +659,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/address-book-group-item.js:152
#: static/scripts/sysadmin-app/views/system-repo.js:52
msgid "Error"
msgstr ""
msgstr "Napaka"
#: static/scripts/app/views/fileupload.js:18
msgid "uploaded"
@ -658,7 +671,7 @@ msgstr "preklicano"
#: static/scripts/app/views/fileupload.js:20
msgid "Start"
msgstr ""
msgstr "Začetek"
#: static/scripts/app/views/fileupload.js:46
msgid "File Uploading..."
@ -743,7 +756,7 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:238
msgid "Please choose a CSV file"
msgstr ""
msgstr "Prosim, izberi CSV datoteko"
#: static/scripts/app/views/group-settings.js:269
msgid "Successfully imported."
@ -751,19 +764,19 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "Prekliči skupino"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "Ali res želiš preklicati skupino?"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "Zaključi skupino"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
msgstr ""
msgstr "Ali si prepričan/a, da želiš ukiniti to skupino?"
#: static/scripts/app/views/invitation.js:37
#: static/scripts/sysadmin-app/views/address-book-group-item.js:57
@ -798,7 +811,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:65
#: static/scripts/sysadmin-app/views/trash-repo.js:28
msgid "Delete Library"
msgstr ""
msgstr "Izbriši knjižnico"
#: static/scripts/app/views/repo.js:96
#: static/scripts/sysadmin-app/views/address-book-group-item.js:47
@ -809,12 +822,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Ali si prepričan/a, da želiš odstraniti %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
msgid "Successfully deleted."
msgstr ""
msgstr "Uspešen izbris."
#: static/scripts/app/views/repo.js:237
#: static/scripts/sysadmin-app/views/repo.js:97
@ -874,7 +887,7 @@ msgstr ""
#: static/scripts/app/views/share.js:485
msgid "Please input at least an email."
msgstr ""
msgstr "Prismo vnesite najmanj en email."
#: static/scripts/app/views/share.js:502
msgid "Successfully sent to {placeholder}"
@ -945,7 +958,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "Ime je zahtevano."
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -965,7 +978,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "Prenos knjižnice"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -990,7 +1003,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:82
#: static/scripts/sysadmin-app/views/group.js:30
msgid "Delete Group"
msgstr ""
msgstr "Odstranitev skupine"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:83
msgid "Deleted group {group_name}"
@ -1006,7 +1019,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "Izbriši uporabnika"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"
@ -1018,7 +1031,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "Izbriši člana"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1026,12 +1039,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "Odstrani knjižnico iz deljenja"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "Ali ste prepričani da želite odstraniti deljenje za %s ?"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"
@ -1052,26 +1065,26 @@ msgstr ""
#: static/scripts/sysadmin-app/views/search-trash-repos.js:47
#, javascript-format
msgid "Are you sure you want to delete all %s's libraries?"
msgstr ""
msgstr "Ali ste prepričani, da želite izbrisati vse knjižnice uporabnika %s?"
#: static/scripts/sysadmin-app/views/trash-repo.js:29
#, javascript-format
msgid "Are you sure you want to delete %s completely?"
msgstr ""
msgstr "Ali ste prepričani, da želite povsem izbrisati %s?"
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "Obnovi knjižnico"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format
msgid "Are you sure you want to restore %s?"
msgstr ""
msgstr "Ali ste prepričani, da želite obnoviti %s?"
#: static/scripts/sysadmin-app/views/trash-repos.js:49
msgid "Clear Trash"
msgstr ""
msgstr "Sprazni koš"
#: static/scripts/sysadmin-app/views/trash-repos.js:50
msgid "Are you sure you want to clear trash?"
msgstr ""
msgstr "Ali ste prepričani, da želite sprazniti smeti?"

File diff suppressed because it is too large Load Diff

View File

@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Swedish (http://www.transifex.com/haiwen/seahub/language/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,69 +20,62 @@ msgstr ""
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Systemadmin"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Använt"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Inställningar"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Logga ut"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "Ny fil"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "Ny Katalog"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Namn"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "OK"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Avbryt"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -100,32 +93,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "Döp om fil"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "Döp om mapp"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr ""
msgstr "Döp om"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr ""
msgstr "Sök i alla filer i denna wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Storlek"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Senaste uppdatering"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Skapa sida"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "Wikis"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Sidor"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -211,7 +224,7 @@ msgstr "Namn krävs"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -350,7 +363,7 @@ msgstr "Lyckades kopiera %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -613,7 +626,7 @@ msgid "locked by {placeholder}"
msgstr "låst av {placeholder}"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Lyckades ta bort %(name)s"

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Thai (Thailand) (http://www.transifex.com/haiwen/seahub/language/th_TH/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,73 +17,66 @@ msgstr ""
"Language: th_TH\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "ส่วนผู้ดูแลระบบ"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "ใช้ไป"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "ตั้งค่า"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "ออกจากระบบ"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "ไฟล์ใหม่"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "ชื่อ"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "ส่ง"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "ยกเลิก"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "ลบ"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,32 +90,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
msgstr "เปลี่ยนชื่อไฟล์"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "เปลี่ยนชื่อ"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "ค้นหาไฟล์ใน wiki นี้"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "ขนาด"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "ปรับปรุงล่าสุด"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "แก้ไขหน้าเพจ"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "เพจ"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -199,16 +212,16 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:430
#: static/scripts/app/views/group.js:65 static/scripts/common.js:643
msgid "Just now"
msgstr ""
msgstr "เดี๋ยวนี้"
#: static/scripts/app/models/repo.js:34
msgid "Name is required"
msgstr ""
msgstr "ชื่อ จำเป็น"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -216,19 +229,19 @@ msgstr ""
#: static/scripts/app/models/repo.js:41 static/scripts/app/views/share.js:334
msgid "Please enter password"
msgstr ""
msgstr "โปรดกรอกรหัสผ่าน"
#: static/scripts/app/models/repo.js:42 static/scripts/app/views/share.js:342
msgid "Please enter the password again"
msgstr ""
msgstr "โปรดกรอกรหัสผ่านอีกครั้ง"
#: static/scripts/app/models/repo.js:44 static/scripts/app/views/share.js:338
msgid "Password is too short"
msgstr ""
msgstr "รหัสผ่านสั้นเกินไป"
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
msgstr ""
msgstr "รหัสผ่านไม่ตรงกัน"
#: static/scripts/app/models/repo.js:63 static/scripts/common.js:345
msgid "Read-Only library"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "อ่าน-เขียน"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "อ่านอย่างเดียว"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -258,27 +271,27 @@ msgstr ""
#: static/scripts/app/views/details.js:47
msgid "New files"
msgstr ""
msgstr "ไฟล์ใหม่"
#: static/scripts/app/views/details.js:53
msgid "Deleted files"
msgstr ""
msgstr "ลบไฟล์แล้ว"
#: static/scripts/app/views/details.js:59
msgid "Renamed or Moved files"
msgstr ""
msgstr "เปลี่ยนชื่อหรือย้ายไฟล์"
#: static/scripts/app/views/details.js:65
msgid "Modified files"
msgstr ""
msgstr "ปรับปรุงไฟล์แล้ว"
#: static/scripts/app/views/details.js:71
msgid "New directories"
msgstr ""
msgstr "ไดเร็กทอรี่ใหม่"
#: static/scripts/app/views/details.js:77
msgid "Deleted directories"
msgstr ""
msgstr "ลบไดเร็กทอรี่แล้ว"
#: static/scripts/app/views/device.js:42
#: static/scripts/sysadmin-app/views/device.js:42
@ -319,22 +332,22 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:118
msgid "Saving..."
msgstr ""
msgstr "กำลังบันทึก..."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
msgid "Failed."
msgstr ""
msgstr "ผิดพลาด"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
#: static/scripts/app/views/dialogs/dirent-mvcp.js:159
#: static/scripts/app/views/dir.js:1423
msgid "Canceled."
msgstr ""
msgstr "ยกเลิกแล้ว"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:188
#: static/scripts/app/views/dir.js:1173
msgid "Invalid destination path"
msgstr ""
msgstr "พาธปลายทางไม่ถูกต้อง"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:207
#: static/scripts/app/views/dirent.js:296
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -359,7 +372,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/dir.js:82
#: static/scripts/sysadmin-app/views/group-members.js:51
msgid "It is required."
msgstr ""
msgstr "มันจำเป็น"
#: static/scripts/app/views/dialogs/dirent-smart-link.js:50
msgid "Internal link copied to clipboard"
@ -371,7 +384,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:50
msgid "Please enter the old password"
msgstr ""
msgstr "โปรดกรอกรหัสผ่านเก่า"
#: static/scripts/app/views/dialogs/repo-change-password.js:54
msgid "Please enter a new password"
@ -379,15 +392,15 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:58
msgid "New password is too short"
msgstr ""
msgstr "รหัสผ่านใหม่สั้นเกินไป"
#: static/scripts/app/views/dialogs/repo-change-password.js:62
msgid "Please enter the new password again"
msgstr ""
msgstr "โปรดกรอกรหัสผ่านใหม่อีกครั้ง"
#: static/scripts/app/views/dialogs/repo-change-password.js:66
msgid "New passwords don't match"
msgstr ""
msgstr "รหัสผ่านใหม่ไม่ตรงกัน"
#: static/scripts/app/views/dialogs/repo-change-password.js:87
msgid "Successfully changed library password."
@ -417,7 +430,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:222
msgid "Please click and choose a directory."
msgstr ""
msgstr "โปรดกดและเลือกไดเรกทอรี่"
#: static/scripts/app/views/dialogs/repo-history-settings.js:36
msgid "{placeholder} History Setting"
@ -439,7 +452,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "กำลังโหลด..."
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -468,16 +481,16 @@ msgstr ""
#: static/scripts/app/views/dir.js:409
msgid "Password is required."
msgstr ""
msgstr "รหัสผ่านจำเป็น"
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "โปรดตรวจสอบเครือข่าย"
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
msgstr ""
msgstr "เฉพาะส่วนขยายเหล่านั้น, โปรดใส่ชื่อ "
#: static/scripts/app/views/dir.js:779
msgid "New Markdown File"
@ -497,11 +510,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1035 static/scripts/app/views/dir.js:1178
msgid "Processing..."
msgstr ""
msgstr "ประมวลผล..."
#: static/scripts/app/views/dir.js:1072
msgid "Successfully deleted %(name)s."
msgstr ""
msgstr "ลบ %(name)s สำเร็จ"
#: static/scripts/app/views/dir.js:1074
msgid "Successfully deleted %(name)s and 1 other item."
@ -509,7 +522,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1076
msgid "Successfully deleted %(name)s and %(amount)s other items."
msgstr ""
msgstr "ลบ %(name)s และ %(amount)s ไอเท็มอื่นๆ สำเร็จ"
#: static/scripts/app/views/dir.js:1085
msgid "Failed to delete %(name)s."
@ -525,11 +538,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1102
msgid "Delete Items"
msgstr ""
msgstr "ลบไอเทม"
#: static/scripts/app/views/dir.js:1103
msgid "Are you sure you want to delete these selected items?"
msgstr ""
msgstr "คุณแน่ใจว่าต้องการลบไอเทมที่เลืกเหล่านี้?"
#: static/scripts/app/views/dir.js:1117
msgid "Move selected item(s) to:"
@ -541,7 +554,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1222 static/scripts/app/views/dir.js:1384
msgid "Successfully moved %(name)s."
msgstr ""
msgstr "ย้าย %(name)s สำเร็จ"
#: static/scripts/app/views/dir.js:1224 static/scripts/app/views/dir.js:1386
msgid "Successfully moved %(name)s and 1 other item."
@ -549,11 +562,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1226 static/scripts/app/views/dir.js:1388
msgid "Successfully moved %(name)s and %(amount)s other items."
msgstr ""
msgstr "ย้าย %(name)s และ %(amount)s ไอเท็มอื่นๆสำเร็จ"
#: static/scripts/app/views/dir.js:1231 static/scripts/app/views/dir.js:1392
msgid "Successfully copied %(name)s."
msgstr ""
msgstr "คัดลอก %(name)s สำเร็จ"
#: static/scripts/app/views/dir.js:1233 static/scripts/app/views/dir.js:1394
msgid "Successfully copied %(name)s and 1 other item."
@ -561,7 +574,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1235 static/scripts/app/views/dir.js:1396
msgid "Successfully copied %(name)s and %(amount)s other items."
msgstr ""
msgstr "คัดลอก %(name)s and %(amount)s ไอเท็มอื่นๆ สำเร็จ"
#: static/scripts/app/views/dir.js:1251
msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)."
@ -569,7 +582,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1253
msgid "Internal error. Failed to move %(name)s."
msgstr ""
msgstr "Internal error ย้าย %(name)s ผิดพลาด"
#: static/scripts/app/views/dir.js:1257
msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)."
@ -577,7 +590,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1259
msgid "Internal error. Failed to copy %(name)s."
msgstr ""
msgstr "Internal error คัดลอก %(name)s ผิดพลาด"
#: static/scripts/app/views/dir.js:1301
msgid "Moving file %(index)s of %(total)s"
@ -610,21 +623,21 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
msgstr "ลบ %(name)s สำเร็จ"
#: static/scripts/app/views/fileupload.js:10
msgid "File is too big"
msgstr ""
msgstr "ไฟล์ขนาดใหญ่เกินไป"
#: static/scripts/app/views/fileupload.js:11
msgid "File is too small"
msgstr ""
msgstr "ไฟล์ขนาดเล็กเกินไป"
#: static/scripts/app/views/fileupload.js:12
msgid "Filetype not allowed"
msgstr ""
msgstr "ประเภทไฟล์ไม่อนุญาต"
#: static/scripts/app/views/fileupload.js:13
msgid "Maximum number of files exceeded"
@ -632,11 +645,11 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:14
msgid "Uploaded bytes exceed file size"
msgstr ""
msgstr "ขนาดไบต์ที่อัพโหลดเกินขนาดไฟล์"
#: static/scripts/app/views/fileupload.js:15
msgid "Empty file upload result"
msgstr ""
msgstr "ผลการอัพโหลดไฟล์ว่าง"
#: static/scripts/app/views/fileupload.js:17
#: static/scripts/app/views/fileupload.js:225
@ -646,7 +659,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/address-book-group-item.js:152
#: static/scripts/sysadmin-app/views/system-repo.js:52
msgid "Error"
msgstr ""
msgstr "ผิดพลาด"
#: static/scripts/app/views/fileupload.js:18
msgid "uploaded"
@ -658,7 +671,7 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:20
msgid "Start"
msgstr ""
msgstr "เริ่ม"
#: static/scripts/app/views/fileupload.js:46
msgid "File Uploading..."
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "ผิดพลาด. โปรดตรวจสอบเครือข่าย"
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"
@ -743,7 +756,7 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:238
msgid "Please choose a CSV file"
msgstr ""
msgstr "โปรดเลือกไฟล์ CSV "
#: static/scripts/app/views/group-settings.js:269
msgid "Successfully imported."
@ -751,19 +764,19 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "ละทิ้งกลุ่ม"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "ต้องการละทิ้งกลุ่มจริงหรือ?"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "ออกจากกลุ่ม"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
msgstr ""
msgstr "คุณแน่ใจคุณต้องการออกจากกลุ่ม ?"
#: static/scripts/app/views/invitation.js:37
#: static/scripts/sysadmin-app/views/address-book-group-item.js:57
@ -809,7 +822,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "คุณแน่ใจว่าต้องการลบ %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
@ -874,7 +887,7 @@ msgstr ""
#: static/scripts/app/views/share.js:485
msgid "Please input at least an email."
msgstr ""
msgstr "โปรดป้อนอย่างน้อยหนึ่งอีเมลล์"
#: static/scripts/app/views/share.js:502
msgid "Successfully sent to {placeholder}"
@ -945,7 +958,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "ชื่อ จำเป็น"
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -965,7 +978,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "คลังแฟ้มข้อมูลถ่ายโอน"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -990,7 +1003,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:82
#: static/scripts/sysadmin-app/views/group.js:30
msgid "Delete Group"
msgstr ""
msgstr "ลบกลุ่ม"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:83
msgid "Deleted group {group_name}"
@ -1006,7 +1019,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "ลบผู้ใช้"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"
@ -1018,7 +1031,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "ลบสมาชิก"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1026,12 +1039,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "ยกเลิกแบ่งปันคลังแฟ้มข้อมูล"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "คุณแน่ใจหรือไม่ที่ต้องการยกเลิกแบ่งปัน %s ?"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"
@ -1061,7 +1074,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "กู้คืนคลังแฟ้มข้อมูล"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format

File diff suppressed because it is too large Load Diff

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Turkish (http://www.transifex.com/haiwen/seahub/language/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,73 +17,66 @@ msgstr ""
"Language: tr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Sistem Yöneticisi"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Kullanılan"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Ayarlar"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Çıkış yap"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "Yeni Dosya"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Yeni Klasör"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "İsim"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Gönder"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "İptal"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "Sil"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,32 +90,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
msgstr "Dosyayı yeniden adlandır"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Yeniden Adlandır"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Dosyaları bu wikide ara"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Boyut"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "En son Güncelleme"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Sayfayı Düzenle"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Sayfalar"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -199,16 +212,16 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:430
#: static/scripts/app/views/group.js:65 static/scripts/common.js:643
msgid "Just now"
msgstr ""
msgstr "Şu anda"
#: static/scripts/app/models/repo.js:34
msgid "Name is required"
msgstr ""
msgstr "İsim gerekli"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -216,19 +229,19 @@ msgstr ""
#: static/scripts/app/models/repo.js:41 static/scripts/app/views/share.js:334
msgid "Please enter password"
msgstr ""
msgstr "Lütfen şifre giriniz"
#: static/scripts/app/models/repo.js:42 static/scripts/app/views/share.js:342
msgid "Please enter the password again"
msgstr ""
msgstr "Lütfen şifreyi tekrar giriniz."
#: static/scripts/app/models/repo.js:44 static/scripts/app/views/share.js:338
msgid "Password is too short"
msgstr ""
msgstr "Şifre çok kısa"
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
msgstr ""
msgstr "Şifreler eşleşmiyor."
#: static/scripts/app/models/repo.js:63 static/scripts/common.js:345
msgid "Read-Only library"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Okuma-Yazma"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Salt okunur"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -258,27 +271,27 @@ msgstr ""
#: static/scripts/app/views/details.js:47
msgid "New files"
msgstr ""
msgstr "Yeni Dosyalar"
#: static/scripts/app/views/details.js:53
msgid "Deleted files"
msgstr ""
msgstr "Silinmiş Dosyalar"
#: static/scripts/app/views/details.js:59
msgid "Renamed or Moved files"
msgstr ""
msgstr "Yeniden Adlandırılmış ya da Taşınmış Dosyalar"
#: static/scripts/app/views/details.js:65
msgid "Modified files"
msgstr ""
msgstr "Değiştirilmiş dosyalar"
#: static/scripts/app/views/details.js:71
msgid "New directories"
msgstr ""
msgstr "Yeni dizinler"
#: static/scripts/app/views/details.js:77
msgid "Deleted directories"
msgstr ""
msgstr "Silinmiş dizinler"
#: static/scripts/app/views/device.js:42
#: static/scripts/sysadmin-app/views/device.js:42
@ -311,43 +324,43 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-mvcp.js:102
msgid "Moving %(name)s"
msgstr ""
msgstr "%(name)s taşınıyor."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:102
msgid "Copying %(name)s"
msgstr ""
msgstr "%(name)s kopyalanıyor."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:118
msgid "Saving..."
msgstr ""
msgstr "Kaydediliyor..."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
msgid "Failed."
msgstr ""
msgstr "Başarısız."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
#: static/scripts/app/views/dialogs/dirent-mvcp.js:159
#: static/scripts/app/views/dir.js:1423
msgid "Canceled."
msgstr ""
msgstr "İptal edildi."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:188
#: static/scripts/app/views/dir.js:1173
msgid "Invalid destination path"
msgstr ""
msgstr "Geçersiz hedef yolu"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:207
#: static/scripts/app/views/dirent.js:296
msgid "Successfully moved %(name)s"
msgstr ""
msgstr "%(name)s başarıyla taşındı"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:210
msgid "Successfully copied %(name)s"
msgstr ""
msgstr "%(name)s başarıyla kopyalandı"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -359,7 +372,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/dir.js:82
#: static/scripts/sysadmin-app/views/group-members.js:51
msgid "It is required."
msgstr ""
msgstr "Gerekli."
#: static/scripts/app/views/dialogs/dirent-smart-link.js:50
msgid "Internal link copied to clipboard"
@ -371,7 +384,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:50
msgid "Please enter the old password"
msgstr ""
msgstr "Lütfen eski şifreyi giriniz"
#: static/scripts/app/views/dialogs/repo-change-password.js:54
msgid "Please enter a new password"
@ -379,15 +392,15 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:58
msgid "New password is too short"
msgstr ""
msgstr "Yeni şifre çok kısa"
#: static/scripts/app/views/dialogs/repo-change-password.js:62
msgid "Please enter the new password again"
msgstr ""
msgstr "Lütfen yeni şifreyi tekrar giriniz"
#: static/scripts/app/views/dialogs/repo-change-password.js:66
msgid "New passwords don't match"
msgstr ""
msgstr "Yeni şifreler eşleşmiyor"
#: static/scripts/app/views/dialogs/repo-change-password.js:87
msgid "Successfully changed library password."
@ -417,7 +430,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:222
msgid "Please click and choose a directory."
msgstr ""
msgstr "Lütfen tıklayın ve bir dizin seçin."
#: static/scripts/app/views/dialogs/repo-history-settings.js:36
msgid "{placeholder} History Setting"
@ -434,22 +447,22 @@ msgstr ""
#: static/scripts/app/views/dir.js:58
#: static/scripts/app/views/starred-file.js:106
msgid "Close (Esc)"
msgstr ""
msgstr "Kapat (Esc)"
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "Yükleniyor..."
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
msgid "Previous (Left arrow key)"
msgstr ""
msgstr "Önceki (Sol ok tuşu)"
#: static/scripts/app/views/dir.js:63
#: static/scripts/app/views/starred-file.js:111
msgid "Next (Right arrow key)"
msgstr ""
msgstr "Sonraki (Sağ ok tuşu)"
#: static/scripts/app/views/dir.js:64
#: static/scripts/app/views/starred-file.js:112
@ -459,7 +472,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:69
#: static/scripts/app/views/starred-file.js:118
msgid "Open in New Tab"
msgstr ""
msgstr "Yeni bir Sekmede Aç"
#: static/scripts/app/views/dir.js:72
#: static/scripts/app/views/starred-file.js:121
@ -468,16 +481,16 @@ msgstr ""
#: static/scripts/app/views/dir.js:409
msgid "Password is required."
msgstr ""
msgstr "Şifre gerekli."
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "Lütfen ağı kontrol edin."
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
msgstr ""
msgstr "Sadece uzantı var, lütfen bir isim giriniz."
#: static/scripts/app/views/dir.js:779
msgid "New Markdown File"
@ -497,11 +510,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1035 static/scripts/app/views/dir.js:1178
msgid "Processing..."
msgstr ""
msgstr "İşleniyor..."
#: static/scripts/app/views/dir.js:1072
msgid "Successfully deleted %(name)s."
msgstr ""
msgstr "%(name)s başarıyla silindi."
#: static/scripts/app/views/dir.js:1074
msgid "Successfully deleted %(name)s and 1 other item."
@ -509,7 +522,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1076
msgid "Successfully deleted %(name)s and %(amount)s other items."
msgstr ""
msgstr " %(name)s ve %(amount)s başka öğe başarıyla silindi."
#: static/scripts/app/views/dir.js:1085
msgid "Failed to delete %(name)s."
@ -525,11 +538,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1102
msgid "Delete Items"
msgstr ""
msgstr "Öğeleri sil"
#: static/scripts/app/views/dir.js:1103
msgid "Are you sure you want to delete these selected items?"
msgstr ""
msgstr "Seçili öğeleri silmek istediğinize emin misiniz?"
#: static/scripts/app/views/dir.js:1117
msgid "Move selected item(s) to:"
@ -541,27 +554,27 @@ msgstr ""
#: static/scripts/app/views/dir.js:1222 static/scripts/app/views/dir.js:1384
msgid "Successfully moved %(name)s."
msgstr ""
msgstr "%(name)s başarıyla taşındı."
#: static/scripts/app/views/dir.js:1224 static/scripts/app/views/dir.js:1386
msgid "Successfully moved %(name)s and 1 other item."
msgstr ""
msgstr "%(name)s ve 1 diğer öğe başarıyla taşındı."
#: static/scripts/app/views/dir.js:1226 static/scripts/app/views/dir.js:1388
msgid "Successfully moved %(name)s and %(amount)s other items."
msgstr ""
msgstr "%(name)s ve %(amount)s başka öğe başarıyla taşındı."
#: static/scripts/app/views/dir.js:1231 static/scripts/app/views/dir.js:1392
msgid "Successfully copied %(name)s."
msgstr ""
msgstr "%(name)s başarıyla kopyalandı."
#: static/scripts/app/views/dir.js:1233 static/scripts/app/views/dir.js:1394
msgid "Successfully copied %(name)s and 1 other item."
msgstr ""
msgstr "%(name)s ve 1 diğer öğe başarıyla kopyalandı."
#: static/scripts/app/views/dir.js:1235 static/scripts/app/views/dir.js:1396
msgid "Successfully copied %(name)s and %(amount)s other items."
msgstr ""
msgstr "%(name)s ve %(amount)s başka öğe başarıyla kopyalandı."
#: static/scripts/app/views/dir.js:1251
msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)."
@ -569,7 +582,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1253
msgid "Internal error. Failed to move %(name)s."
msgstr ""
msgstr "İç hata. %(name)s taşıma başarısız."
#: static/scripts/app/views/dir.js:1257
msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)."
@ -577,15 +590,15 @@ msgstr ""
#: static/scripts/app/views/dir.js:1259
msgid "Internal error. Failed to copy %(name)s."
msgstr ""
msgstr "İç hata. %(name)s kopyalama başarısız."
#: static/scripts/app/views/dir.js:1301
msgid "Moving file %(index)s of %(total)s"
msgstr ""
msgstr "%(total)s içinden %(index)s dosyası taşınıyor."
#: static/scripts/app/views/dir.js:1301
msgid "Copying file %(index)s of %(total)s"
msgstr ""
msgstr "%(total)s içinden %(index)s dosyası kopyalanıyor"
#: static/scripts/app/views/dir.js:1327
msgid "Failed to move %(name)s"
@ -610,21 +623,21 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
msgstr "%(name)s başarıyla tamamlandı."
#: static/scripts/app/views/fileupload.js:10
msgid "File is too big"
msgstr ""
msgstr "Dosya çok büyük"
#: static/scripts/app/views/fileupload.js:11
msgid "File is too small"
msgstr ""
msgstr "Dosya çok küçük"
#: static/scripts/app/views/fileupload.js:12
msgid "Filetype not allowed"
msgstr ""
msgstr "Dosya tipine izin verilmiyor."
#: static/scripts/app/views/fileupload.js:13
msgid "Maximum number of files exceeded"
@ -632,11 +645,11 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:14
msgid "Uploaded bytes exceed file size"
msgstr ""
msgstr "Yüklenen baytlar dosya boyutunu aşıyor."
#: static/scripts/app/views/fileupload.js:15
msgid "Empty file upload result"
msgstr ""
msgstr "Boş dosya yükleme sonucu"
#: static/scripts/app/views/fileupload.js:17
#: static/scripts/app/views/fileupload.js:225
@ -646,35 +659,35 @@ msgstr ""
#: static/scripts/sysadmin-app/views/address-book-group-item.js:152
#: static/scripts/sysadmin-app/views/system-repo.js:52
msgid "Error"
msgstr ""
msgstr "Hata"
#: static/scripts/app/views/fileupload.js:18
msgid "uploaded"
msgstr ""
msgstr "yüklendi"
#: static/scripts/app/views/fileupload.js:19
msgid "canceled"
msgstr ""
msgstr "iptal edildi"
#: static/scripts/app/views/fileupload.js:20
msgid "Start"
msgstr ""
msgstr "Başla"
#: static/scripts/app/views/fileupload.js:46
msgid "File Uploading..."
msgstr ""
msgstr "Dosyayı Yüklüyor..."
#: static/scripts/app/views/fileupload.js:47
msgid "File Upload complete"
msgstr ""
msgstr "Dosya Yükleme tamamlandı"
#: static/scripts/app/views/fileupload.js:48
msgid "File Upload canceled"
msgstr ""
msgstr "Dosya Yükleme iptal edildi"
#: static/scripts/app/views/fileupload.js:49
msgid "File Upload failed"
msgstr ""
msgstr "Dosya Yükleme Başarısız"
#: static/scripts/app/views/fileupload.js:279
msgid "Replace file {filename}?"
@ -682,7 +695,7 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:305
msgid "File is locked"
msgstr ""
msgstr "Dosya kilitli"
#: static/scripts/app/views/fileupload.js:440
msgid "Network error"
@ -695,7 +708,7 @@ msgstr ""
#: static/scripts/app/views/folder-perm.js:126
#: static/scripts/app/views/share.js:842
msgid "Select groups"
msgstr ""
msgstr "Grup seçin"
#: static/scripts/app/views/folder-share-item.js:125
msgid "Edit failed"
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "Başarısız oldu. Lütfen ağı kontrol edin."
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"
@ -743,7 +756,7 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:238
msgid "Please choose a CSV file"
msgstr ""
msgstr "Lütfen bir CVS dosyası seçiniz"
#: static/scripts/app/views/group-settings.js:269
msgid "Successfully imported."
@ -751,19 +764,19 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "Grubu Sonlandır"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "Bu grubu sonlandırmayı gerçekten istiyor musunuz?"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "Gruptan Çık"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
msgstr ""
msgstr "Gruptan çıkmak istediğinize emin misiniz?"
#: static/scripts/app/views/invitation.js:37
#: static/scripts/sysadmin-app/views/address-book-group-item.js:57
@ -798,7 +811,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:65
#: static/scripts/sysadmin-app/views/trash-repo.js:28
msgid "Delete Library"
msgstr ""
msgstr "Kütüphaneyi Sil"
#: static/scripts/app/views/repo.js:96
#: static/scripts/sysadmin-app/views/address-book-group-item.js:47
@ -809,7 +822,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "%s'i silmek istediğinize emin misiniz?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
@ -858,7 +871,7 @@ msgstr ""
#: static/scripts/app/views/share.js:305 static/scripts/app/views/share.js:306
msgid "Show"
msgstr ""
msgstr "Göster"
#: static/scripts/app/views/share.js:361
msgid "Please enter days."
@ -866,7 +879,7 @@ msgstr ""
#: static/scripts/app/views/share.js:365
msgid "Please enter valid days"
msgstr ""
msgstr "Lütfen geçerli günler girin"
#: static/scripts/app/views/share.js:468
msgid "Share link is copied to the clipboard."
@ -874,15 +887,15 @@ msgstr ""
#: static/scripts/app/views/share.js:485
msgid "Please input at least an email."
msgstr ""
msgstr "Lütfen en az bir eposta girişi yapın"
#: static/scripts/app/views/share.js:502
msgid "Successfully sent to {placeholder}"
msgstr ""
msgstr "{placeholder}'a gönderildi"
#: static/scripts/app/views/share.js:506
msgid "Failed to send to {placeholder}"
msgstr ""
msgstr "{placeholder}'a gönderilemedi"
#: static/scripts/app/views/shared-repo.js:46
#: static/scripts/sysadmin-app/views/dirent.js:49
@ -891,7 +904,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/trash-repo.js:71
#: static/scripts/sysadmin-app/views/trash-repos.js:64
msgid "Success"
msgstr ""
msgstr "Başarılı"
#: static/scripts/app/views/starred-file-item.js:69
msgid "Successfully unstared {placeholder}"
@ -945,7 +958,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "İsim gerekli."
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -965,7 +978,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "Kütüphaneyi transfer et"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -990,7 +1003,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:82
#: static/scripts/sysadmin-app/views/group.js:30
msgid "Delete Group"
msgstr ""
msgstr "Grubu Sil"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:83
msgid "Deleted group {group_name}"
@ -1006,7 +1019,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "Kullanıcıyı sil"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"
@ -1018,7 +1031,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "Üyeyi Sil"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1026,12 +1039,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "Kütüphane paylaşımını kaldır"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "%s paylaşımını kaldırmak istediğinize emin misiniz?"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"
@ -1047,31 +1060,31 @@ msgstr ""
#: static/scripts/sysadmin-app/views/search-trash-repos.js:46
msgid "Delete Library By Owner"
msgstr ""
msgstr "Sahibine göre kütüphane sil"
#: static/scripts/sysadmin-app/views/search-trash-repos.js:47
#, javascript-format
msgid "Are you sure you want to delete all %s's libraries?"
msgstr ""
msgstr "%s'e ait tüm kütüphaneleri silmek istediğinize emin misiniz?"
#: static/scripts/sysadmin-app/views/trash-repo.js:29
#, javascript-format
msgid "Are you sure you want to delete %s completely?"
msgstr ""
msgstr "%s'i tamamen silmek istediğinize emin misiniz?"
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "Kütüphaneyi Geri Yükle"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format
msgid "Are you sure you want to restore %s?"
msgstr ""
msgstr "%s'i yeniden yüklemek istediğinize emin misiniz?"
#: static/scripts/sysadmin-app/views/trash-repos.js:49
msgid "Clear Trash"
msgstr ""
msgstr "Çöp Tenekesini Boşalt"
#: static/scripts/sysadmin-app/views/trash-repos.js:50
msgid "Are you sure you want to clear trash?"
msgstr ""
msgstr "Çöp tenekesini boşaltmak istediğinize emin misiniz?"

File diff suppressed because it is too large Load Diff

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Ukrainian (http://www.transifex.com/haiwen/seahub/language/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,73 +17,66 @@ msgstr ""
"Language: uk\n"
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "Системний адміністратор"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Використовується"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Налаштування"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Вихід"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "Новий файл"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Им'я"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Готово"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr ""
msgstr "Скасувати"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
msgstr ""
msgstr "Видалити"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:18
msgid "Are you sure to delete"
@ -97,32 +90,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
msgstr "Перейменувати файл"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Перейменувати"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Пошук файлів в wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Розмір"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Останнє оновлення"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Редагувати сторінку"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Сторінки"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -199,16 +212,16 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:430
#: static/scripts/app/views/group.js:65 static/scripts/common.js:643
msgid "Just now"
msgstr ""
msgstr "Просто зараз"
#: static/scripts/app/models/repo.js:34
msgid "Name is required"
msgstr ""
msgstr "Потрібене старе ім'я"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -216,19 +229,19 @@ msgstr ""
#: static/scripts/app/models/repo.js:41 static/scripts/app/views/share.js:334
msgid "Please enter password"
msgstr ""
msgstr "Будь ласка, введіть пароль"
#: static/scripts/app/models/repo.js:42 static/scripts/app/views/share.js:342
msgid "Please enter the password again"
msgstr ""
msgstr "Будь ласка підтвердіть пароль"
#: static/scripts/app/models/repo.js:44 static/scripts/app/views/share.js:338
msgid "Password is too short"
msgstr ""
msgstr "Пароль дуже короткий"
#: static/scripts/app/models/repo.js:46 static/scripts/app/views/share.js:346
msgid "Passwords don't match"
msgstr ""
msgstr "Паролі не збігаються"
#: static/scripts/app/models/repo.js:63 static/scripts/common.js:345
msgid "Read-Only library"
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Читання+Запис"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Тільки для читання"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -258,27 +271,27 @@ msgstr ""
#: static/scripts/app/views/details.js:47
msgid "New files"
msgstr ""
msgstr "Новий файл"
#: static/scripts/app/views/details.js:53
msgid "Deleted files"
msgstr ""
msgstr "Видалені файли"
#: static/scripts/app/views/details.js:59
msgid "Renamed or Moved files"
msgstr ""
msgstr "перейменовані або переміщені файли"
#: static/scripts/app/views/details.js:65
msgid "Modified files"
msgstr ""
msgstr "Модифіковані файли"
#: static/scripts/app/views/details.js:71
msgid "New directories"
msgstr ""
msgstr "Нові каталоги"
#: static/scripts/app/views/details.js:77
msgid "Deleted directories"
msgstr ""
msgstr "Видалені каталоги"
#: static/scripts/app/views/device.js:42
#: static/scripts/sysadmin-app/views/device.js:42
@ -319,22 +332,22 @@ msgstr "Копіювання %(name)s"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:118
msgid "Saving..."
msgstr ""
msgstr "Збереження..."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
msgid "Failed."
msgstr ""
msgstr "Невдало."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:133
#: static/scripts/app/views/dialogs/dirent-mvcp.js:159
#: static/scripts/app/views/dir.js:1423
msgid "Canceled."
msgstr ""
msgstr "Скасовано."
#: static/scripts/app/views/dialogs/dirent-mvcp.js:188
#: static/scripts/app/views/dir.js:1173
msgid "Invalid destination path"
msgstr ""
msgstr "Невірний шлях призначення"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:207
#: static/scripts/app/views/dirent.js:296
@ -347,7 +360,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -359,7 +372,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/dir.js:82
#: static/scripts/sysadmin-app/views/group-members.js:51
msgid "It is required."
msgstr ""
msgstr "Потрібен Email."
#: static/scripts/app/views/dialogs/dirent-smart-link.js:50
msgid "Internal link copied to clipboard"
@ -371,7 +384,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:50
msgid "Please enter the old password"
msgstr ""
msgstr "Будь ласка введіть старий пароль"
#: static/scripts/app/views/dialogs/repo-change-password.js:54
msgid "Please enter a new password"
@ -379,15 +392,15 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:58
msgid "New password is too short"
msgstr ""
msgstr "Новий пароль дуже короткий"
#: static/scripts/app/views/dialogs/repo-change-password.js:62
msgid "Please enter the new password again"
msgstr ""
msgstr "Будь ласка, введіть знову новий пароль "
#: static/scripts/app/views/dialogs/repo-change-password.js:66
msgid "New passwords don't match"
msgstr ""
msgstr "Нові паролі не співпадають"
#: static/scripts/app/views/dialogs/repo-change-password.js:87
msgid "Successfully changed library password."
@ -417,7 +430,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:222
msgid "Please click and choose a directory."
msgstr ""
msgstr "Клікніть для вибору каталогу"
#: static/scripts/app/views/dialogs/repo-history-settings.js:36
msgid "{placeholder} History Setting"
@ -439,7 +452,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:59
#: static/scripts/app/views/starred-file.js:107
msgid "Loading..."
msgstr ""
msgstr "Завантаження..."
#: static/scripts/app/views/dir.js:62
#: static/scripts/app/views/starred-file.js:110
@ -468,16 +481,16 @@ msgstr ""
#: static/scripts/app/views/dir.js:409
msgid "Password is required."
msgstr ""
msgstr "Потрібен пароль."
#: static/scripts/app/views/dir.js:479
#: static/scripts/app/views/notifications.js:63 static/scripts/common.js:467
msgid "Please check the network."
msgstr ""
msgstr "Будь ласка, перевірте мережеве з’єднання."
#: static/scripts/app/views/dir.js:733
msgid "Only an extension there, please input a name."
msgstr ""
msgstr "Тут тільки розширення, будь ласка, введіть значення."
#: static/scripts/app/views/dir.js:779
msgid "New Markdown File"
@ -497,11 +510,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1035 static/scripts/app/views/dir.js:1178
msgid "Processing..."
msgstr ""
msgstr "Обробка ..."
#: static/scripts/app/views/dir.js:1072
msgid "Successfully deleted %(name)s."
msgstr ""
msgstr "Успішно видалені %(name)s."
#: static/scripts/app/views/dir.js:1074
msgid "Successfully deleted %(name)s and 1 other item."
@ -509,7 +522,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1076
msgid "Successfully deleted %(name)s and %(amount)s other items."
msgstr ""
msgstr "Успішно видалені %(name)s та %(amount)s інших позицій."
#: static/scripts/app/views/dir.js:1085
msgid "Failed to delete %(name)s."
@ -525,11 +538,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1102
msgid "Delete Items"
msgstr ""
msgstr "Видалити"
#: static/scripts/app/views/dir.js:1103
msgid "Are you sure you want to delete these selected items?"
msgstr ""
msgstr "Ви впевнені, що хочете видалити %s ?"
#: static/scripts/app/views/dir.js:1117
msgid "Move selected item(s) to:"
@ -541,7 +554,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1222 static/scripts/app/views/dir.js:1384
msgid "Successfully moved %(name)s."
msgstr ""
msgstr "Успішно переміщено %(name)s."
#: static/scripts/app/views/dir.js:1224 static/scripts/app/views/dir.js:1386
msgid "Successfully moved %(name)s and 1 other item."
@ -549,11 +562,11 @@ msgstr ""
#: static/scripts/app/views/dir.js:1226 static/scripts/app/views/dir.js:1388
msgid "Successfully moved %(name)s and %(amount)s other items."
msgstr ""
msgstr "Успішно переміщено %(name)s та %(amount)s інших позицій."
#: static/scripts/app/views/dir.js:1231 static/scripts/app/views/dir.js:1392
msgid "Successfully copied %(name)s."
msgstr ""
msgstr "Успішно скопійовано %(name)s."
#: static/scripts/app/views/dir.js:1233 static/scripts/app/views/dir.js:1394
msgid "Successfully copied %(name)s and 1 other item."
@ -561,7 +574,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1235 static/scripts/app/views/dir.js:1396
msgid "Successfully copied %(name)s and %(amount)s other items."
msgstr ""
msgstr "Успішно скопійовано %(name)s та %(amount)s інших позицій."
#: static/scripts/app/views/dir.js:1251
msgid "Internal error. Failed to move %(name)s and %(amount)s other item(s)."
@ -569,7 +582,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1253
msgid "Internal error. Failed to move %(name)s."
msgstr ""
msgstr "Внутрішня помилка. Не вдалося перемістити %(name)s."
#: static/scripts/app/views/dir.js:1257
msgid "Internal error. Failed to copy %(name)s and %(amount)s other item(s)."
@ -577,7 +590,7 @@ msgstr ""
#: static/scripts/app/views/dir.js:1259
msgid "Internal error. Failed to copy %(name)s."
msgstr ""
msgstr "Внутрішня помилка. Не вдалося скопіювати %(name)s."
#: static/scripts/app/views/dir.js:1301
msgid "Moving file %(index)s of %(total)s"
@ -610,21 +623,21 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr ""
msgstr "Успішно видалено %(name)s"
#: static/scripts/app/views/fileupload.js:10
msgid "File is too big"
msgstr ""
msgstr "Файл занадто великий"
#: static/scripts/app/views/fileupload.js:11
msgid "File is too small"
msgstr ""
msgstr "Файл занадто малий"
#: static/scripts/app/views/fileupload.js:12
msgid "Filetype not allowed"
msgstr ""
msgstr "Заборонений тип файлів"
#: static/scripts/app/views/fileupload.js:13
msgid "Maximum number of files exceeded"
@ -632,11 +645,11 @@ msgstr ""
#: static/scripts/app/views/fileupload.js:14
msgid "Uploaded bytes exceed file size"
msgstr ""
msgstr "Перевищення ліміту розміру файлу"
#: static/scripts/app/views/fileupload.js:15
msgid "Empty file upload result"
msgstr ""
msgstr "Результат завантаження порожнього файлу"
#: static/scripts/app/views/fileupload.js:17
#: static/scripts/app/views/fileupload.js:225
@ -646,7 +659,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/address-book-group-item.js:152
#: static/scripts/sysadmin-app/views/system-repo.js:52
msgid "Error"
msgstr ""
msgstr "Помилка"
#: static/scripts/app/views/fileupload.js:18
msgid "uploaded"
@ -658,7 +671,7 @@ msgstr "скасовано"
#: static/scripts/app/views/fileupload.js:20
msgid "Start"
msgstr ""
msgstr "Позначити"
#: static/scripts/app/views/fileupload.js:46
msgid "File Uploading..."
@ -706,7 +719,7 @@ msgstr ""
#: static/scripts/common.js:444
#: static/scripts/sysadmin-app/views/dashboard.js:84
msgid "Failed. Please check the network."
msgstr ""
msgstr "Не вдалося. Будь ласка, перевірте мережеве з'єднання."
#: static/scripts/app/views/folder-share-item.js:186
msgid "Delete failed"
@ -733,7 +746,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:108
#: static/scripts/sysadmin-app/views/repos.js:59
msgid "You cannot select any more choices"
msgstr ""
msgstr "Ви не можете обрати більше варіантів"
#: static/scripts/app/views/group-settings.js:178
msgid ""
@ -743,7 +756,7 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:238
msgid "Please choose a CSV file"
msgstr ""
msgstr "Будь ласка, виберіть CSV файл"
#: static/scripts/app/views/group-settings.js:269
msgid "Successfully imported."
@ -751,19 +764,19 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "Виключити групу"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "Ви дійсно хочете видалити цю групу?"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "Вийти з групи"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
msgstr ""
msgstr "Ви впевнені що хочете вийти з групи?"
#: static/scripts/app/views/invitation.js:37
#: static/scripts/sysadmin-app/views/address-book-group-item.js:57
@ -798,7 +811,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:65
#: static/scripts/sysadmin-app/views/trash-repo.js:28
msgid "Delete Library"
msgstr ""
msgstr "Видалити бібліотеку"
#: static/scripts/app/views/repo.js:96
#: static/scripts/sysadmin-app/views/address-book-group-item.js:47
@ -809,7 +822,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Ви впевнені, що хочете видалити %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
@ -866,7 +879,7 @@ msgstr ""
#: static/scripts/app/views/share.js:365
msgid "Please enter valid days"
msgstr ""
msgstr "Будь ласка, введіть кількість дійсних днів"
#: static/scripts/app/views/share.js:468
msgid "Share link is copied to the clipboard."
@ -874,7 +887,7 @@ msgstr ""
#: static/scripts/app/views/share.js:485
msgid "Please input at least an email."
msgstr ""
msgstr "Будь ласка, введіть принаймні, email."
#: static/scripts/app/views/share.js:502
msgid "Successfully sent to {placeholder}"
@ -945,7 +958,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "Потрібене старе ім'я"
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -965,7 +978,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "Перенос бібліотеки"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -990,7 +1003,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:82
#: static/scripts/sysadmin-app/views/group.js:30
msgid "Delete Group"
msgstr ""
msgstr "Видалити групу"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:83
msgid "Deleted group {group_name}"
@ -1006,7 +1019,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "Видалити користувача"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"
@ -1018,7 +1031,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "Видалити учасника"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1026,12 +1039,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-repo.js:28
msgid "Unshare Library"
msgstr ""
msgstr "Скасувати спільний доступ до бібліотеки"
#: static/scripts/sysadmin-app/views/group-repo.js:29
#, javascript-format
msgid "Are you sure you want to unshare %s ?"
msgstr ""
msgstr "Ви впевнені, що хочете заборонити доступ %s ?"
#: static/scripts/sysadmin-app/views/group-repo.js:42
msgid "Successfully unshared library {placeholder}"
@ -1061,7 +1074,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "Відновити бібліотеку"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format

File diff suppressed because it is too large Load Diff

View File

@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Vietnamese (http://www.transifex.com/haiwen/seahub/language/vi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -17,69 +17,62 @@ msgstr ""
"Language: vi\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "System Admin"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "Đã dùng"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "Cài đặt"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "Đăng xuất"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr ""
msgstr "Tập tin mới"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "Thư mục mới"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
msgid "New Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "Tên"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "Cập nhật"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "Hủy"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -97,32 +90,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr ""
msgstr "Đổi tên file"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "Đổi tên"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "Tìm trong Wiki"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "Dung lượng"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "Cập nhật"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "Chỉnh sửa trang"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "Trang"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -208,7 +221,7 @@ msgstr "Yêu cầu tên"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -237,12 +250,12 @@ msgstr ""
#: static/scripts/app/models/share-admin-folder.js:25
#: static/scripts/app/models/share-admin-repo.js:22
msgid "Read-Write"
msgstr ""
msgstr "Xem - Điều chỉnh"
#: static/scripts/app/models/share-admin-folder.js:27
#: static/scripts/app/models/share-admin-repo.js:24
msgid "Read-Only"
msgstr ""
msgstr "Chỉ xem"
#: static/scripts/app/views/activity-item.js:25
msgid "Removed all items from trash."
@ -339,15 +352,15 @@ msgstr "Đường dẫn không hợp lệ"
#: static/scripts/app/views/dialogs/dirent-mvcp.js:207
#: static/scripts/app/views/dirent.js:296
msgid "Successfully moved %(name)s"
msgstr ""
msgstr "Chuyển %(name)s thành công "
#: static/scripts/app/views/dialogs/dirent-mvcp.js:210
msgid "Successfully copied %(name)s"
msgstr ""
msgstr "Sao chép %(name)s thành công"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -371,7 +384,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:50
msgid "Please enter the old password"
msgstr ""
msgstr "Vui lòng nhập mật khẩu cũ"
#: static/scripts/app/views/dialogs/repo-change-password.js:54
msgid "Please enter a new password"
@ -379,15 +392,15 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-change-password.js:58
msgid "New password is too short"
msgstr ""
msgstr "Mật khẩu mới quá ngắn"
#: static/scripts/app/views/dialogs/repo-change-password.js:62
msgid "Please enter the new password again"
msgstr ""
msgstr "Vui lòng nhập mật khẩu mới lần nữa"
#: static/scripts/app/views/dialogs/repo-change-password.js:66
msgid "New passwords don't match"
msgstr ""
msgstr "Mật khẩu mới không trùng khớp"
#: static/scripts/app/views/dialogs/repo-change-password.js:87
msgid "Successfully changed library password."
@ -417,7 +430,7 @@ msgstr ""
#: static/scripts/app/views/dialogs/repo-folder-perm-admin.js:222
msgid "Please click and choose a directory."
msgstr ""
msgstr "Vui lòng click và chọn thư mục"
#: static/scripts/app/views/dialogs/repo-history-settings.js:36
msgid "{placeholder} History Setting"
@ -610,7 +623,7 @@ msgid "locked by {placeholder}"
msgstr ""
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "Xóa %(name)s thành công"
@ -733,7 +746,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:108
#: static/scripts/sysadmin-app/views/repos.js:59
msgid "You cannot select any more choices"
msgstr ""
msgstr "Bạn không thể chọn thêm"
#: static/scripts/app/views/group-settings.js:178
msgid ""
@ -751,19 +764,19 @@ msgstr ""
#: static/scripts/app/views/group-settings.js:292
msgid "Dismiss Group"
msgstr ""
msgstr "Giải tán Group"
#: static/scripts/app/views/group-settings.js:293
msgid "Really want to dismiss this group?"
msgstr ""
msgstr "Bạn có thực sự muốn giải tán Group này?"
#: static/scripts/app/views/group-settings.js:321
msgid "Quit Group"
msgstr ""
msgstr "Thoát khỏi Group"
#: static/scripts/app/views/group-settings.js:322
msgid "Are you sure you want to quit this group?"
msgstr ""
msgstr "Bạn có muốn thoát khỏi Group?"
#: static/scripts/app/views/invitation.js:37
#: static/scripts/sysadmin-app/views/address-book-group-item.js:57
@ -798,7 +811,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:65
#: static/scripts/sysadmin-app/views/trash-repo.js:28
msgid "Delete Library"
msgstr ""
msgstr "Xóa thư vei65n"
#: static/scripts/app/views/repo.js:96
#: static/scripts/sysadmin-app/views/address-book-group-item.js:47
@ -809,12 +822,12 @@ msgstr ""
#: static/scripts/sysadmin-app/views/repo.js:66
#, javascript-format
msgid "Are you sure you want to delete %s ?"
msgstr ""
msgstr "Bạn chắc chắn muốn xóa %s ?"
#: static/scripts/app/views/repo.js:106
#: static/scripts/sysadmin-app/views/repo.js:79
msgid "Successfully deleted."
msgstr ""
msgstr "Xóa thành công."
#: static/scripts/app/views/repo.js:237
#: static/scripts/sysadmin-app/views/repo.js:97
@ -945,7 +958,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/groups.js:79
#: static/scripts/sysadmin-app/views/repos.js:69
msgid "Name is required."
msgstr ""
msgstr "Yêu cầu tên."
#: static/scripts/sysadmin-app/views/address-book.js:49
msgid "New Department"
@ -965,7 +978,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:57
msgid "Transfer Library"
msgstr ""
msgstr "Chuyển thư viện"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:58
msgid "Transferred library {library_name} from {user_from} to {user_to}"
@ -990,7 +1003,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:82
#: static/scripts/sysadmin-app/views/group.js:30
msgid "Delete Group"
msgstr ""
msgstr "Xóa nhóm"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:83
msgid "Deleted group {group_name}"
@ -1006,7 +1019,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/admin-operation-log.js:94
msgid "Delete User"
msgstr ""
msgstr "Xóa người dùng"
#: static/scripts/sysadmin-app/views/admin-operation-log.js:95
msgid "Deleted user {user}"
@ -1018,7 +1031,7 @@ msgstr ""
#: static/scripts/sysadmin-app/views/group-member.js:90
msgid "Delete Member"
msgstr ""
msgstr "Xóa thành viên"
#: static/scripts/sysadmin-app/views/group-member.js:100
msgid "Successfully deleted member {placeholder}"
@ -1047,31 +1060,31 @@ msgstr ""
#: static/scripts/sysadmin-app/views/search-trash-repos.js:46
msgid "Delete Library By Owner"
msgstr ""
msgstr "Thư viện xóa bởi người tạo"
#: static/scripts/sysadmin-app/views/search-trash-repos.js:47
#, javascript-format
msgid "Are you sure you want to delete all %s's libraries?"
msgstr ""
msgstr "Bạn có chắc muốn xóa tất cả %s's thư viện?"
#: static/scripts/sysadmin-app/views/trash-repo.js:29
#, javascript-format
msgid "Are you sure you want to delete %s completely?"
msgstr ""
msgstr "Bạn có chắc muốn xóa %s hoàn toàn?"
#: static/scripts/sysadmin-app/views/trash-repo.js:58
msgid "Restore Library"
msgstr ""
msgstr "Khôi phục thư viện"
#: static/scripts/sysadmin-app/views/trash-repo.js:59
#, javascript-format
msgid "Are you sure you want to restore %s?"
msgstr ""
msgstr "Bạn có chắc muốn khôi phục %s?"
#: static/scripts/sysadmin-app/views/trash-repos.js:49
msgid "Clear Trash"
msgstr ""
msgstr "Làm sạch thùng rác"
#: static/scripts/sysadmin-app/views/trash-repos.js:50
msgid "Are you sure you want to clear trash?"
msgstr ""
msgstr "Bạn có chắc muốn làm sạch thùng rác?"

File diff suppressed because it is too large Load Diff

View File

@ -5,8 +5,8 @@
# Translators:
# zMingGit <517046497@qq.com>, 2018
# Alfred <alfredhuang211@qq.com>, 2015
# Chen <helloworld.c@outlook.com>, 2018
# Chen <helloworld.c@outlook.com>, 2018
# C_Q <helloworld.c@outlook.com>, 2018
# C_Q <helloworld.c@outlook.com>, 2018
# Daniel Pan <daniel.pan@seafile.com>, 2016
# imwhatiam <imwhatiam123@gmail.com>, 2015-2018
# llj <lingjun.li1@gmail.com>, 2017-2018
@ -16,9 +16,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 07:27+0000\n"
"Last-Translator: llj <lingjun.li1@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:46+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/haiwen/seahub/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -26,18 +26,6 @@ msgstr ""
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr "编辑页面"
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr "维基"
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr "页面"
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr "系统管理"
@ -54,41 +42,46 @@ msgstr "设置"
msgid "Log out"
msgstr "退出"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr "最近修改"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "新建文件"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr "新建文件夹"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr "名称"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr "新名称"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr "提交"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "取消"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -106,33 +99,53 @@ msgstr "是"
msgid "NO"
msgstr "不"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "重命名文件"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "重命名目录"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr "输入新的文件名:"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr "输入新的文件夹名:"
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "重命名"
#: frontend/src/components/search.js:198
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "在当前维基搜索文件"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "大小"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "更新时间"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "编辑页面"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr "维基"
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "页面"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
msgstr "仅云端读写资料库"
@ -217,7 +230,7 @@ msgstr "名称为必填项"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -356,7 +369,7 @@ msgstr "成功拷贝 %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -619,7 +632,7 @@ msgid "locked by {placeholder}"
msgstr "被 {placeholder} 锁定"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "删除 %(name)s 成功"

File diff suppressed because it is too large Load Diff

View File

@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: seahub\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-04 15:05+0800\n"
"PO-Revision-Date: 2018-09-04 06:58+0000\n"
"Last-Translator: zheng xie <xiez1989@gmail.com>\n"
"POT-Creation-Date: 2018-09-07 10:41+0800\n"
"PO-Revision-Date: 2018-09-07 02:45+0000\n"
"Last-Translator: C_Q <helloworld.c@outlook.com>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/haiwen/seahub/language/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -19,69 +19,62 @@ msgstr ""
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: frontend/src/components/MainPanel.js:36
msgid "Edit Page"
msgstr ""
#: frontend/src/components/MainPanel.js:46
msgid "Wikis"
msgstr ""
#: frontend/src/components/SidePanel.js:291
msgid "Pages"
msgstr ""
#: frontend/src/components/account.js:91
msgid "System Admin"
msgstr ""
msgstr "系統管理"
#: frontend/src/components/account.js:127
msgid "Used"
msgstr ""
msgstr "我使用的"
#: frontend/src/components/account.js:133
msgid "Settings"
msgstr ""
msgstr "設定"
#: frontend/src/components/account.js:135
msgid "Log out"
msgstr "退出"
#: frontend/src/components/markdown-viewer.js:186
msgid "Last modified by"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:106
#: frontend/src/components/menu-component/node-menu.js:114
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:29
#: frontend/src/components/menu-component/node-menu.js:37
#: static/scripts/app/views/dir.js:771
msgid "New File"
msgstr "新建文件"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/menu-component/node-menu.js:105
#: frontend/src/components/menu-component/node-menu.js:113
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:74
#: frontend/src/components/menu-component/node-menu.js:28
#: frontend/src/components/menu-component/node-menu.js:36
msgid "New Folder"
msgstr ""
msgstr "新建資料夾"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:82
#: frontend/src/components/tree-dir-view/tree-dir-view.js:16
msgid "Name"
msgstr ""
msgstr "名稱"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:92
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:84
msgid "newName"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:98
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:90
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:70
msgid "Submit"
msgstr ""
msgstr "提交"
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:99
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:72
#: frontend/src/components/menu-component/menu-dialog/create-fileforder-dialog.js:91
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:71
#: static/scripts/app/views/fileupload.js:21
msgid "Cancel"
msgstr "取消"
#: frontend/src/components/menu-component/menu-dialog/delete-dialog.js:16
#: frontend/src/components/menu-component/node-menu.js:116
#: frontend/src/components/menu-component/node-menu.js:124
#: frontend/src/components/menu-component/node-menu.js:39
#: frontend/src/components/menu-component/node-menu.js:47
#: static/scripts/app/views/fileupload.js:22
#: static/scripts/sysadmin-app/views/device-trusted-ipaddress.js:27
msgid "Delete"
@ -99,32 +92,52 @@ msgstr ""
msgid "NO"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename File"
msgstr "重新命名文件"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:65
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:64
#: static/scripts/app/views/dialogs/dirent-rename.js:39
msgid "Rename Folder"
msgstr "重新命名目錄"
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new file name:"
msgstr ""
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:67
#: frontend/src/components/menu-component/menu-dialog/rename-dialog.js:66
msgid "Enter the new folder name:"
msgstr ""
#: frontend/src/components/menu-component/node-menu.js:115
#: frontend/src/components/menu-component/node-menu.js:123
#: frontend/src/components/menu-component/node-menu.js:38
#: frontend/src/components/menu-component/node-menu.js:46
msgid "Rename"
msgstr "重命名"
#: frontend/src/components/search.js:199
msgid "Search files in this wiki"
msgstr "在當前維基搜尋檔案"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:17
msgid "Size"
msgstr "大小"
#: frontend/src/components/tree-dir-view/tree-dir-view.js:18
msgid "Last Update"
msgstr "更新時間"
#: frontend/src/pages/wiki/main-panel.js:50
msgid "Edit Page"
msgstr "編輯頁面"
#: frontend/src/pages/wiki/main-panel.js:60
msgid "Wikis"
msgstr ""
#: frontend/src/components/search.js:198
msgid "Search files in this wiki"
msgstr ""
#: frontend/src/pages/wiki/side-panel.js:176
msgid "Pages"
msgstr "頁面"
#: seahub/templates/priv/ali.js:8
msgid "Preview-Edit-on-Cloud library"
@ -210,7 +223,7 @@ msgstr "名稱為必填項"
#: static/scripts/app/models/repo.js:37
#: static/scripts/app/views/dialogs/dirent-rename.js:65
#: static/scripts/app/views/dir.js:667 static/scripts/app/views/dir.js:727
#: static/scripts/app/views/dirent.js:514
#: static/scripts/app/views/dirent.js:515
#: static/scripts/app/views/group-repo.js:131
#: static/scripts/app/views/repo.js:187
msgid "Name should not include '/'."
@ -349,7 +362,7 @@ msgstr "成功複製 %(name)s"
#: static/scripts/app/views/dialogs/dirent-rename.js:59
#: static/scripts/app/views/dir.js:662 static/scripts/app/views/dir.js:722
#: static/scripts/app/views/dirent.js:508
#: static/scripts/app/views/dirent.js:509
#: static/scripts/app/views/group-repo.js:125
#: static/scripts/app/views/groups.js:118
#: static/scripts/app/views/invitations.js:65
@ -612,7 +625,7 @@ msgid "locked by {placeholder}"
msgstr "被 {placeholder} 鎖定"
#: static/scripts/app/views/dirent-grid.js:187
#: static/scripts/app/views/dirent.js:415
#: static/scripts/app/views/dirent.js:416
msgid "Successfully deleted %(name)s"
msgstr "刪除 %(name)s 成功"

View File

@ -4346,6 +4346,18 @@ img.thumbnail {
max-width:215px;
}
/* dir view */
#basic-upload { /* for IE 9 */
position: relative;
}
.basic-upload-input { /* for IE 9 */
position: absolute;
top: 0;
right: 0;
margin: 0;
height: 100%;
opacity: 0;
cursor: pointer;
}
#dir-view-path {
display:flex;
justify-content:space-between;

View File

@ -277,23 +277,20 @@ class ShareLinks(APIView):
return api_error(status.HTTP_403_FORBIDDEN, error_msg)
username = request.user.username
org_id = request.user.org.org_id if is_org_context(request) else None
if s_type == 'f':
fs = FileShare.objects.get_file_link_by_path(username, repo_id, path)
if not fs:
fs = FileShare.objects.create_file_link(username, repo_id, path,
password, expire_date,
permission=perm)
permission=perm, org_id=org_id)
elif s_type == 'd':
fs = FileShare.objects.get_dir_link_by_path(username, repo_id, path)
if not fs:
fs = FileShare.objects.create_dir_link(username, repo_id, path,
password, expire_date,
permission=perm)
if is_org_context(request):
org_id = request.user.org.org_id
OrgFileShare.objects.set_org_file_share(org_id, fs)
permission=perm, org_id=org_id)
link_info = get_share_link_info(fs)
return Response(link_info)

View File

@ -32,7 +32,7 @@ from django.utils.translation import ugettext as _
from .throttling import ScopedRateThrottle, AnonRateThrottle, UserRateThrottle
from .authentication import TokenAuthentication
from .serializers import AuthTokenSerializer
from .utils import get_diff_details, \
from .utils import get_diff_details, to_python_boolean, \
api_error, get_file_size, prepare_starred_files, \
get_groups, api_group_check, get_timestamp, json_response, is_seafile_pro
@ -1634,10 +1634,13 @@ class UploadLinkView(APIView):
if not token:
error_msg = 'Internal Server Error'
return api_error(status.HTTP_500_INTERNAL_SERVER_ERROR, error_msg)
req_from = request.GET.get('from', 'api')
if req_from == 'api':
url = gen_file_upload_url(token, 'upload-api')
try:
replace = to_python_boolean(request.GET.get('replace', '0'))
except ValueError:
replace = False
url = gen_file_upload_url(token, 'upload-api', replace)
elif req_from == 'web':
url = gen_file_upload_url(token, 'upload-aj')
else:

View File

@ -6,3 +6,6 @@ ONLYOFFICE_APIJS_URL = getattr(settings, 'ONLYOFFICE_APIJS_URL', '')
ONLYOFFICE_FILE_EXTENSION = getattr(settings, 'ONLYOFFICE_FILE_EXTENSION', ())
ONLYOFFICE_EDIT_FILE_EXTENSION = getattr(settings, 'ONLYOFFICE_EDIT_FILE_EXTENSION', ())
VERIFY_ONLYOFFICE_CERTIFICATE = getattr(settings, 'VERIFY_ONLYOFFICE_CERTIFICATE', True)
# if True, file will be saved when user click save btn on file editing page
ONLYOFFICE_FORCE_SAVE = getattr(settings, 'ONLYOFFICE_FORCE_SAVE', True)

View File

@ -14,7 +14,8 @@ from seahub.utils import get_file_type_and_ext, gen_file_get_url, \
get_site_scheme_and_netloc
from seahub.settings import ENABLE_WATERMARK
from seahub.onlyoffice.settings import ONLYOFFICE_APIJS_URL
from seahub.onlyoffice.settings import ONLYOFFICE_APIJS_URL, \
ONLYOFFICE_FORCE_SAVE
def get_onlyoffice_dict(username, repo_id, file_path,
file_id='', can_edit=False, can_download=True):
@ -71,6 +72,7 @@ def get_onlyoffice_dict(username, repo_id, file_path,
'can_edit': can_edit,
'can_download': can_download,
'username': username,
'onlyoffice_force_save': ONLYOFFICE_FORCE_SAVE,
'enable_watermark': ENABLE_WATERMARK and not can_edit,
}

View File

@ -266,6 +266,9 @@ AUTHENTICATION_BACKENDS = (
ENABLE_OAUTH = False
ENABLE_WATERMARK = False
# allow user to clean library trash
ENABLE_USER_CLEAN_TRASH = True
LOGIN_REDIRECT_URL = '/profile/'
LOGIN_URL = '/accounts/login/'
LOGOUT_URL = '/accounts/logout/'
@ -821,4 +824,5 @@ CONSTANCE_CONFIG = {
'CUSTOM_CSS': ('', ''),
'ENABLE_TERMS_AND_CONDITIONS': (ENABLE_TERMS_AND_CONDITIONS, ''),
'ENABLE_USER_CLEAN_TRASH': (ENABLE_USER_CLEAN_TRASH, ''),
}

View File

@ -14,6 +14,7 @@ from seahub.base.fields import LowerCaseCharField
from seahub.utils import normalize_file_path, normalize_dir_path, gen_token,\
get_service_url
from seahub.constants import PERMISSION_READ, PERMISSION_ADMIN
from seahub.utils import is_valid_org_id
# Get an instance of a logger
logger = logging.getLogger(__name__)
@ -84,7 +85,8 @@ def check_share_link_common(request, sharelink, is_upload_link=False):
class FileShareManager(models.Manager):
def _add_file_share(self, username, repo_id, path, s_type,
password=None, expire_date=None, permission='view_download'):
password=None, expire_date=None,
permission='view_download', org_id=None):
if password is not None:
password_enc = make_password(password)
else:
@ -96,6 +98,10 @@ class FileShareManager(models.Manager):
s_type=s_type, password=password_enc, expire_date=expire_date,
permission=permission)
fs.save()
if is_valid_org_id(org_id):
OrgFileShare.objects.set_org_file_share(org_id, fs)
return fs
def _get_file_share_by_path(self, username, repo_id, path):
@ -124,12 +130,13 @@ class FileShareManager(models.Manager):
########## public methods ##########
def create_file_link(self, username, repo_id, path, password=None,
expire_date=None, permission='view_download'):
expire_date=None, permission='view_download',
org_id=None):
"""Create download link for file.
"""
path = normalize_file_path(path)
return self._add_file_share(username, repo_id, path, 'f', password,
expire_date, permission)
expire_date, permission, org_id)
def get_file_link_by_path(self, username, repo_id, path):
path = normalize_file_path(path)
@ -139,12 +146,13 @@ class FileShareManager(models.Manager):
return self._get_valid_file_share_by_token(token)
def create_dir_link(self, username, repo_id, path, password=None,
expire_date=None, permission='view_download'):
expire_date=None, permission='view_download',
org_id=None):
"""Create download link for directory.
"""
path = normalize_dir_path(path)
return self._add_file_share(username, repo_id, path, 'd', password,
expire_date, permission)
expire_date, permission, org_id)
def get_dir_link_by_path(self, username, repo_id, path):
path = normalize_dir_path(path)

View File

@ -144,7 +144,7 @@ var app = {
<script type="text/javascript" src="{% static "scripts/lib/jquery.simplemodal.js" %}"></script>
<script type="text/javascript" src="{% static "scripts/lib/jstree.min.js" %}"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}js/jq.min.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}js/base.js"></script>
<script type="text/javascript" src="{{ MEDIA_URL }}js/base.js?t=1536127546642"></script>
<script type="text/javascript">
function prepareAjaxErrorMsg(xhr) {
var error_msg;

View File

@ -29,6 +29,8 @@
logoHeight: '{{ logo_height }}',
siteTitle: '{{ site_title }}',
siteRoot: '{{ SITE_ROOT }}',
isPro: '{{ is_pro }}',
lang: '{{ LANGUAGE_CODE }}'
}
};
</script>

View File

@ -20,14 +20,7 @@
<script type="text/template" id="group-member-item-tmpl">
<td><img src="<%= avatar_url %>" alt="" width="20" class="avatar" /></td>
<td><%- name %></td>
<td>
<% if (app.pageOptions.org_id) { %>
<a href="{{ SITE_ROOT }}org/useradmin/info/<% print(encodeURIComponent(email)); %>/"><%- email %></a>
<% } else { %>
<a href="{{ SITE_ROOT }}useradmin/info/<% print(encodeURIComponent(email)); %>/"><%- email %></a>
<% } %>
</td>
<td><a href="<%= user_info_url %>"><%- name %></a></td>
<td>
<% if (role == 'Owner') { %>
<span class="cur-role">{% trans "Owner" %}</span>
@ -123,9 +116,8 @@
<thead>
<tr>
<th width="5%"></th>
<th width="25%">{% trans "Name" %}</th>
<th width="35%">{% trans "Email" %}</th>
<th width="25%">{% trans "Role" %}</th>
<th width="50%">{% trans "Name" %}</th>
<th width="35%">{% trans "Role" %}</th>
<th width="10%"><!--Operations--></th>
</tr>
</thead>

View File

@ -5,7 +5,7 @@
<h3 class="hd">{% trans "Admin" %}</h3>
<ul class="side-tabnav-tabs">
<li class="tab">
<a href="{% url 'org_manage' %}"><span class="sf2-icon-organization"></span>{% trans "Info" %}</a>
<a href="{% url 'org_manage' %}"><span class="sf2-icon-info"></span>{% trans "Info" %}</a>
</li>
<li class="tab">
<a href="{% url 'org_repo_admin' %}"><span class="sf2-icon-library"></span>{% trans "Libraries" %}</a>

View File

@ -905,9 +905,8 @@
<thead>
<tr>
<th width="5%"></th>
<th width="25%">{% trans "Name" %}</th>
<th width="35%">{% trans "Email" %}</th>
<th width="25%">{% trans "Role" %}</th>
<th width="50%">{% trans "Name" %}</th>
<th width="35%">{% trans "Role" %}</th>
<th width="10%"><!--Operations--></th>
</tr>
</thead>

View File

@ -445,7 +445,10 @@
<div id="basic-upload" class="inline-block">
<button class="basic-upload-btn btn-white hidden-sm-down">{% trans "Upload" %}</button>
<span class="basic-upload-btn sf2-icon-upload mobile-icon hidden-md-up" aria-label="{% trans "Upload" %}"></span>
<input id="basic-upload-input" class="hide" type="file" name="file" multiple />
<!--[if lt IE 10]>
<input class="basic-upload-input" type="file" name="file" multiple />
<![endif]-->
<input class="basic-upload-input hide" type="file" name="file" multiple />
</div>
<% if (app.pageOptions.enable_upload_folder) { %>
<div id="advanced-upload" class="sf-dropdown sf-dropdown-inline">
@ -1619,11 +1622,6 @@
<% } %>
</script>
<script type="text/template" id="group-toolbar2-tmpl">
<% if (app.pageOptions.enable_wiki) { %>
<% if (wiki_enabled) { %>
<a href="{{SITE_ROOT}}group/<%= id %>/wiki/" class="sf2-icon-wiki2 op-icon group-top-op-icon" title="{% trans "Wiki" %}" id="group-wiki-icon"></a>
<% } %>
<% } %>
<a href="#" class="sf2-icon-cog1 op-icon group-top-op-icon" title="{% trans "Settings" %}" id="group-settings-icon" aria-label="{% trans "Settings" %}"></a>
<a href="#" class="sf2-icon-user2 op-icon group-top-op-icon" title="{% trans "Members" %}" id="group-members-icon" aria-label="{% trans "Members" %}"></a>
<% if (app.pageOptions.enable_group_discussion) { %>
@ -2089,13 +2087,6 @@
<ul class="group-setting-list">
<li><a href="#" class="group-setting-item sf-popover-item" data-op="rename">{% trans "Rename" %}</a></li>
<li><a href="#" class="group-setting-item sf-popover-item" data-op="transfer">{% trans "Transfer" %}</a></li>
<% if (app.pageOptions.enable_wiki) { %>
<% if (!wiki_enabled) { %>
<li><a href="#" class="group-setting-item sf-popover-item" data-op="add-wiki">{% trans "Add Wiki" %}</a></li>
<% } else { %>
<li><a href="#" class="group-setting-item sf-popover-item" data-op="remove-wiki">{% trans "Remove Wiki" %}</a></li>
<% } %>
<% } %>
</ul>
<ul class="group-setting-list">
<li><a href="#" class="group-setting-item sf-popover-item" data-op="import-members">{% trans "Import Members" %}</a></li>
@ -2107,13 +2098,6 @@
<% } else if (is_admin) { %>
<ul class="group-setting-list">
<li><a href="#" class="group-setting-item sf-popover-item" data-op="rename">{% trans "Rename" %}</a></li>
<% if (app.pageOptions.enable_wiki) { %>
<% if (!wiki_enabled) { %>
<li><a href="#" class="group-setting-item sf-popover-item" data-op="add-wiki">{% trans "Add Wiki" %}</a></li>
<% } else { %>
<li><a href="#" class="group-setting-item sf-popover-item" data-op="remove-wiki">{% trans "Remove Wiki" %}</a></li>
<% } %>
<% } %>
</ul>
<ul class="last-group-setting-list">
<li><a href="#" class="group-setting-item sf-popover-item" data-op="import-members">{% trans "Import Members" %}</a></li>

View File

@ -2,7 +2,7 @@
watermark.load({
{% if request.user.username %}
watermark_txt: "{{request.user.username|email2nickname|escapejs}}",
watermark_txt: "{{site_name}} {{request.user.username|email2nickname|escapejs}}",
{% else %}
watermark_txt: "{% trans "Anonymous User" %}",
{% endif %}

View File

@ -165,6 +165,11 @@
{% include "snippets/web_settings_form.html" %}
{% endwith %}
{% with type="checkbox" setting_display_name="ENABLE_USER_CLEAN_TRASH" setting_name="ENABLE_USER_CLEAN_TRASH" setting_val=config_dict.ENABLE_USER_CLEAN_TRASH %}
{% trans "Allow user to clean library trash" as help_tip %}
{% include "snippets/web_settings_form.html" %}
{% endwith %}
<h4>{% trans "Online Preview" %}</h4>
{% with type="textarea" setting_name="TEXT_PREVIEW_EXT" setting_val=config_dict.TEXT_PREVIEW_EXT %}

Some files were not shown because too many files have changed in this diff Show More