moxbox init
102
apps/transmission/web/tr-web-control/config.js
Normal file
@@ -0,0 +1,102 @@
|
||||
system.config = $.extend(system.config, {
|
||||
// Whether to enable automatic refresh
|
||||
autoReload: true,
|
||||
// Automatic refresh rate (ms)
|
||||
reloadStep: 5000,
|
||||
// The default num of entries for each page
|
||||
pageSize: 30,
|
||||
// Enable/disable pagination for torrentlist.datagrid
|
||||
pagination: true,
|
||||
// Options in torrentlist.datagrid PageList
|
||||
pageList: [10, 20, 30, 40, 50, 100, 150, 200, 250, 300],
|
||||
// The initial interface defaults to the selected node, the name can refer to the language package tree
|
||||
defaultSelectNode: "actively",
|
||||
// Whether the torrent details are automatically expanded
|
||||
autoExpandAttribute: false,
|
||||
// default language
|
||||
defaultLang: "",
|
||||
//show Folders
|
||||
foldersShow: false,
|
||||
// theme
|
||||
theme: "default",
|
||||
// 是否显示BT服务器
|
||||
showBTServers: false
|
||||
});
|
||||
|
||||
// 主题样式
|
||||
system.themes = [{
|
||||
value: 'default',
|
||||
text: 'Default',
|
||||
group: 'Base'
|
||||
},
|
||||
{
|
||||
value: 'gray',
|
||||
text: 'Gray',
|
||||
group: 'Base'
|
||||
},
|
||||
{
|
||||
value: 'metro',
|
||||
text: 'Metro',
|
||||
group: 'Base'
|
||||
},
|
||||
{
|
||||
value: 'material',
|
||||
text: 'Material',
|
||||
group: 'Base'
|
||||
},
|
||||
{
|
||||
value: 'bootstrap',
|
||||
text: 'Bootstrap',
|
||||
group: 'Base'
|
||||
},
|
||||
{
|
||||
value: 'black;logo-white.png',
|
||||
text: 'Black',
|
||||
group: 'Base'
|
||||
},
|
||||
{
|
||||
value: 'metro-blue',
|
||||
text: 'Metro Blue',
|
||||
group: 'Metro'
|
||||
},
|
||||
{
|
||||
value: 'metro-gray',
|
||||
text: 'Metro Gray',
|
||||
group: 'Metro'
|
||||
},
|
||||
{
|
||||
value: 'metro-green',
|
||||
text: 'Metro Green',
|
||||
group: 'Metro'
|
||||
},
|
||||
{
|
||||
value: 'metro-orange',
|
||||
text: 'Metro Orange',
|
||||
group: 'Metro'
|
||||
},
|
||||
{
|
||||
value: 'metro-red',
|
||||
text: 'Metro Red',
|
||||
group: 'Metro'
|
||||
},
|
||||
{
|
||||
value: 'ui-cupertino',
|
||||
text: 'Cupertino',
|
||||
group: 'UI'
|
||||
},
|
||||
{
|
||||
value: 'ui-dark-hive;logo-white.png',
|
||||
text: 'Dark Hive',
|
||||
group: 'UI'
|
||||
},
|
||||
{
|
||||
value: 'ui-pepper-grinder',
|
||||
text: 'Pepper Grinder',
|
||||
group: 'UI'
|
||||
},
|
||||
{
|
||||
value: 'ui-sunny',
|
||||
text: 'Sunny',
|
||||
group: 'UI'
|
||||
}
|
||||
]
|
||||
17
apps/transmission/web/tr-web-control/i18n.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"zh-CN": "简体中文|Chinese(Simplified)",
|
||||
"zh-TW": "正體中文|Chinese(Traditional)",
|
||||
"en": "English",
|
||||
"uk": "Українська (Ukrainian)",
|
||||
"ru": "Русский (Russian)",
|
||||
"es": "Español (Spanish)",
|
||||
"pl": "Polski (Polish)",
|
||||
"hu": "Magyar (Hungarian)",
|
||||
"ro": "Română (Romanian)",
|
||||
"it": "Italiano (Italian)",
|
||||
"pt-BR": "Brazilian Portuguese",
|
||||
"nl": "Dutch",
|
||||
"fr": "Français (French)",
|
||||
"ko": "한국어 (Korean)",
|
||||
"pt-PT": "European Portuguese"
|
||||
}
|
||||
449
apps/transmission/web/tr-web-control/i18n/en.json
Normal file
@@ -0,0 +1,449 @@
|
||||
{
|
||||
"name": "en",
|
||||
"author": "ronggang, ASAPHAANING, vodek3, DarkAlexWang, Mark eM",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "Connecting...",
|
||||
"connected": "Connected",
|
||||
"queue": "Queue:",
|
||||
"queuefinish": "The queue(s) has finished.",
|
||||
"notfinal": "Not finalized",
|
||||
"checked": "%n data checked:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Error recieving data!",
|
||||
"data-post-error": "Error posting data!",
|
||||
"rename-error": "Error renaming file/folder!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Download directory"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Start",
|
||||
"pause": "Pause",
|
||||
"recheck": "Recheck",
|
||||
"start-all": "Start all",
|
||||
"pause-all": "Pause all",
|
||||
"remove": "Remove",
|
||||
"remove-all": "Remove all",
|
||||
"remove-data": "Remove data",
|
||||
"add-torrent": "Add Torrent",
|
||||
"attribute": "Attribute",
|
||||
"alt-speed": "Alt-Speed",
|
||||
"system-config": "Config",
|
||||
"system-reload": "Reload",
|
||||
"about": "About",
|
||||
"reload-time": "Auto Reload:",
|
||||
"reload-time-unit": "s/time",
|
||||
"autoreload-disabled": "Disabled",
|
||||
"autoreload-enabled": "Enabled",
|
||||
"search-prompt": "Search Local Torrents",
|
||||
"tracker-replace": "Replace trackers",
|
||||
"queue": "Queue",
|
||||
"ui-mobile": "Mobile UI",
|
||||
"ui-original": "Original UI",
|
||||
"ui-computer": "Desktop UI",
|
||||
"plugin": "Extensions/plugins",
|
||||
"rename": "Rename",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard",
|
||||
"tip": {
|
||||
"start": "Start the checked torrents",
|
||||
"pause": "Pause the checked torrents",
|
||||
"recheck": "Recheck the checked torrents",
|
||||
"recheck-confirm": "Are you sure you want to re-check the selected torrents? This may take some time!",
|
||||
"start-all": "Start all",
|
||||
"pause-all": "Pause all",
|
||||
"remove": "Remove",
|
||||
"delete-all": "Delete-all",
|
||||
"delete-data": "Delete-data",
|
||||
"add-torrent": "Add torrent(s)",
|
||||
"attribute": "Attribute",
|
||||
"alt-speed": "Alt-speed",
|
||||
"system-config": "Config",
|
||||
"system-reload": "Reload",
|
||||
"about": "About this app",
|
||||
"autoreload-disabled": "Click to disable auto reload",
|
||||
"autoreload-enabled": "Click to enable auto reload",
|
||||
"tracker-replace": "Replace trackers",
|
||||
"change-download-dir": "Change download location",
|
||||
"ui-mobile": "Mobile UI",
|
||||
"ui-original": "Original UI",
|
||||
"more-peers": "Ask tracker for more peers",
|
||||
"rename": "Renaming a Torrent's Path",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Move to top",
|
||||
"move-up": "Move up",
|
||||
"move-down": "Move down",
|
||||
"move-bottom": "Move to bottom"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Automatically matches data directory"
|
||||
},
|
||||
"setLabels": "Set User Labels"
|
||||
},
|
||||
"title": {
|
||||
"left": "Navigation",
|
||||
"list": "Torrents",
|
||||
"attribute": "Attribute",
|
||||
"status": "Status"
|
||||
},
|
||||
"tree": {
|
||||
"all": "All",
|
||||
"active": "Active",
|
||||
"paused": "Paused",
|
||||
"downloading": "Downloading",
|
||||
"sending": "Seeding",
|
||||
"error": "Error",
|
||||
"warning": "Warning",
|
||||
"actively": "Active",
|
||||
"check": "Checking",
|
||||
"wait": "Waiting",
|
||||
"search-result": "Search Result",
|
||||
"status": {
|
||||
"loading": "Loading..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Statistics",
|
||||
"cumulative": "Cumulative",
|
||||
"current": "Current",
|
||||
"uploadedBytes": "UploadedBytes:",
|
||||
"downloadedBytes": "DownloadedBytes:",
|
||||
"filesAdded": "FilesAdded:",
|
||||
"sessionCount": "SessionCount:",
|
||||
"secondsActive": "SecondsActive:"
|
||||
},
|
||||
"servers": "Trackers",
|
||||
"folders": "Folders",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Folders"
|
||||
}
|
||||
},
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Download speed:",
|
||||
"uploadspeed": "Seed speed:",
|
||||
"version": "Version:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Download Dir:",
|
||||
"torrent-url": "Torrent URL:",
|
||||
"tip-torrent-url": "Tip: Please add multiple content with an 'Enter' key press to separate",
|
||||
"autostart": "Auto Start:",
|
||||
"tip-autostart": "",
|
||||
"set-default-download-dir": "Set as default directory",
|
||||
"upload-file": "Torrent file(s):",
|
||||
"nosource": "No torrent file or URL.",
|
||||
"tip-title": "Uploading the torrent file takes precedence over the torrent URL"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Server Config",
|
||||
"tabs": {
|
||||
"base": "Base",
|
||||
"network": "Network",
|
||||
"limit": "Limit",
|
||||
"alt-speed": "Alternative speeds",
|
||||
"dictionary-folders": "Folders Dictionary",
|
||||
"more": "More",
|
||||
"labels": "Labels"
|
||||
},
|
||||
"config-dir": "Location of transmission's configuration directory:",
|
||||
"download-dir": "Default path to download torrents:",
|
||||
"download-dir-free-space": "Free space:",
|
||||
"incomplete-dir-enabled": "Use incomplete directory",
|
||||
"cache-size-mb": "Disk cache size:",
|
||||
"rename-partial-files": "Append '.part' to incomplete files",
|
||||
"start-added-torrents": "Auto start added torrents",
|
||||
"download-queue-enabled": "Enabled download queue, max queue number:",
|
||||
"seed-queue-enabled": "Enabled seed queue, max queue number:",
|
||||
"peer-port-random-on-start": "Use random port on start",
|
||||
"port-forwarding-enabled": "Enabled forwarding",
|
||||
"test-port": "Test the port",
|
||||
"port-is-open-true": "The port is open",
|
||||
"port-is-open-false": "The port is closed",
|
||||
"testing": "Testing...",
|
||||
"encryption": "Encryption:",
|
||||
"encryption-type": {
|
||||
"required": "Required",
|
||||
"preferred": "Preferred",
|
||||
"tolerated": "Tolerated"
|
||||
},
|
||||
"utp-enabled": "Enabled µTP (UPnP)",
|
||||
"dht-enabled": "Enabled DHT",
|
||||
"lpd-enabled": "Enabled LPD",
|
||||
"pex-enabled": "Enabled PEX",
|
||||
"peer-limit-global": "Maximum global number of peers:",
|
||||
"peer-limit-per-torrent": "Maximum peers number of torrent:",
|
||||
"speed-limit-down-enabled": "Max global download speed:",
|
||||
"speed-limit-up-enabled": "Max global upload speed:",
|
||||
"alt-speed-enabled": "Enable alternative speeds",
|
||||
"alt-speed-down": "Alternative global download speed:",
|
||||
"alt-speed-up": "Alternative global upload speed:",
|
||||
"alt-speed-time-enabled": "Use schedule",
|
||||
"alt-speed-time": "Time:",
|
||||
"weekday": {
|
||||
"1": "Monday",
|
||||
"2": "Tuesday",
|
||||
"3": "Wednesday",
|
||||
"4": "Thursday",
|
||||
"5": "Friday",
|
||||
"6": "Saturday",
|
||||
"0": "Sunday"
|
||||
},
|
||||
"blocklist-enabled": "Use blocklist",
|
||||
"blocklist-size": "Blocklist has %n rules.",
|
||||
"seedRatioLimited": "The default seed ratio for torrents to use:",
|
||||
"queue-stalled-enabled": "Whether or not to consider idle torrents as stalled:",
|
||||
"idle-seeding-limit-enabled": "Torrents we're seeding will be stopped if they're idle for this long:",
|
||||
"minutes": "Minutes",
|
||||
"nochange": "No change",
|
||||
"saving": "Saving...",
|
||||
"show-bt-servers": "Show 'BT servers' on Trackers:",
|
||||
"restore-default-settings": "Restore UI Default Settings",
|
||||
"language": "Language:",
|
||||
"loading": "Loading...",
|
||||
"hide-subfolders": "When clicking on the data directory, hide subfolders content in the list:",
|
||||
"simple-check-mode": "Checked only one torrent when you right-click on the torrent list:",
|
||||
"nav-contents": "Navigation bar Display content:",
|
||||
"labels-manage": {
|
||||
"name": "Label Name",
|
||||
"description": "Description",
|
||||
"color": "Color",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Do you want to import labels? This overrides the current configuration."
|
||||
},
|
||||
"import-config": "Import configuration from file",
|
||||
"export-config": "Export current configuration",
|
||||
"import-config-confirm": "Do you want to import these configurations? This overrides the current configuration."
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "OK",
|
||||
"button-cancel": "Cancel",
|
||||
"button-reload": "Reload",
|
||||
"button-save": "Save",
|
||||
"button-close": "Close",
|
||||
"button-update": "Update",
|
||||
"button-config": "Config",
|
||||
"button-addnew": "Add",
|
||||
"button-edit": "Edit",
|
||||
"button-delete": "Delete",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Author:culturist<br/>Statement:Most of the icons used in this program from the network, if any violation of your rights, please contact me delete.",
|
||||
"check-update": "Check Update",
|
||||
"home": "Project Home",
|
||||
"help": "Wiki",
|
||||
"donate": "Donate",
|
||||
"pt-plugin": "PT Plugin"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Remove confirm",
|
||||
"confirm-text": "Are you sure you want to remove the checked torrent(s)?",
|
||||
"remove-data": "Delete local data",
|
||||
"remove-error": "Delete failed!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Set new dir",
|
||||
"old-download-dir": "Old dir:",
|
||||
"new-download-dir": "New dir:",
|
||||
"move-data": "If checked, move from previous location. otherwise, search 'New dir' for files.",
|
||||
"set-error": "set error!",
|
||||
"recheck-data": "Recheck data."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Replace Trackers",
|
||||
"old-tracker": "Old tracker:",
|
||||
"new-tracker": "New tracker:",
|
||||
"tip": "This function will find <b>all torrents</b> Tracker.",
|
||||
"not-found": "Tracker is not found."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Automatically matches data directory",
|
||||
"torrent-count": "Torrent count:",
|
||||
"folder-count": "Folder count:",
|
||||
"dictionary": "Folders Dictionary",
|
||||
"time-begin": "Begin time:",
|
||||
"time-now": "Now:",
|
||||
"status": "Status:",
|
||||
"ignore": "Ignore",
|
||||
"working-close-confirm": "Torrents are currently downloading, are sure you want to close Transmission?",
|
||||
"time-interval": "Time interval (seconds):",
|
||||
"work-mode-title": "Mode:",
|
||||
"work-mode": {
|
||||
"1": "Individually matched by torrent",
|
||||
"2": "Individually matched by folder"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Renaming a Torrent's Path",
|
||||
"oldname": "Old",
|
||||
"newname": "New"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Add Trackers",
|
||||
"tip": "One Line, One Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Set User Labels",
|
||||
"available": "Available:",
|
||||
"selected": "Selected:"
|
||||
},
|
||||
"export-config": {
|
||||
"title": "Please select the details need to be exported",
|
||||
"option-all": "All configuration",
|
||||
"option-system": "Web Control configuration",
|
||||
"option-dictionary": "Defined Folders Dictionary",
|
||||
"option-server": "Transmission configuration (Download directory, cache, speed limit, etc.)"
|
||||
},
|
||||
"import-config": {
|
||||
"title": "Please select the details need to be import",
|
||||
"invalid-file": "Invalid profile"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Name",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "Download Dir",
|
||||
"totalSize": "Total size",
|
||||
"status": "Status",
|
||||
"percentDone": "Percent done",
|
||||
"remainingTime": "Remaining time",
|
||||
"addedDate": "Date added",
|
||||
"completeSize": "Complete size",
|
||||
"rateDownload": "Download rate",
|
||||
"rateUpload": "Upload rate",
|
||||
"leecherCount": "Leecher",
|
||||
"seederCount": "Seeder",
|
||||
"uploadedEver": "Uploaded ever",
|
||||
"uploadRatio": "Ratio",
|
||||
"queuePosition": "Queue",
|
||||
"activityDate": "Activity Date",
|
||||
"trackers": "Trackers",
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "Paused",
|
||||
"1": "Wait check",
|
||||
"2": "Checking",
|
||||
"3": "Wait download",
|
||||
"4": "Downloading",
|
||||
"5": "Wait seed",
|
||||
"6": "Seeding"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Base",
|
||||
"servers": "Trackers",
|
||||
"files": "Files",
|
||||
"users": "Peers",
|
||||
"config": "Config"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Name",
|
||||
"length": "Size",
|
||||
"percentDone": "Percent done",
|
||||
"bytesCompleted": "Complete size",
|
||||
"wanted": "Wanted",
|
||||
"priority": "Priority"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Announce",
|
||||
"announceState": "Status",
|
||||
"lastAnnounceResult": "Infos",
|
||||
"lastAnnounceSucceeded": "Succeeded",
|
||||
"lastAnnounceTime": "AnnounceTime",
|
||||
"lastAnnounceTimedOut": "TimedOut",
|
||||
"downloadCount": "Download count",
|
||||
"nextAnnounceTime": "Next announce"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "IP address",
|
||||
"clientName": "Client",
|
||||
"flagStr": "Flag",
|
||||
"progress": "Progress",
|
||||
"rateToClient": "RateToClient",
|
||||
"rateToPeer": "RateToPeer"
|
||||
},
|
||||
"status": {
|
||||
"true": "True",
|
||||
"false": "False"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Normal",
|
||||
"1": "High",
|
||||
"-1": "Low"
|
||||
},
|
||||
"label": {
|
||||
"name": "Name:",
|
||||
"addedDate": "Added date:",
|
||||
"totalSize": "Total size:",
|
||||
"completeSize": "Complete size:",
|
||||
"leftUntilDone": "Left until done:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "Download dir:",
|
||||
"status": "Status:",
|
||||
"rateDownload": "Rate download:",
|
||||
"rateUpload": "Rate upload:",
|
||||
"leecherCount": "Leecher:",
|
||||
"seederCount": "Seeder:",
|
||||
"uploadedEver": "Uploaded ever:",
|
||||
"uploadRatio": "Upload Ratio:",
|
||||
"creator": "Creator:",
|
||||
"dateCreated": "Date created:",
|
||||
"comment": "Comment:",
|
||||
"errorString": "Error string:",
|
||||
"downloadLimited": "Max global download speed:",
|
||||
"uploadLimited": "Max global upload speed:",
|
||||
"peer-limit": "Maximum peers for this torrent:",
|
||||
"seedRatioMode": "Seed ratio for torrents to use:",
|
||||
"seedIdleMode": "Torrents we're seeding will be stopped if they're idle for this long:",
|
||||
"doneDate": "Finish Time:",
|
||||
"seedTime": "Seed Time:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Download checked file(s)",
|
||||
"button-deny": "Skip checked file(s)",
|
||||
"button-priority": "Set priority",
|
||||
"button-tracker-add": "Add New Tracker",
|
||||
"button-tracker-edit": "Edit Tracker",
|
||||
"button-tracker-remove": "Remove Tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Are you sure want to remove this Tracker?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Auto expand attribute"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Unknown",
|
||||
"text-drop-title": "Drag and drop the file in the region to add to the Transmission.",
|
||||
"text-saved": "Saved",
|
||||
"text-nochange": "No change",
|
||||
"text-info": "Infos",
|
||||
"text-confirm": "Are you sure?",
|
||||
"text-browsers-not-support-features": "The current browser does not support this feature!",
|
||||
"text-download-update": "Download this update",
|
||||
"text-have-update": "An update is available",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version",
|
||||
"text-json-file-parsing-failed": "JSON file parsing failed!"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/es.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "es",
|
||||
"author": "Adrián González, malkavi, vodek3",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "Conectando...",
|
||||
"connected": "Conectado",
|
||||
"queue": "Cola:",
|
||||
"queuefinish": "Cola(s) finalizada(s).",
|
||||
"notfinal": "No final",
|
||||
"checked": "%n data checked:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Error de datos.",
|
||||
"data-post-error": "Error enviando datos.",
|
||||
"rename-error": "Error renombrando"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Carpeta descargas"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Iniciar",
|
||||
"pause": "Pausar",
|
||||
"recheck": "Comprobar",
|
||||
"start-all": "Iniciar todos",
|
||||
"pause-all": "Pausar todos",
|
||||
"remove": "Eliminar",
|
||||
"remove-all": "Eliminar todos",
|
||||
"remove-data": "Eliminar datos",
|
||||
"add-torrent": "Añadir torrent",
|
||||
"attribute": "Atributo",
|
||||
"alt-speed": "Velocidad alternativa",
|
||||
"system-config": "Configuración del servidor",
|
||||
"system-reload": "Actualizar",
|
||||
"about": "Acerca",
|
||||
"reload-time": "Actualizar cada:",
|
||||
"reload-time-unit": "segundos",
|
||||
"autoreload-disabled": "Desactivado",
|
||||
"autoreload-enabled": "Activado",
|
||||
"search-prompt": "Búsqueda local",
|
||||
"tracker-replace": "Reemplazar trackers",
|
||||
"queue": "Cola",
|
||||
"ui-mobile": "IU Móvil",
|
||||
"ui-original": "IU Original",
|
||||
"ui-computer": "IU Escritorio",
|
||||
"plugin": "Extensiones/plugins",
|
||||
"rename": "Renombrar",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard",
|
||||
"tip": {
|
||||
"start": "Iniciar torrents seleccionados",
|
||||
"pause": "Pausar torrents seleccionados",
|
||||
"recheck": "Comprobar torrents seleccionados",
|
||||
"recheck-confirm": "¿Seguro que deseas comprobar los torrents seleccionado? ¡Podría tardar bastante tiempo!",
|
||||
"start-all": "Iniciar todos los torrents",
|
||||
"pause-all": "Pausar todos los torrents",
|
||||
"remove": "Eliminar torrents seleccionados",
|
||||
"delete-all": "Eliminar todos",
|
||||
"delete-data": "Eliminar datos",
|
||||
"add-torrent": "Añadir torrent(s)",
|
||||
"attribute": "Atributo",
|
||||
"alt-speed": "Velocidad alternativa",
|
||||
"system-config": "Configuración del servidor",
|
||||
"system-reload": "Recargar",
|
||||
"about": "Acerca de",
|
||||
"autoreload-disabled": "Desactivar actualización automática",
|
||||
"autoreload-enabled": "Activar actualización automática",
|
||||
"tracker-replace": "Reemplazar trackers",
|
||||
"change-download-dir": "Establecer ubicación",
|
||||
"ui-mobile": "IU Móviles",
|
||||
"ui-original": "IU Original",
|
||||
"more-peers": "Solicitar más peers al trackers",
|
||||
"rename": "Renombrando ruta del Torrent",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Mover al inicio",
|
||||
"move-up": "Mover arriba",
|
||||
"move-down": "Mover abajo",
|
||||
"move-bottom": "Move al final"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Elegir automáticamente directorio de datos"
|
||||
},
|
||||
"setLabels": "Set User Labels"
|
||||
},
|
||||
"title": {
|
||||
"left": "Navegación",
|
||||
"list": "Torrents",
|
||||
"attribute": "Parámetros del torrent",
|
||||
"status": "Estado"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Todos",
|
||||
"active": "Activos",
|
||||
"paused": "Pausados",
|
||||
"downloading": "Descargando",
|
||||
"sending": "Subiendo",
|
||||
"error": "Errores",
|
||||
"warning": "Avisos",
|
||||
"actively": "Activos",
|
||||
"check": "Comprobando",
|
||||
"wait": "Esperando",
|
||||
"search-result": "Búsqueda",
|
||||
"status": {
|
||||
"loading": "Cargando..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Estadísticas",
|
||||
"cumulative": "Acumuladas",
|
||||
"current": "Sesión actual",
|
||||
"uploadedBytes": "Subido:",
|
||||
"downloadedBytes": "Descargado:",
|
||||
"filesAdded": "Archivos:",
|
||||
"sessionCount": "Sesiones:",
|
||||
"secondsActive": "Tiempo activo:"
|
||||
},
|
||||
"servers": "Trackers",
|
||||
"folders": "Carpetas",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Carpetas"
|
||||
}
|
||||
},
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Vel. descarga:",
|
||||
"uploadspeed": "Vel. subida:",
|
||||
"version": "Versión:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Carpeta descarga:",
|
||||
"torrent-url": "URL(s):",
|
||||
"tip-torrent-url": "Consejo:Puedes introducir más de un archivo usando varias líneas",
|
||||
"autostart": "Iniciar descarga:",
|
||||
"set-default-download-dir": "Establecer como carpeta predeterminada",
|
||||
"upload-file": "Archivos(s) torrent:",
|
||||
"nosource": "Sin torrent o URL.",
|
||||
"tip-title": "Los archivos subidos tienen prioridad sobre las URL's"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Configuración del servidor",
|
||||
"tabs": {
|
||||
"base": "Básica",
|
||||
"network": "Red",
|
||||
"limit": "Límites",
|
||||
"alt-speed": "Vel. alternativa",
|
||||
"dictionary-folders": "Diccionario de carpetas",
|
||||
"more": "More",
|
||||
"labels": "Labels"
|
||||
},
|
||||
"config-dir": "Carpeta de configuración de Transmission:",
|
||||
"download-dir": "Carpeta de descarga por defecto:",
|
||||
"download-dir-free-space": "Espacio libre:",
|
||||
"incomplete-dir-enabled": "Usar carpeta 'En progreso'",
|
||||
"cache-size-mb": "Tamaño del cache en disco:",
|
||||
"rename-partial-files": "Añadir '.part' a los archivos en progreso",
|
||||
"start-added-torrents": "Inicio automático de torrents añadidos",
|
||||
"download-queue-enabled": "Cola de descarga activada, elementos máximos:",
|
||||
"seed-queue-enabled": "Cola de subida activada, elementos máximos:",
|
||||
"peer-port-random-on-start": "Usar puerto aleatorio al iniciar",
|
||||
"port-forwarding-enabled": "Forwarding activado",
|
||||
"test-port": "Comprobar",
|
||||
"port-is-open-true": "El puerto está abierto",
|
||||
"port-is-open-false": "El puerto está cerrado",
|
||||
"testing": "Probando...",
|
||||
"encryption": "Cifrado:",
|
||||
"encryption-type": {
|
||||
"required": "Requerido",
|
||||
"preferred": "Preferido",
|
||||
"tolerated": "Aceptado"
|
||||
},
|
||||
"utp-enabled": "µTP (UPnP) activado",
|
||||
"dht-enabled": "DHT activado",
|
||||
"lpd-enabled": "LPD activado",
|
||||
"pex-enabled": "PEX activado",
|
||||
"peer-limit-global": "Número máximo de peers global:",
|
||||
"peer-limit-per-torrent": "Número máximo de peers por torrent:",
|
||||
"speed-limit-down-enabled": "Velocidad máxima de descarga:",
|
||||
"speed-limit-up-enabled": "Velocidad máxima de subida:",
|
||||
"alt-speed-enabled": "Usar velocidad alternativa",
|
||||
"alt-speed-down": "Velocidad máxima de descarga:",
|
||||
"alt-speed-up": "Velocidad máxima de subida:",
|
||||
"alt-speed-time-enabled": "Usar programación",
|
||||
"alt-speed-time": "Hora:",
|
||||
"weekday": {
|
||||
"1": "Lunes",
|
||||
"2": "Martes",
|
||||
"3": "Miércoles",
|
||||
"4": "Jueves",
|
||||
"5": "Viernes",
|
||||
"6": "Sábado",
|
||||
"0": "Domingo"
|
||||
},
|
||||
"blocklist-enabled": "Usar blocklist",
|
||||
"blocklist-size": "Blocklist tiene %n reglas.",
|
||||
"seedRatioLimited": "Ratio de compartición máx. por torrent:",
|
||||
"queue-stalled-enabled": "Considerar o no los torrents inactivos como parados:",
|
||||
"idle-seeding-limit-enabled": "Los torrents compartiendo se detendrán si se encuentran inactivos más de:",
|
||||
"minutes": "Minutos",
|
||||
"nochange": "Sin cambio",
|
||||
"saving": "Guardando...",
|
||||
"show-bt-servers": "Show 'BT servers' on Trackers:",
|
||||
"restore-default-settings": "Restore UI Default Settings",
|
||||
"language": "Language:",
|
||||
"loading": "Loading...",
|
||||
"hide-subfolders": "When clicking on the data directory, hide subfolders content in the list:",
|
||||
"simple-check-mode": "Checked only one torrent when you right-click on the torrent list:",
|
||||
"nav-contents": "Navigation bar Display content:",
|
||||
"labels-manage": {
|
||||
"name": "Label Name",
|
||||
"description": "Description",
|
||||
"color": "Color",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Do you want to import labels? This overrides the current configuration."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "Aceptar",
|
||||
"button-cancel": "Cancelar",
|
||||
"button-reload": "Actualizar",
|
||||
"button-save": "Guardar",
|
||||
"button-close": "Cerrar",
|
||||
"button-update": "Actualizar",
|
||||
"button-config": "Configurar",
|
||||
"button-addnew": "Add",
|
||||
"button-edit": "Edit",
|
||||
"button-delete": "Delete",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Autor:culturist<br/>Declaración:Most of the icons used in this program from the network, if any violation of your rights, please contact me delete.",
|
||||
"check-update": "Comprobar actualización",
|
||||
"home": "Project Home",
|
||||
"help": "Wiki",
|
||||
"donate": "Donate",
|
||||
"pt-plugin": "PT Plugin"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Confirmar eliminar",
|
||||
"confirm-text": "¿Desea eliminar los torrents seleccionados?",
|
||||
"remove-data": "Borrar datos locales",
|
||||
"remove-error": "¡Borrado fallido!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Establecer nueva carpeta",
|
||||
"old-download-dir": "Carpeta antigua:",
|
||||
"new-download-dir": "Carpeta nueva:",
|
||||
"move-data": "Si se activa se moverán desde la ubicación anterior, en caso contrario busca archivos en 'Carpeta nueva'.",
|
||||
"set-error": "¡Error al establecer la carpeta!",
|
||||
"recheck-data": "Recomprobar datos."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Reemplazar Trackers",
|
||||
"old-tracker": "Antiguo tracker:",
|
||||
"new-tracker": "Nuevo tracker:",
|
||||
"tip": "Esta función buscará trackers en <b>todos los torrents</b>.",
|
||||
"not-found": "Tracker no encontrado."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Elegir automáticamente directorio de datos",
|
||||
"torrent-count": "Recuento de Torrent:",
|
||||
"folder-count": "Recuento de carpeta:",
|
||||
"dictionary": "Diccionario de Carpetas",
|
||||
"time-begin": "Hora de inicio:",
|
||||
"time-now": "Ahora:",
|
||||
"status": "Estado:",
|
||||
"ignore": "Ignorar",
|
||||
"working-close-confirm": "Está trabajando, ¿está seguro de cerrarlo?",
|
||||
"time-interval": "Intervalo de tiempo (segundos):",
|
||||
"work-mode-title": "Modo:",
|
||||
"work-mode": {
|
||||
"1": "Elegido individualmente por torrent",
|
||||
"2": "Elegido individualmente por folder"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Renombrando ruta de Torrent",
|
||||
"oldname": "Antigua",
|
||||
"newname": "Nueva"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Add Trackers",
|
||||
"tip": "One Line, One Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Set User Labels",
|
||||
"available": "Available:",
|
||||
"selected": "Selected:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Nombre",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "Carpeta desc.",
|
||||
"totalSize": "Tamaño",
|
||||
"status": "Estado",
|
||||
"percentDone": "Progreso",
|
||||
"remainingTime": "Tiempo restante",
|
||||
"addedDate": "Añadido",
|
||||
"completeSize": "Descargado",
|
||||
"rateDownload": "Veloc. desc.",
|
||||
"rateUpload": "Veloc. sub.",
|
||||
"leecherCount": "Leechers",
|
||||
"seederCount": "Seeders",
|
||||
"uploadedEver": "Subido",
|
||||
"uploadRatio": "Proporción",
|
||||
"queuePosition": "Cola",
|
||||
"activityDate": "Activity Date",
|
||||
"trackers": "Trackers",
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "Pausado",
|
||||
"1": "Espera comprob.",
|
||||
"2": "Comprobando",
|
||||
"3": "Espera descarga",
|
||||
"4": "Descargando",
|
||||
"5": "Espera subida",
|
||||
"6": "Subiendo"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Básico",
|
||||
"servers": "Trackers",
|
||||
"files": "Archivos",
|
||||
"users": "Peers",
|
||||
"config": "Config."
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Nombre",
|
||||
"length": "Tamaño",
|
||||
"percentDone": "Progreso",
|
||||
"bytesCompleted": "Completado",
|
||||
"wanted": "Descargar",
|
||||
"priority": "Prioridad"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Anuncio",
|
||||
"announceState": "Estado",
|
||||
"lastAnnounceResult": "Resultado",
|
||||
"lastAnnounceSucceeded": "Exitoso",
|
||||
"lastAnnounceTime": "Hora",
|
||||
"lastAnnounceTimedOut": "T. agotado",
|
||||
"downloadCount": "Descargas",
|
||||
"nextAnnounceTime": "Próximo anuncio"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "Dirección IP",
|
||||
"clientName": "Cliente",
|
||||
"flagStr": "Bandera",
|
||||
"progress": "Progreso",
|
||||
"rateToClient": "Tasa a cliente",
|
||||
"rateToPeer": "Tasa a peer"
|
||||
},
|
||||
"status": {
|
||||
"true": "Sí",
|
||||
"false": "No"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Normal",
|
||||
"1": "Alta",
|
||||
"-1": "Baja"
|
||||
},
|
||||
"label": {
|
||||
"name": "Nombre:",
|
||||
"addedDate": "Añadido:",
|
||||
"totalSize": "Tamaño:",
|
||||
"completeSize": "Completado:",
|
||||
"leftUntilDone": "Restante:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "Destino:",
|
||||
"status": "Estado:",
|
||||
"rateDownload": "Vel. descarga:",
|
||||
"rateUpload": "Vel. subida:",
|
||||
"leecherCount": "Leechers:",
|
||||
"seederCount": "Seeders:",
|
||||
"uploadedEver": "Subido:",
|
||||
"uploadRatio": "Ratio subida:",
|
||||
"creator": "Creador:",
|
||||
"dateCreated": "Fecha creación:",
|
||||
"comment": "Comentario:",
|
||||
"errorString": "Desc. error:",
|
||||
"downloadLimited": "Vel. máxima descarga:",
|
||||
"uploadLimited": "Vel. subida máxima:",
|
||||
"peer-limit": "Número máximo de peers por torrent:",
|
||||
"seedRatioMode": "Ratio de subida por torrent:",
|
||||
"seedIdleMode": "Detener compartidos inactivos tras:",
|
||||
"doneDate": "Finish Time:",
|
||||
"seedTime": "Seed Time:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Descargar archivos(s) marcados",
|
||||
"button-deny": "Omitir archivo(s) marcados",
|
||||
"button-priority": "Establecer prioridad",
|
||||
"button-tracker-add": "Add New Tracker",
|
||||
"button-tracker-edit": "Edit Tracker",
|
||||
"button-tracker-remove": "Remove Tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "¿Está seguro de que desea eliminar este tracker?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Auto expandir atributos"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Desconocido",
|
||||
"text-drop-title": "Arrastre y suelte el archivo en la región para añadir a Transmission.",
|
||||
"text-saved": "Guardado",
|
||||
"text-nochange": "No guardado",
|
||||
"text-info": "Información",
|
||||
"text-confirm": "¿Está seguro?",
|
||||
"text-browsers-not-support-features": "El navegador actual no soporta esta función!",
|
||||
"text-download-update": "Descargar esta actualización",
|
||||
"text-have-update": "Hay una actualización disponible",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/fr.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "fr",
|
||||
"author": "Amaury Aubry, ewan34500, vodek3",
|
||||
"system": {
|
||||
"title": "Interface Web Transmission",
|
||||
"status": {
|
||||
"connect": "Connexion...",
|
||||
"connected": "Connecté",
|
||||
"queue": "File d'attente:",
|
||||
"queuefinish": "La file d'attente est terminée.",
|
||||
"notfinal": "Non terminée",
|
||||
"checked": "%n sélectionné(s):"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Erreur de données.",
|
||||
"data-post-error": "Erreur lors de l'envoi de données.",
|
||||
"rename-error": "Erreur lors du renommage du fichier/répertoire!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Dossier de téléchargement"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Démarrer",
|
||||
"pause": "Pause",
|
||||
"recheck": "Revérifier",
|
||||
"start-all": "Tout démarrer",
|
||||
"pause-all": "Tout en pause",
|
||||
"remove": "Supprimer",
|
||||
"remove-all": "Tout supprimer",
|
||||
"remove-data": "Supprimer les données",
|
||||
"add-torrent": "Ajouter Torrent",
|
||||
"attribute": "Attributs",
|
||||
"alt-speed": "Vitesse alternative",
|
||||
"system-config": "Configuration",
|
||||
"system-reload": "Recharger",
|
||||
"about": "A propos",
|
||||
"reload-time": "Rafraîchissement auto:",
|
||||
"reload-time-unit": "/s",
|
||||
"autoreload-disabled": "Désactivé",
|
||||
"autoreload-enabled": "Activé",
|
||||
"search-prompt": "Chercher torrents",
|
||||
"tracker-replace": "Changer tracker",
|
||||
"queue": "File d'attente",
|
||||
"ui-mobile": "Interface Mobile",
|
||||
"ui-original": "Interface originale",
|
||||
"ui-computer": "Interface bureau",
|
||||
"plugin": "Extensions/plugins",
|
||||
"rename": "Renommer",
|
||||
"copy-path-to-clipboard": "Copier le dossier de téléchargement dans le presse papier",
|
||||
"tip": {
|
||||
"start": "Démarre les torrents sélectionnés",
|
||||
"pause": "Met en pause les torrents sélectionnés",
|
||||
"recheck": "Vérifie les torrents sélectionnés",
|
||||
"recheck-confirm": "Etes-vous sûr de vouloir vérifier les torrents sélectionnés? Cela peut être long!",
|
||||
"start-all": "Tout démarrer",
|
||||
"pause-all": "Tout mettre en pause",
|
||||
"remove": "Supprimer",
|
||||
"delete-all": "Tout supprimer",
|
||||
"delete-data": "Supprimer les données",
|
||||
"add-torrent": "Ajouter torrent(s)",
|
||||
"attribute": "Attributs",
|
||||
"alt-speed": "Vitesse alternative",
|
||||
"system-config": "Configuration",
|
||||
"system-reload": "Recharger",
|
||||
"about": "A propos de cette app",
|
||||
"autoreload-disabled": "Désactiver rafraîchissement auto",
|
||||
"autoreload-enabled": "Activer rafraîchissement auto",
|
||||
"tracker-replace": "Changer de trackers",
|
||||
"change-download-dir": "Définir dossier de téléchargement",
|
||||
"ui-mobile": "Interface Mobile",
|
||||
"ui-original": "Interface originale",
|
||||
"more-peers": "Interroger tracker pour plus de pairs",
|
||||
"rename": "Renommer le torrent",
|
||||
"copy-path-to-clipboard": "Copie le dossier de téléchargement dans le presse papier"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Placer en haut",
|
||||
"move-up": "Remonter",
|
||||
"move-down": "Reculer d'un cran",
|
||||
"move-bottom": "Placer en bas"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Correspondance auto des dossiers de données"
|
||||
},
|
||||
"setLabels": "Personnaliser les étiquettes"
|
||||
},
|
||||
"title": {
|
||||
"left": "Navigation",
|
||||
"list": "Torrents",
|
||||
"attribute": "Attributs",
|
||||
"status": "Statut"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Tous",
|
||||
"active": "Actifs",
|
||||
"paused": "Mis en pause",
|
||||
"downloading": "Téléchargement",
|
||||
"sending": "Envoi",
|
||||
"error": "Erreur",
|
||||
"warning": "Attention",
|
||||
"actively": "Actifs",
|
||||
"check": "Vérification",
|
||||
"wait": "En attente",
|
||||
"search-result": "Résultats de recherche",
|
||||
"status": {
|
||||
"loading": "Chargement..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Statistiques",
|
||||
"cumulative": "Cumulatives",
|
||||
"current": "Actuelles",
|
||||
"uploadedBytes": "Envoyé: ",
|
||||
"downloadedBytes": "Téléchargé: ",
|
||||
"filesAdded": "Fichiers ajoutés: ",
|
||||
"sessionCount": "Nombre de sessions: ",
|
||||
"secondsActive": "Actif depuis: "
|
||||
},
|
||||
"servers": "Trackers",
|
||||
"folders": "Dossiers",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Dossiers"
|
||||
}
|
||||
},
|
||||
"labels": "Etiquettes"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Vitesse de téléchargement:",
|
||||
"uploadspeed": "Vitesse d'envoi:",
|
||||
"version": "Version:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Dossier de téléchargement:",
|
||||
"torrent-url": "URL du torrent:",
|
||||
"tip-torrent-url": "Astuce:Séparer les URLs avec une virgule \",\"",
|
||||
"autostart": "Démarrage auto:",
|
||||
"set-default-download-dir": "Définir comme dossier de téléchargement par défaut",
|
||||
"upload-file": "Fichier(s) torrents:",
|
||||
"nosource": "Aucun torrent ou URL.",
|
||||
"tip-title": "Le fichier torrent a la priorité sur les URLs si les deux sont présents"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Configuration serveur",
|
||||
"tabs": {
|
||||
"base": "Base",
|
||||
"network": "Réseau",
|
||||
"limit": "Limites",
|
||||
"alt-speed": "Planificateur",
|
||||
"dictionary-folders": "Dictionnaire de dossiers",
|
||||
"more": "Plus",
|
||||
"labels": "Etiquettes"
|
||||
},
|
||||
"config-dir": "Emplacement du dossier de configuration de transmission:",
|
||||
"download-dir": "Chemin par défaut de téléchargement:",
|
||||
"download-dir-free-space": "Espace libre:",
|
||||
"incomplete-dir-enabled": "Utiliser le dossier \"incomplete\"",
|
||||
"cache-size-mb": "Taille du cache de disque:",
|
||||
"rename-partial-files": "Ajouter '.part' aux fichiers incomplets",
|
||||
"start-added-torrents": "Démarrer automatiquement le torrent",
|
||||
"download-queue-enabled": "Activer la file d'attente \"téléchargement\", nombre max de fichiers en file d'attente:",
|
||||
"seed-queue-enabled": "Activer la file d'attente \"seed\", nombre max de fichiers en file d'attente:",
|
||||
"peer-port-random-on-start": "Utiliser un port aléatoire au démarrage",
|
||||
"port-forwarding-enabled": "Activer la redirection de port",
|
||||
"test-port": "Tester le port",
|
||||
"port-is-open-true": "Le port est ouvert",
|
||||
"port-is-open-false": "Le port est fermé",
|
||||
"testing": "En test...",
|
||||
"encryption": "Cryptage:",
|
||||
"encryption-type": {
|
||||
"required": "Requis",
|
||||
"preferred": "Préféré",
|
||||
"tolerated": "Toléré"
|
||||
},
|
||||
"utp-enabled": "Activer µTP (UPnP)",
|
||||
"dht-enabled": "Activer DHT",
|
||||
"lpd-enabled": "Activer LPD",
|
||||
"pex-enabled": "Activer PEX",
|
||||
"peer-limit-global": "Nombre maximum de pairs total:",
|
||||
"peer-limit-per-torrent": "Nombre maximum de pairs par torrent:",
|
||||
"speed-limit-down-enabled": "Limiter la vitesse de téléchargement:",
|
||||
"speed-limit-up-enabled": "Limiter la vitesse d'envoi:",
|
||||
"alt-speed-enabled": "Utiliser les vitesses alternatives",
|
||||
"alt-speed-down": "Limiter la vitesse de téléchargement:",
|
||||
"alt-speed-up": "Limiter la vitesse d'envoi:",
|
||||
"alt-speed-time-enabled": "Utiliser planificateur",
|
||||
"alt-speed-time": "Horaires:",
|
||||
"weekday": {
|
||||
"1": "Lundi",
|
||||
"2": "Mardi",
|
||||
"3": "Mercredi",
|
||||
"4": "Jeudi",
|
||||
"5": "Vendredi",
|
||||
"6": "Samedi",
|
||||
"0": "Dimanche"
|
||||
},
|
||||
"blocklist-enabled": "Utiliser la liste de blocage",
|
||||
"blocklist-size": "La liste de blocage possède %n règles.",
|
||||
"seedRatioLimited": "Le ratio de partage des torrents par défaut:",
|
||||
"queue-stalled-enabled": "Durée d'inactivité après laquelle le torrent est considéré comme bloqué:",
|
||||
"idle-seeding-limit-enabled": "Durée d'inactivité après laquelle le torrent en seed est stoppé :",
|
||||
"minutes": "Minutes",
|
||||
"nochange": "Pas de changement",
|
||||
"saving": "Sauvegarde...",
|
||||
"show-bt-servers": "Afficher les 'serveurs BT' sur les Trackers:",
|
||||
"restore-default-settings": "Restaurer les réglages par défaut de l'interface",
|
||||
"language": "Langue:",
|
||||
"loading": "Chargement...",
|
||||
"hide-subfolders": "Lors d'un clic sur un dossier de données, cacher le contenu des sous-dossiers dans la liste:",
|
||||
"simple-check-mode": "Ne sélectionner qu'un seul torrent lors d'un clic droit sur la liste des torrents:",
|
||||
"nav-contents": "Afficher les éléments dans la barre de navigation:",
|
||||
"labels-manage": {
|
||||
"name": "Nom",
|
||||
"description": "Description",
|
||||
"color": "Couleur",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Voulez-vous importer les étiquettes? Cela remplacera la configuration courante."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "OK",
|
||||
"button-cancel": "Annuler",
|
||||
"button-reload": "Recharger",
|
||||
"button-save": "Sauvegarder",
|
||||
"button-close": "Fermer",
|
||||
"button-update": "Mise à jour",
|
||||
"button-config": "Configuration",
|
||||
"button-addnew": "Ajouter",
|
||||
"button-edit": "Modifier",
|
||||
"button-delete": "Supprimer",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Auteur:culturist<br/>Statement:La plupart des icônes utilisées proviennent d'internet, toutefois, si vous constatez une violation de vos droits, contactez moi !",
|
||||
"check-update": "Rechercher mise à jour",
|
||||
"home": "Page d'accueil",
|
||||
"help": "Wiki",
|
||||
"donate": "Don",
|
||||
"pt-plugin": "Plugin PT"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Confirmer la suppression",
|
||||
"confirm-text": "Etes-vous sûr de vouloir supprimer ce(s) torrent(s)?",
|
||||
"remove-data": "Supprimer les données",
|
||||
"remove-error": "Echec de la suppression!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Définir nouveau dossier",
|
||||
"old-download-dir": "Ancien dossier:",
|
||||
"new-download-dir": "Nouveau dossier:",
|
||||
"move-data": "Si coché, déplace les données vers le nouveau dossier. Sinon, scan du nouveau dossier pour de nouveaux fichiers.",
|
||||
"set-error": "Erreur!",
|
||||
"recheck-data": "Vérifier les données."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Changer de tracker",
|
||||
"old-tracker": "Ancien tracker:",
|
||||
"new-tracker": "Nouveau tracker:",
|
||||
"tip": "Cette fonction trouvera <b>tous les torrents</b> Tracker.",
|
||||
"not-found": "Le tracker n'a pas été trouvé."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Correspondance auto des dossiers de données",
|
||||
"torrent-count": "Nombre de torrents:",
|
||||
"folder-count": "Nombre de dossiers:",
|
||||
"dictionary": "Dictionnaire de dossiers",
|
||||
"time-begin": "Heure de début:",
|
||||
"time-now": "Maintenant:",
|
||||
"status": "Statut:",
|
||||
"ignore": "Ignorer",
|
||||
"working-close-confirm": "Est en fonctionnement, êtes-vous sûr de vouloir fermer?",
|
||||
"time-interval": "Intervalle (secondes):",
|
||||
"work-mode-title": "Mode:",
|
||||
"work-mode": {
|
||||
"1": "Correspondance par torrent",
|
||||
"2": "Correspondance par dossier"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Renommer un torrent",
|
||||
"oldname": "Ancien",
|
||||
"newname": "Nouveau"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Ajouter des trackers",
|
||||
"tip": "Une ligne, un tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Définir les étiquettes",
|
||||
"available": "Disponible :",
|
||||
"selected": "Sélectionné(s) :"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Nom",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "Dossier de téléchargement",
|
||||
"totalSize": "Taille totale",
|
||||
"status": "Statut",
|
||||
"percentDone": "Avancement",
|
||||
"remainingTime": "Temps restant",
|
||||
"addedDate": "Date d'ajout",
|
||||
"completeSize": "Téléchargé",
|
||||
"rateDownload": "Vitesse de téléchargement",
|
||||
"rateUpload": "Vitesse d'envoi",
|
||||
"leecherCount": "Leecher",
|
||||
"seederCount": "Seeder",
|
||||
"uploadedEver": "Envoyé",
|
||||
"uploadRatio": "Ratio",
|
||||
"queuePosition": "File",
|
||||
"activityDate": "Date d'activité",
|
||||
"trackers": "Trackers",
|
||||
"labels": "Etiquettes"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "En pause",
|
||||
"1": "En attente de vérification",
|
||||
"2": "Vérification",
|
||||
"3": "En attente de téléchargement",
|
||||
"4": "Téléchargement",
|
||||
"5": "En attende d'envoi",
|
||||
"6": "Envoie"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Base",
|
||||
"servers": "Trackers",
|
||||
"files": "Fichiers",
|
||||
"users": "Pairs",
|
||||
"config": "Configuration"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Nom",
|
||||
"length": "Taille",
|
||||
"percentDone": "Pourcentage effectué",
|
||||
"bytesCompleted": "Taille totale",
|
||||
"wanted": "Wanted",
|
||||
"priority": "Priorité"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Annonce",
|
||||
"announceState": "Statut",
|
||||
"lastAnnounceResult": "Infos",
|
||||
"lastAnnounceSucceeded": "Réussie",
|
||||
"lastAnnounceTime": "Temps d'annonce",
|
||||
"lastAnnounceTimedOut": "Durée dépassée",
|
||||
"downloadCount": "Nombre de téléchargement",
|
||||
"nextAnnounceTime": "Prochaine annonce"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "Adresse IP",
|
||||
"clientName": "Client",
|
||||
"flagStr": "Drapeau",
|
||||
"progress": "Progression",
|
||||
"rateToClient": "Taux client",
|
||||
"rateToPeer": "Taux peer"
|
||||
},
|
||||
"status": {
|
||||
"true": "Vrai",
|
||||
"false": "Faux"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Normale",
|
||||
"1": "Haute",
|
||||
"-1": "Basse"
|
||||
},
|
||||
"label": {
|
||||
"name": "Nom:",
|
||||
"addedDate": "Date d'ajout:",
|
||||
"totalSize": "Taille totale:",
|
||||
"completeSize": "Taille complétée:",
|
||||
"leftUntilDone": "Restant:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "Dossier de téléchargement:",
|
||||
"status": "Statut:",
|
||||
"rateDownload": "Taux de téléchargement:",
|
||||
"rateUpload": "Taux d'envoi:",
|
||||
"leecherCount": "Leecher:",
|
||||
"seederCount": "Seeder:",
|
||||
"uploadedEver": "Envoyé:",
|
||||
"uploadRatio": "Ratio d'envoi:",
|
||||
"creator": "Créateur:",
|
||||
"dateCreated": "Date de création:",
|
||||
"comment": "Commentaire:",
|
||||
"errorString": "Error string:",
|
||||
"downloadLimited": "Vitesse limite de téléchargement:",
|
||||
"uploadLimited": "Vitesse limite d'envoie:",
|
||||
"peer-limit": "Nombre de pairs maximum:",
|
||||
"seedRatioMode": "Ratio de seed:",
|
||||
"seedIdleMode": "Stopper le torrent après une période d'inactivité de:",
|
||||
"doneDate": "Terminé à:",
|
||||
"seedTime": "Partagé à:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Télécharger le(s) fichier(s) sélectionné(s)",
|
||||
"button-deny": "Passer le(s) fichier(s) sélectionné(s)",
|
||||
"button-priority": "Définir la priorité",
|
||||
"button-tracker-add": "Ajouter un nouveau tracker",
|
||||
"button-tracker-edit": "Modifier le tracker",
|
||||
"button-tracker-remove": "Supprimer le tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Etes-vous sûr de vouloir supprimer ce tracker?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Affichage infos torrents"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Inconnu",
|
||||
"text-drop-title": "Glisser-déposer le fichier dans la zone pour l'ajouter à Transmission.",
|
||||
"text-saved": "Sauvegardé",
|
||||
"text-nochange": "Pas de changement",
|
||||
"text-info": "Infos",
|
||||
"text-confirm": "Etes-vous sûr?",
|
||||
"text-browsers-not-support-features": "Votre navigateur ne supporte pas cette fonctionnalité!",
|
||||
"text-download-update": "Télécharger cette mise à jour",
|
||||
"text-have-update": "Une mise à jour est disponible",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/hu.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "hu",
|
||||
"author": "Swartzy, Marcell, vodek3",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "Kapcsolódás...",
|
||||
"connected": "Kapcsolódva",
|
||||
"queue": "Sorban áll:",
|
||||
"queuefinish": "Sorban állás befejezve.",
|
||||
"notfinal": "Nincs kész",
|
||||
"checked": "%n data checked:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Adat hiba.",
|
||||
"data-post-error": "Adat küldési hiba.",
|
||||
"rename-error": "Hiba a fájl/mappa átnevezésekor!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Letöltési mappa"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Indítás",
|
||||
"pause": "Szünet",
|
||||
"recheck": "Ellenőrzés",
|
||||
"start-all": "Összes indítása",
|
||||
"pause-all": "Összes megállítása",
|
||||
"remove": "Törlés",
|
||||
"remove-all": "Összes törlése",
|
||||
"remove-data": "Fájlok törlése",
|
||||
"add-torrent": "Torrent(ek) hozzáadása",
|
||||
"attribute": "Tulajdonságok",
|
||||
"alt-speed": "Sebesség korlát",
|
||||
"system-config": "Beállítások",
|
||||
"system-reload": "Frissítés",
|
||||
"about": "Névjegy",
|
||||
"reload-time": "Frissítési idő:",
|
||||
"reload-time-unit": "mp",
|
||||
"autoreload-disabled": "Tiltva",
|
||||
"autoreload-enabled": "Engedélyezve",
|
||||
"search-prompt": "Helyi torrentek keresése",
|
||||
"tracker-replace": "Trackerek cseréje",
|
||||
"queue": "Sor",
|
||||
"ui-mobile": "Mobil UI",
|
||||
"ui-original": "Eredeti UI",
|
||||
"ui-computer": "Asztali UI",
|
||||
"plugin": "Bővítmények/pluginok",
|
||||
"rename": "Átnevezés",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard",
|
||||
"tip": {
|
||||
"start": "Kijelölt torrentek indítása",
|
||||
"pause": "Kijelölt torrentek szüneteltetése",
|
||||
"recheck": "Kijelölt torrentek ellenőrzése",
|
||||
"recheck-confirm": "Biztosan ellenőrizni szeretnéd a kijelölt torrenteket? Némi időt vesz igénybe!",
|
||||
"start-all": "Összes indítása",
|
||||
"pause-all": "Összes szüneteltetése",
|
||||
"remove": "Törlés",
|
||||
"delete-all": "Összes törlése",
|
||||
"delete-data": "Fájlok törlése",
|
||||
"add-torrent": "Torrent(ek) hozzáadása",
|
||||
"attribute": "Tulajdonságok",
|
||||
"alt-speed": "Sebesség korlát",
|
||||
"system-config": "Beállítások",
|
||||
"system-reload": "Frissítés",
|
||||
"about": "Névjegy",
|
||||
"autoreload-disabled": "Automatikus frissítés tiltva",
|
||||
"autoreload-enabled": "Automatikus frissítés bekapcsolva",
|
||||
"tracker-replace": "Trackerek cseréje",
|
||||
"change-download-dir": "Letöltési hely beállítása",
|
||||
"ui-mobile": "Mobil UI",
|
||||
"ui-original": "Eredeti UI",
|
||||
"more-peers": "Több peer kérése a trackertől",
|
||||
"rename": "Egy torrent elérési útjának átnevezése",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Mozgatás legfelülre",
|
||||
"move-up": "Mozgatás feljebb",
|
||||
"move-down": "Mozgatás lejjebb",
|
||||
"move-bottom": "Mozgatás legalulra"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Könyvtárak automatikus felismerése"
|
||||
},
|
||||
"setLabels": "Set User Labels"
|
||||
},
|
||||
"title": {
|
||||
"left": "Navigáció",
|
||||
"list": "Torrentek",
|
||||
"attribute": "Tulajdonságok",
|
||||
"status": "Állapot"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Összes",
|
||||
"active": "Aktív",
|
||||
"paused": "Szünetel",
|
||||
"downloading": "Letöltés",
|
||||
"sending": "Feltöltés",
|
||||
"error": "Hiba",
|
||||
"warning": "Figyelmeztetés",
|
||||
"actively": "Aktív",
|
||||
"check": "Ellenőrzés",
|
||||
"wait": "Várakozás",
|
||||
"search-result": "Keresési eredmény",
|
||||
"status": {
|
||||
"loading": "Betöltés..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Statisztika",
|
||||
"cumulative": "Összes",
|
||||
"current": "Aktuális",
|
||||
"uploadedBytes": "Feltöltött: ",
|
||||
"downloadedBytes": "Letöltött: ",
|
||||
"filesAdded": "Hozzáadott fájlok: ",
|
||||
"sessionCount": "Munkamenetek: ",
|
||||
"secondsActive": "Aktivitás: "
|
||||
},
|
||||
"servers": "Trackerek",
|
||||
"folders": "Könyvtárak",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Könyvtárak"
|
||||
}
|
||||
},
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Letöltési sebesség:",
|
||||
"uploadspeed": "Feltöltési sebesség:",
|
||||
"version": "Verzió:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Letöltési mappa:",
|
||||
"torrent-url": "Torrent URL:",
|
||||
"tip-torrent-url": "Tipp: Több URL hozzáadásakor 'Enter'-rel válaszd el őket",
|
||||
"autostart": "Auto indítás:",
|
||||
"set-default-download-dir": "Beállítás alpértelmezett letöltési mappaként",
|
||||
"upload-file": "Torrent fájl(ok):",
|
||||
"nosource": "Nincs torrent fájl vagy URL.",
|
||||
"tip-title": "Feltöltött torrentek elsőbbséget élveznek az URL-ben megadottakkal szemben!"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Szerver beállítás",
|
||||
"tabs": {
|
||||
"base": "Alap",
|
||||
"network": "Hálózat",
|
||||
"limit": "Korlátozás",
|
||||
"alt-speed": "Ütemezés",
|
||||
"dictionary-folders": "Könyvtárak",
|
||||
"more": "More",
|
||||
"labels": "Labels"
|
||||
},
|
||||
"config-dir": "Transmission konfigurációs fájl helye:",
|
||||
"download-dir": "Letöltött torrentek alapértelmezett helye:",
|
||||
"download-dir-free-space": "Szabad hely:",
|
||||
"incomplete-dir-enabled": "Befejezetlen torrenteknek mentési helye",
|
||||
"cache-size-mb": "Lemez cache méret:",
|
||||
"rename-partial-files": "Befejezetlen fájlok '.part' kiterjesztésűvé tétele",
|
||||
"start-added-torrents": "Hozzáadott torrentek automatikus indítása",
|
||||
"download-queue-enabled": "Letöltési sorban állás engedélyezve, maximum:",
|
||||
"seed-queue-enabled": "Feltöltési sorban állás engedélyezve, maximum:",
|
||||
"peer-port-random-on-start": "Véletlenszerű port indításnál",
|
||||
"port-forwarding-enabled": "Port átirányítás engedélyezése",
|
||||
"test-port": "Port tesztelése",
|
||||
"port-is-open-true": "Port nyitva",
|
||||
"port-is-open-false": "Port zárva",
|
||||
"testing": "Tesztelés...",
|
||||
"encryption": "Titkosítás:",
|
||||
"encryption-type": {
|
||||
"required": "Kötelező",
|
||||
"preferred": "Preferált",
|
||||
"tolerated": "Megtűrt"
|
||||
},
|
||||
"utp-enabled": "µTP (UPnP) engedélyezése",
|
||||
"dht-enabled": "DHT engedélyezése",
|
||||
"lpd-enabled": "LPD engedélyezése",
|
||||
"pex-enabled": "PEX engedélyezése",
|
||||
"peer-limit-global": "Globális maximum peerek:",
|
||||
"peer-limit-per-torrent": "Maximum peerek torrentenként:",
|
||||
"speed-limit-down-enabled": "Max letöltési sebesség (globális):",
|
||||
"speed-limit-up-enabled": "Max feltöltési sebesség (globális):",
|
||||
"alt-speed-enabled": "Ideiglenes sebesség korlátozás bekapcsolása",
|
||||
"alt-speed-down": "Max letöltési sebesség (globális):",
|
||||
"alt-speed-up": "Max feltöltési sebesség (globális):",
|
||||
"alt-speed-time-enabled": "Ütemezés bekapcsolása",
|
||||
"alt-speed-time": "Idő:",
|
||||
"weekday": {
|
||||
"1": "Hétfő",
|
||||
"2": "Kedd",
|
||||
"3": "Szerda",
|
||||
"4": "Csütörtök",
|
||||
"5": "Péntek",
|
||||
"6": "Szombat",
|
||||
"0": "Vasárnap"
|
||||
},
|
||||
"blocklist-enabled": "Feketelista használata",
|
||||
"blocklist-size": "A feketelista %n szabályt tartalmaz.",
|
||||
"seedRatioLimited": "Seed a következő arány eléréséig:",
|
||||
"queue-stalled-enabled": "Inaktív torrentek leállítása:",
|
||||
"idle-seeding-limit-enabled": "Inaktív torrentek leállítása ennyi tétlenség után:",
|
||||
"minutes": "Perc",
|
||||
"nochange": "Nincs változás",
|
||||
"saving": "Mentés...",
|
||||
"show-bt-servers": "Show 'BT servers' on Trackers:",
|
||||
"restore-default-settings": "Restore UI Default Settings",
|
||||
"language": "Language:",
|
||||
"loading": "Loading...",
|
||||
"hide-subfolders": "When clicking on the data directory, hide subfolders content in the list:",
|
||||
"simple-check-mode": "Checked only one torrent when you right-click on the torrent list:",
|
||||
"nav-contents": "Navigation bar Display content:",
|
||||
"labels-manage": {
|
||||
"name": "Label Name",
|
||||
"description": "Description",
|
||||
"color": "Color",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Do you want to import labels? This overrides the current configuration."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "OK",
|
||||
"button-cancel": "Mégsem",
|
||||
"button-reload": "Újratölt",
|
||||
"button-save": "Mentés",
|
||||
"button-close": "Bezárás",
|
||||
"button-update": "Frissítés",
|
||||
"button-config": "Beállítás",
|
||||
"button-addnew": "Add",
|
||||
"button-edit": "Edit",
|
||||
"button-delete": "Delete",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Szerző:culturist<br/>Nyilatkozat:A programban használt ikonok nagy része az internetről származik. Ha bármelyik sérti a jogaidat, kérlek vedd fel a kapcsolatot velem.",
|
||||
"check-update": "Frissítés keresése",
|
||||
"home": "Project Home",
|
||||
"help": "Wiki",
|
||||
"donate": "Donate",
|
||||
"pt-plugin": "PT Plugin"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Törlés megerősítése",
|
||||
"confirm-text": "Tényleg törölni szeretnéd a kijelölt torrent(ek)et?",
|
||||
"remove-data": "Helyi fájlok törlése",
|
||||
"remove-error": "Törlés sikertelen!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Új elérés beállítása",
|
||||
"old-download-dir": "Régi elérés:",
|
||||
"new-download-dir": "Új elérés:",
|
||||
"move-data": "Fájlok áthelyezése az új helyre.",
|
||||
"set-error": "Hiba!",
|
||||
"recheck-data": "Fájlok ellenőrzése."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Tracker cseréje",
|
||||
"old-tracker": "Régi tracker:",
|
||||
"new-tracker": "Új tracker:",
|
||||
"tip": "Ez a funkció az <b>összes torrent</b> trackerében keres.",
|
||||
"not-found": "Tracker nem található."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Adat könyvtárak automatikus felismerése",
|
||||
"torrent-count": "Torrent számláló:",
|
||||
"folder-count": "Könyvtár számláló:",
|
||||
"dictionary": "Könyvtárak",
|
||||
"time-begin": "Kezdési idő:",
|
||||
"time-now": "Most:",
|
||||
"status": "Állapot:",
|
||||
"ignore": "Kihagyás",
|
||||
"working-close-confirm": "Torrentek letöltése folyamatban, biztosan bezárod a Transmission-t?",
|
||||
"time-interval": "Idő intervallum (mp):",
|
||||
"work-mode-title": "Mód:",
|
||||
"work-mode": {
|
||||
"1": "Egyénileg torrent alapján",
|
||||
"2": "Egyénileg könyvtár alapján"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Egy torrent elérési útjának átnevezése",
|
||||
"oldname": "Régi",
|
||||
"newname": "Új"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Add Trackers",
|
||||
"tip": "One Line, One Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Set User Labels",
|
||||
"available": "Available:",
|
||||
"selected": "Selected:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Név",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "Elérési útvonal",
|
||||
"totalSize": "Méret",
|
||||
"status": "Állapot",
|
||||
"percentDone": "Elkészült",
|
||||
"remainingTime": "Hátralévő idő",
|
||||
"addedDate": "Hozzáadva",
|
||||
"completeSize": "Letöltve",
|
||||
"rateDownload": "Letöltési sebesség",
|
||||
"rateUpload": "Feltöltési sebesség",
|
||||
"leecherCount": "Leecher",
|
||||
"seederCount": "Seeder",
|
||||
"uploadedEver": "Feltöltve",
|
||||
"uploadRatio": "Arány",
|
||||
"queuePosition": "Sor",
|
||||
"activityDate": "Activity Date",
|
||||
"trackers": "Trackers",
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "Szünetel",
|
||||
"1": "Ellenőrzésre vár",
|
||||
"2": "Ellenőrzés",
|
||||
"3": "Letöltésre vár",
|
||||
"4": "Letöltés",
|
||||
"5": "Seedre vár",
|
||||
"6": "Seed"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Alap",
|
||||
"servers": "Trackerek",
|
||||
"files": "Fájlok",
|
||||
"users": "Peerek",
|
||||
"config": "Beállítások"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Név",
|
||||
"length": "Méret",
|
||||
"percentDone": "Elkészült",
|
||||
"bytesCompleted": "Letöltve",
|
||||
"wanted": "Kényszerített indítás",
|
||||
"priority": "Prioritás"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Bejelentés",
|
||||
"announceState": "Állapot",
|
||||
"lastAnnounceResult": "Tracker válasz",
|
||||
"lastAnnounceSucceeded": "Sikeres",
|
||||
"lastAnnounceTime": "Bejelentés ideje",
|
||||
"lastAnnounceTimedOut": "Idő túllépés",
|
||||
"downloadCount": "Letöltési számláló",
|
||||
"nextAnnounceTime": "Következő bejelentés"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "IP cím",
|
||||
"clientName": "Kliens",
|
||||
"flagStr": "Jelző",
|
||||
"progress": "Letöltve",
|
||||
"rateToClient": "Kliens arány",
|
||||
"rateToPeer": "Peer arány"
|
||||
},
|
||||
"status": {
|
||||
"true": "Igen",
|
||||
"false": "Nem"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Normál",
|
||||
"1": "Magas",
|
||||
"-1": "Alacsony"
|
||||
},
|
||||
"label": {
|
||||
"name": "Név:",
|
||||
"addedDate": "Hozzáadás dátuma:",
|
||||
"totalSize": "Teljes méret:",
|
||||
"completeSize": "Letöltött méret:",
|
||||
"leftUntilDone": "Hátra van:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "Elérési útvonal:",
|
||||
"status": "Állapot:",
|
||||
"rateDownload": "Letöltési sebesség:",
|
||||
"rateUpload": "Feltöltési sebesség:",
|
||||
"leecherCount": "Leecher:",
|
||||
"seederCount": "Seeder:",
|
||||
"uploadedEver": "Feltöltve:",
|
||||
"uploadRatio": "Feltöltési arány:",
|
||||
"creator": "Készítő:",
|
||||
"dateCreated": "Létrehozás dátuma:",
|
||||
"comment": "Megjegyzés:",
|
||||
"errorString": "Hibakód:",
|
||||
"downloadLimited": "Max letöltési sebesség:",
|
||||
"uploadLimited": "Max feltöltési sebesség:",
|
||||
"peer-limit": "Max peer torrentenként:",
|
||||
"seedRatioMode": "Seed a következő arány eléréséig:",
|
||||
"seedIdleMode": "Seed leállítása ha a torrent ennyi ideig tétlen:",
|
||||
"doneDate": "Finish Time:",
|
||||
"seedTime": "Seed Time:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Kijelölt fájl(ok) letöltése",
|
||||
"button-deny": "Kijelölt fájl(ok) kihagyása",
|
||||
"button-priority": "Prioritás beállítása",
|
||||
"button-tracker-add": "Add New Tracker",
|
||||
"button-tracker-edit": "Edit Tracker",
|
||||
"button-tracker-remove": "Remove Tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Biztosan ki akarod törölni ezt a trackert?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Tulajdonságok automatikus megnyitása"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Ismeretlen",
|
||||
"text-drop-title": "Húzd ide torrentet a hozzáadáshoz.",
|
||||
"text-saved": "Mentve",
|
||||
"text-nochange": "Nincs változás",
|
||||
"text-info": "Információ",
|
||||
"text-confirm": "Biztos vagy benne?",
|
||||
"text-browsers-not-support-features": "Ezt a funkciót a jelenlegi böngésző nem támogatja!",
|
||||
"text-download-update": "Frissítés letöltése",
|
||||
"text-have-update": "Frissítés elérhető",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/it.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "it",
|
||||
"author": "Daniele Buccilli, vodek3, Oliver Cervera",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "Connessione in corso...",
|
||||
"connected": "Connesso",
|
||||
"queue": "Coda:",
|
||||
"queuefinish": "La coda di download è completata.",
|
||||
"notfinal": "Non completato",
|
||||
"checked": "%n dati verificati:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Errore durante la ricezione dei dati!",
|
||||
"data-post-error": "Errore durante l'invio dei dati!",
|
||||
"rename-error": "Impossibile rinominare il file/cartella!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Cartella di download"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Avvia",
|
||||
"pause": "Pausa",
|
||||
"recheck": "Ricontrolla",
|
||||
"start-all": "Avvia tutti",
|
||||
"pause-all": "Ferma tutti",
|
||||
"remove": "Rimuovi",
|
||||
"remove-all": "Rimuovi tutti",
|
||||
"remove-data": "Rimuovi dati",
|
||||
"add-torrent": "Aggiungi Torrent",
|
||||
"attribute": "Dettagli",
|
||||
"alt-speed": "Velocità alternativa",
|
||||
"system-config": "Configurazione",
|
||||
"system-reload": "Ricarica",
|
||||
"about": "Info su",
|
||||
"reload-time": "Aggiorna ogni:",
|
||||
"reload-time-unit": "secondi",
|
||||
"autoreload-disabled": "Disattivato",
|
||||
"autoreload-enabled": "Attivato",
|
||||
"search-prompt": "Cerca Torrent locali",
|
||||
"tracker-replace": "Sostituisci tracker",
|
||||
"queue": "Coda",
|
||||
"ui-mobile": "UI Mobile",
|
||||
"ui-original": "UI Originale",
|
||||
"ui-computer": "UI Desktop",
|
||||
"plugin": "Estensioni/plugin",
|
||||
"rename": "Rinomina",
|
||||
"copy-path-to-clipboard": "Copia percorso di download negli appunti",
|
||||
"tip": {
|
||||
"start": "Avvia i torrent selezionati",
|
||||
"pause": "Ferma i torrent selezionati",
|
||||
"recheck": "Ricontrolla i torrent selezionati",
|
||||
"recheck-confirm": "Sei sicuro di voler ricontrollare i torrent selezionati? Ci vorrà del tempo!",
|
||||
"start-all": "Avvia tutti",
|
||||
"pause-all": "Ferma tutti",
|
||||
"remove": "Rimuovi",
|
||||
"delete-all": "Elimina tutti",
|
||||
"delete-data": "Elimina dati",
|
||||
"add-torrent": "Aggiungi torrent",
|
||||
"attribute": "Dettagli",
|
||||
"alt-speed": "Velocita alternativa",
|
||||
"system-config": "Configurazione",
|
||||
"system-reload": "Aggiorna",
|
||||
"about": "Info su quest app",
|
||||
"autoreload-disabled": "Disattiva aggiornamento automatico",
|
||||
"autoreload-enabled": "Attiva aggiornamento automatico",
|
||||
"tracker-replace": "Sostituisci tracker",
|
||||
"change-download-dir": "Cambia cartella di download",
|
||||
"ui-mobile": "UI Mobile",
|
||||
"ui-original": "UI Originale",
|
||||
"more-peers": "Chiedi più peer al tracker",
|
||||
"rename": "Rinomina Torrent",
|
||||
"copy-path-to-clipboard": "Copia percorso di download negli appunti"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Sposta all'inizio",
|
||||
"move-up": "Sposta su",
|
||||
"move-down": "Sposa giù",
|
||||
"move-bottom": "Sposta alla fine"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Associa automaticamente cartella dati"
|
||||
},
|
||||
"setLabels": "Imposta Etichette Utente"
|
||||
},
|
||||
"title": {
|
||||
"left": "Navigazione",
|
||||
"list": "Torrent",
|
||||
"attribute": "Dettagli",
|
||||
"status": "Stato"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Tutti",
|
||||
"active": "Attivi",
|
||||
"paused": "In Pausa",
|
||||
"downloading": "In Download",
|
||||
"sending": "In Seed",
|
||||
"error": "Errori",
|
||||
"warning": "Avvisi",
|
||||
"actively": "Attivi",
|
||||
"check": "In Controllo",
|
||||
"wait": "In attesa",
|
||||
"search-result": "Risultati ricerca",
|
||||
"status": {
|
||||
"loading": "Caricamento in corso..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Statistiche",
|
||||
"cumulative": "Complessive",
|
||||
"current": "Sessione corrente",
|
||||
"uploadedBytes": "Upload:",
|
||||
"downloadedBytes": "Download:",
|
||||
"filesAdded": "File Aggiunti:",
|
||||
"sessionCount": "Numero di sessioni:",
|
||||
"secondsActive": "Tempo in attività:"
|
||||
},
|
||||
"servers": "Tracker",
|
||||
"folders": "Cartelle",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Cartelle"
|
||||
}
|
||||
},
|
||||
"labels": "Etichette Utente"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Velocità di Download:",
|
||||
"uploadspeed": "Velocità di Upload:",
|
||||
"version": "Versione:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Cartella di Download:",
|
||||
"torrent-url": "URL Torrent:",
|
||||
"tip-torrent-url": "È possibile inserire più URL separati da 'Invio'",
|
||||
"autostart": "Avvia automaticamente:",
|
||||
"set-default-download-dir": "Imposta come cartella predefinita",
|
||||
"upload-file": "File Torrent:",
|
||||
"nosource": "Nessun file torrent o URL.",
|
||||
"tip-title": "Il file torrent ha la precedenza sul URL"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Configurazione del Server",
|
||||
"tabs": {
|
||||
"base": "Principale",
|
||||
"network": "Rete",
|
||||
"limit": "Limiti",
|
||||
"alt-speed": "Programmazione",
|
||||
"dictionary-folders": "Raccolta Cartelle",
|
||||
"more": "Altro",
|
||||
"labels": "Etichette"
|
||||
},
|
||||
"config-dir": "Cartella di configurazione di Transmission",
|
||||
"download-dir": "Cartella predefinita di download:",
|
||||
"download-dir-free-space": "Spazio libero:",
|
||||
"incomplete-dir-enabled": "Usa cartella per i file incompleti",
|
||||
"cache-size-mb": "Dimensione cache su disco:",
|
||||
"rename-partial-files": "Aggiungi '.part' ai file incompleti",
|
||||
"start-added-torrents": "Avvia i torrent all'aggiunta",
|
||||
"download-queue-enabled": "Abilita coda di download, numero massimo di torrent:",
|
||||
"seed-queue-enabled": "Abilita coda di upload, numero massimo di torrent:",
|
||||
"peer-port-random-on-start": "Imposta porta casuale all'avvio",
|
||||
"port-forwarding-enabled": "Abilita port forwarding",
|
||||
"test-port": "Testa porta",
|
||||
"port-is-open-true": "La porta è aperta",
|
||||
"port-is-open-false": "La porta è chiusa",
|
||||
"testing": "Test in corso...",
|
||||
"encryption": "Crittografia:",
|
||||
"encryption-type": {
|
||||
"required": "Richiesta",
|
||||
"preferred": "Preferita",
|
||||
"tolerated": "Permessa"
|
||||
},
|
||||
"utp-enabled": "Abilita µTP (UPnP)",
|
||||
"dht-enabled": "Abilita DHT",
|
||||
"lpd-enabled": "Abilita LPD",
|
||||
"pex-enabled": "Abilita PEX",
|
||||
"peer-limit-global": "Numero massimo di peer:",
|
||||
"peer-limit-per-torrent": "Numero massimo di peer per torrent:",
|
||||
"speed-limit-down-enabled": "Velocità massima di download:",
|
||||
"speed-limit-up-enabled": "Velocità massima di upload:",
|
||||
"alt-speed-enabled": "Abilita limiti di velocità alternativa",
|
||||
"alt-speed-down": "Velocità massima alternativa di download:",
|
||||
"alt-speed-up": "Velocità massima alternativa di upload:",
|
||||
"alt-speed-time-enabled": "Abilita programmazione",
|
||||
"alt-speed-time": "Ora:",
|
||||
"weekday": {
|
||||
"1": "Lunedì",
|
||||
"2": "Martedì",
|
||||
"3": "Mercoledì",
|
||||
"4": "Giovedì",
|
||||
"5": "Venerdì",
|
||||
"6": "Sabato",
|
||||
"0": "Domenica"
|
||||
},
|
||||
"blocklist-enabled": "Usa lista di blocco",
|
||||
"blocklist-size": "La lista di blocco ha %n regole.",
|
||||
"seedRatioLimited": "Rapporto di condivisione predefinito per i torrent:",
|
||||
"queue-stalled-enabled": "Considera in stallo i torrent senza attività da:",
|
||||
"idle-seeding-limit-enabled": "Ferma seeding per i torrent senza attività da:",
|
||||
"minutes": "Minuti",
|
||||
"nochange": "Nessuna modifica",
|
||||
"saving": "Salvataggio in corso...",
|
||||
"show-bt-servers": "Mostra 'Server BT' in Tracker:",
|
||||
"restore-default-settings": "Ripristina impostazioni predefinite UI",
|
||||
"language": "Lingua:",
|
||||
"loading": "Caricamento in corso...",
|
||||
"hide-subfolders": "Quando selezioni la cartella dei dati, le sottocartelle vengono nascoste dalla lista:",
|
||||
"simple-check-mode": "Seleziona solo un torrent quando clicchi con il tasto destro nella lista dei torrent:",
|
||||
"nav-contents": "Elementi da mostrare nella barra di navigazione:",
|
||||
"labels-manage": {
|
||||
"name": "Nome Etichetta",
|
||||
"description": "Descrizione",
|
||||
"color": "Colori",
|
||||
"actions": "Azioni",
|
||||
"import-confirm": "Sei sicuro di voler importare le etichette? Questa operazione sovrascrive la configurazione esistente."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "OK",
|
||||
"button-cancel": "Annulla",
|
||||
"button-reload": "Aggiorna",
|
||||
"button-save": "Salva",
|
||||
"button-close": "Chiudi",
|
||||
"button-update": "Aggiorna",
|
||||
"button-config": "Configurazione",
|
||||
"button-addnew": "Aggiungi",
|
||||
"button-edit": "Modifica",
|
||||
"button-delete": "Elimina",
|
||||
"button-export": "Esporta",
|
||||
"button-import": "Importa"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Autore:culturist<br/>Nota: Molte delle icone usate in questo programma sono prese dalla rete, se una di questa è di vostra proprietà contattatemi e provvederò a rimuoverla/e.",
|
||||
"check-update": "Controlla aggiornamenti",
|
||||
"home": "Homepage del progetto",
|
||||
"help": "Wiki",
|
||||
"donate": "Dona",
|
||||
"pt-plugin": "Plugin PT"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Conferma rimozione",
|
||||
"confirm-text": "Sei sicuro di voler rimuovere i torrent selezionati?",
|
||||
"remove-data": "Elimina dati in locale",
|
||||
"remove-error": "Eliminazione fallita!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Imposta una nuova cartella",
|
||||
"old-download-dir": "Cartella precedente:",
|
||||
"new-download-dir": "Nuova cartella:",
|
||||
"move-data": "Se abilitato, sposta i file dalla cartella precedente. Se disattivato i dati verranno cercati nella 'Nuova cartella'.",
|
||||
"set-error": "Errore!",
|
||||
"recheck-data": "Ricontrolla dati."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Sostituisci Tracker",
|
||||
"old-tracker": "Tracker precedente:",
|
||||
"new-tracker": "Nuovo Tracker:",
|
||||
"tip": "Questa operazione sostituirà il nuovo tracker su <b>tutti i torrent</b>.",
|
||||
"not-found": "Tracker non trovato."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Associa automaticamente cartella dati",
|
||||
"torrent-count": "Numero torrent:",
|
||||
"folder-count": "Numero cartelle:",
|
||||
"dictionary": "Raccolta Cartelle",
|
||||
"time-begin": "Ora di inizio:",
|
||||
"time-now": "Adesso:",
|
||||
"status": "Stato:",
|
||||
"ignore": "Ignora",
|
||||
"working-close-confirm": "Ci sono torrent in download, sei sicuro di voler chiudere Transmission?",
|
||||
"time-interval": "Intervallo (secondi):",
|
||||
"work-mode-title": "Modalità:",
|
||||
"work-mode": {
|
||||
"1": "Associa individualmente per torrent",
|
||||
"2": "Associa individualmente per cartella"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Rinomina file Torrent",
|
||||
"oldname": "Precedente",
|
||||
"newname": "Nuovo"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Aggiungi tracker",
|
||||
"tip": "Ogni tracker va aggiunto in una nuova linea"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Imposta Etichette Utente",
|
||||
"available": "Disponibile:",
|
||||
"selected": "Selezione:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Nome",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "Cartella di download",
|
||||
"totalSize": "Dimensione totale",
|
||||
"status": "Stato",
|
||||
"percentDone": "Avanzamento",
|
||||
"remainingTime": "Tempo stimato",
|
||||
"addedDate": "Aggiunto il",
|
||||
"completeSize": "Scaricati",
|
||||
"rateDownload": "Velocità download",
|
||||
"rateUpload": "Velocità upload",
|
||||
"leecherCount": "Peer",
|
||||
"seederCount": "Seed",
|
||||
"uploadedEver": "Caricati",
|
||||
"uploadRatio": "Rapporto condivisione",
|
||||
"queuePosition": "Coda",
|
||||
"activityDate": "Ultima attività",
|
||||
"trackers": "Tracker",
|
||||
"labels": "Etichette Utente"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "In Pausa",
|
||||
"1": "In attesa del controllo",
|
||||
"2": "In controllo",
|
||||
"3": "In attesa del download",
|
||||
"4": "In Download",
|
||||
"5": "Wait seed",
|
||||
"6": "In Seed"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Base",
|
||||
"servers": "Tracker",
|
||||
"files": "File",
|
||||
"users": "Peers",
|
||||
"config": "Configurazione"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Nome",
|
||||
"length": "Dimensione",
|
||||
"percentDone": "Avanzamento",
|
||||
"bytesCompleted": "Scaricati",
|
||||
"wanted": "Scaricare?",
|
||||
"priority": "Priorità"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Indirizzo",
|
||||
"announceState": "Stato",
|
||||
"lastAnnounceResult": "Info",
|
||||
"lastAnnounceSucceeded": "Annuncio riuscito",
|
||||
"lastAnnounceTime": "Orario annuncio",
|
||||
"lastAnnounceTimedOut": "Scaduto",
|
||||
"downloadCount": "Scaricato",
|
||||
"nextAnnounceTime": "Prossimo annuncio"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "Indirizzo IP",
|
||||
"clientName": "Client",
|
||||
"flagStr": "Flag",
|
||||
"progress": "Avanzamento",
|
||||
"rateToClient": "RateToClient",
|
||||
"rateToPeer": "RateToPeer"
|
||||
},
|
||||
"status": {
|
||||
"true": "Sì",
|
||||
"false": "No"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Normale",
|
||||
"1": "Alta",
|
||||
"-1": "Bassa"
|
||||
},
|
||||
"label": {
|
||||
"name": "Nome:",
|
||||
"addedDate": "Aggiunto il:",
|
||||
"totalSize": "Dimensione totale:",
|
||||
"completeSize": "Scaricati:",
|
||||
"leftUntilDone": "Tempo alla fine:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "Cartella di download:",
|
||||
"status": "Stato:",
|
||||
"rateDownload": "Velocità download:",
|
||||
"rateUpload": "Velocità upload:",
|
||||
"leecherCount": "Peer:",
|
||||
"seederCount": "Seed:",
|
||||
"uploadedEver": "Caricati:",
|
||||
"uploadRatio": "Rapporto condivisione:",
|
||||
"creator": "Autore:",
|
||||
"dateCreated": "Creato il:",
|
||||
"comment": "Commento:",
|
||||
"errorString": "Errore:",
|
||||
"downloadLimited": "Velocità massima di download:",
|
||||
"uploadLimited": "Velocità massima di upload:",
|
||||
"peer-limit": "Numero massimo di peer per questo torrent:",
|
||||
"seedRatioMode": "Rapporto di condivisione configurato:",
|
||||
"seedIdleMode": "Ferma seeding per i torrent senza attività da:",
|
||||
"doneDate": "Terminato il:",
|
||||
"seedTime": "In seed per:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Scarica i file selezionati",
|
||||
"button-deny": "Salta i file selezionati",
|
||||
"button-priority": "Imposta priorità",
|
||||
"button-tracker-add": "Aggiungi nuovo Tracker",
|
||||
"button-tracker-edit": "Modifica Tracker",
|
||||
"button-tracker-remove": "Rimuovi Tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Sei sicuro di voler rimuovere questi tracker?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Espandi automaticamente i dettagli"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Sconosciuto",
|
||||
"text-drop-title": "Trascina qui i file per aggiungerli a Transmission.",
|
||||
"text-saved": "Salvato",
|
||||
"text-nochange": "Nessuna modifica",
|
||||
"text-info": "Informazioni",
|
||||
"text-confirm": "Sei sicuro?",
|
||||
"text-browsers-not-support-features": "Il browser in uso non supporta questa funzione!",
|
||||
"text-download-update": "Scarica l'aggiornamento",
|
||||
"text-have-update": "È disponibile un aggiornamento",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/ko.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "ko",
|
||||
"author": "kdsz330, vodek3",
|
||||
"system": {
|
||||
"title": "트랜스미션 웹 컨트롤",
|
||||
"status": {
|
||||
"connect": "연결 중...",
|
||||
"connected": "연결 완료",
|
||||
"queue": "대기 목록:",
|
||||
"queuefinish": "대기 목록 처리 완료.",
|
||||
"notfinal": "끝나지 않음.",
|
||||
"checked": "%n data checked:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "데이터 오류.",
|
||||
"data-post-error": "데이터 포스트 오류.",
|
||||
"rename-error": "Error renaming file/folder!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "다운로드 폴더"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "시작",
|
||||
"pause": "정지",
|
||||
"recheck": "재확인",
|
||||
"start-all": "모두 시작",
|
||||
"pause-all": "모두 정지",
|
||||
"remove": "제거",
|
||||
"remove-all": "모두 제거",
|
||||
"remove-data": "데이터 제거",
|
||||
"add-torrent": "토렌트 추가",
|
||||
"attribute": "속성",
|
||||
"alt-speed": "Alt-Speed",
|
||||
"system-config": "설정",
|
||||
"system-reload": "새로고침",
|
||||
"about": "정보",
|
||||
"reload-time": "자동 새로고침:",
|
||||
"reload-time-unit": "초 간격",
|
||||
"autoreload-disabled": "비활성화",
|
||||
"autoreload-enabled": "활성화",
|
||||
"search-prompt": "검색",
|
||||
"tracker-replace": "트래커 변경",
|
||||
"queue": "대기",
|
||||
"ui-mobile": "모바일 UI",
|
||||
"ui-original": "기본 UI",
|
||||
"ui-computer": "데스크탑 UI",
|
||||
"plugin": "확장/플러그인",
|
||||
"rename": "Rename",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard",
|
||||
"tip": {
|
||||
"start": "선택한 토렌트 시작",
|
||||
"pause": "선택한 토렌트 정지",
|
||||
"recheck": "선택한 토렌트 재확인",
|
||||
"recheck-confirm": "선택한 토렌트를 다시 확인 하시겠습니까? 이것은 약간의 시간이 걸릴 수 있습니다!",
|
||||
"start-all": "모두 시작",
|
||||
"pause-all": "모두 정지",
|
||||
"remove": "제거",
|
||||
"delete-all": "모두 삭제",
|
||||
"delete-data": "데이터 삭제",
|
||||
"add-torrent": "토렌트 추가",
|
||||
"attribute": "속성",
|
||||
"alt-speed": "Alt-speed",
|
||||
"system-config": "설정",
|
||||
"system-reload": "새로고침",
|
||||
"about": "이 앱에 대해서",
|
||||
"autoreload-disabled": "자동 새로고침 비활성화",
|
||||
"autoreload-enabled": "자동 새로고침 활성화",
|
||||
"tracker-replace": "트래커 변경",
|
||||
"change-download-dir": "위치 설정",
|
||||
"ui-mobile": "모바일 UI",
|
||||
"ui-original": "원래 UI",
|
||||
"more-peers": "더 많은 피어 탐색",
|
||||
"rename": "Renaming a Torrent's Path",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "가장 위로 이동",
|
||||
"move-up": "위로 이동",
|
||||
"move-down": "아래로 이동",
|
||||
"move-bottom": "가장 아래로 아동"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "자동으로 데이터 폴더 일치시키기"
|
||||
},
|
||||
"setLabels": "Set User Labels"
|
||||
},
|
||||
"title": {
|
||||
"left": "안내",
|
||||
"list": "토렌트",
|
||||
"attribute": "속성",
|
||||
"status": "상태"
|
||||
},
|
||||
"tree": {
|
||||
"all": "모두",
|
||||
"active": "활성화",
|
||||
"paused": "정지",
|
||||
"downloading": "다운로드 중",
|
||||
"sending": "전송 중",
|
||||
"error": "오류",
|
||||
"warning": "경고",
|
||||
"actively": "활성화 중",
|
||||
"check": "확인 중",
|
||||
"wait": "대기 중",
|
||||
"search-result": "검색 결과",
|
||||
"status": {
|
||||
"loading": "로딩 중..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "통계",
|
||||
"cumulative": "누적",
|
||||
"current": "현제",
|
||||
"uploadedBytes": "업로드 한 크기: ",
|
||||
"downloadedBytes": "다운로드 한 크기: ",
|
||||
"filesAdded": "파일 추가: ",
|
||||
"sessionCount": "세션 수: ",
|
||||
"secondsActive": "활성화된 시간: "
|
||||
},
|
||||
"servers": "트래커",
|
||||
"folders": "폴더",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "폴더"
|
||||
}
|
||||
},
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "다운로드 속도:",
|
||||
"uploadspeed": "전송 속도:",
|
||||
"version": "버전:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "다운로드 폴더:",
|
||||
"torrent-url": "토렌트 URL:",
|
||||
"tip-torrent-url": "Tip:여러개 입력시 줄로 구분하세요",
|
||||
"autostart": "자동 시작:",
|
||||
"set-default-download-dir": "기본 폴더 지정",
|
||||
"upload-file": "토렌트 파일:",
|
||||
"nosource": "토렌트 파일이나 URL이 없음.",
|
||||
"tip-title": "업로드는 토렌트 URL에 우선합니다"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "서버 설정",
|
||||
"tabs": {
|
||||
"base": "기본",
|
||||
"network": "네트워크",
|
||||
"limit": "제한",
|
||||
"alt-speed": "예약",
|
||||
"dictionary-folders": "폴더 사전",
|
||||
"more": "More",
|
||||
"labels": "Labels"
|
||||
},
|
||||
"config-dir": "트랜스미션 구성 디텍토리:",
|
||||
"download-dir": "토렌트 다운로드 기본 경로:",
|
||||
"download-dir-free-space": "남은 공간:",
|
||||
"incomplete-dir-enabled": "미완료 폴더 사용",
|
||||
"cache-size-mb": "디스크 캐쉬 크기:",
|
||||
"rename-partial-files": "다운로드 중인 파일에'.part'사용",
|
||||
"start-added-torrents": "토렌트 추가시 자동 시작",
|
||||
"download-queue-enabled": "다운로드 대기열, 최대 대기열 수 사용:",
|
||||
"seed-queue-enabled": "시딩 대기열, 최대 대기열 수 사용:",
|
||||
"peer-port-random-on-start": "시작시 랜덤 포트 사용",
|
||||
"port-forwarding-enabled": "포워딩 활성화",
|
||||
"test-port": "포트 시험",
|
||||
"port-is-open-true": "열린 포트",
|
||||
"port-is-open-false": "닫힌 포트",
|
||||
"testing": "시험 중...",
|
||||
"encryption": "암호화:",
|
||||
"encryption-type": {
|
||||
"required": "Required",
|
||||
"preferred": "Preferred",
|
||||
"tolerated": "Tolerated"
|
||||
},
|
||||
"utp-enabled": "µTP (UPnP) 활성화",
|
||||
"dht-enabled": "DHT 활성화",
|
||||
"lpd-enabled": "LPD 활성화",
|
||||
"pex-enabled": "PEX 활성화",
|
||||
"peer-limit-global": "모든 토렌트 최대 피어 수:",
|
||||
"peer-limit-per-torrent": "토렌트 당 최대 피어 수:",
|
||||
"speed-limit-down-enabled": "최대 다운로드 속도:",
|
||||
"speed-limit-up-enabled": "최대 업로드 속도:",
|
||||
"alt-speed-enabled": "Alt speeds 사용",
|
||||
"alt-speed-down": "최대 다운로드 속도:",
|
||||
"alt-speed-up": "최대 업로드 속도:",
|
||||
"alt-speed-time-enabled": "예약 사용",
|
||||
"alt-speed-time": "시간:",
|
||||
"weekday": {
|
||||
"1": "월요일",
|
||||
"2": "화요일",
|
||||
"3": "수요일",
|
||||
"4": "목요일",
|
||||
"5": "금요일",
|
||||
"6": "토요일",
|
||||
"0": "일요일"
|
||||
},
|
||||
"blocklist-enabled": "블랙리스트 사용",
|
||||
"blocklist-size": "%n가지 블래리스트 규칙.",
|
||||
"seedRatioLimited": "기본 시드 비율:",
|
||||
"queue-stalled-enabled": "Whether or not to consider idle torrents as stalled:",
|
||||
"idle-seeding-limit-enabled": "토렌트가 오래동안 유휴상태이면, 정지합니다:",
|
||||
"minutes": "분",
|
||||
"nochange": "변경 안됨",
|
||||
"saving": "저장 중...",
|
||||
"show-bt-servers": "Show 'BT servers' on Trackers:",
|
||||
"restore-default-settings": "Restore UI Default Settings",
|
||||
"language": "Language:",
|
||||
"loading": "Loading...",
|
||||
"hide-subfolders": "When clicking on the data directory, hide subfolders content in the list:",
|
||||
"simple-check-mode": "Checked only one torrent when you right-click on the torrent list:",
|
||||
"nav-contents": "Navigation bar Display content:",
|
||||
"labels-manage": {
|
||||
"name": "Label Name",
|
||||
"description": "Description",
|
||||
"color": "Color",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Do you want to import labels? This overrides the current configuration."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "확인",
|
||||
"button-cancel": "취소",
|
||||
"button-reload": "새로고침",
|
||||
"button-save": "저장",
|
||||
"button-close": "닫기",
|
||||
"button-update": "업데이트",
|
||||
"button-config": "설정",
|
||||
"button-addnew": "Add",
|
||||
"button-edit": "Edit",
|
||||
"button-delete": "Delete",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "제작자:culturist<br/>서명:이 프로그램에 사용되는 아이콘들은 대부분은 네트워크에서 응용된다 만약 이것이 당신의 권리를 침해하는 어떤것이라도 발생시킨다면 나에게 그걸 삭제해달라고 말해라.",
|
||||
"check-update": "업데이트 확인",
|
||||
"home": "Project Home",
|
||||
"help": "Wiki",
|
||||
"donate": "Donate",
|
||||
"pt-plugin": "PT Plugin"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "제거 확인",
|
||||
"confirm-text": "선택한 토렌트들을 삭제 하시겠습니까?",
|
||||
"remove-data": "로컬 데이터 삭제",
|
||||
"remove-error": "삭제 실패!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "새 폴더 설정",
|
||||
"old-download-dir": "현재 폴더:",
|
||||
"new-download-dir": "새 폴더:",
|
||||
"move-data": "선택하면, 이전 위치에서 이동합니다. 그렇지 않으면, '새 디렉토리'를 검색합니다.",
|
||||
"set-error": "지정 오류!",
|
||||
"recheck-data": "데이터 재확인."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "트래커 변경",
|
||||
"old-tracker": "현재 트래커:",
|
||||
"new-tracker": "새 트래커:",
|
||||
"tip": " 이 기능은<b>모든 토렌트</b>에서 트래커를 찾을 것이다. ",
|
||||
"not-found": "트래커를 찾을 수 없습니다."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "자동으로 데이터 폴더 일치시키기",
|
||||
"torrent-count": "토렌트 수:",
|
||||
"folder-count": "폴더 수:",
|
||||
"dictionary": "폴더 사전",
|
||||
"time-begin": "시작 시간:",
|
||||
"time-now": "현재:",
|
||||
"status": "상태:",
|
||||
"ignore": "무시",
|
||||
"working-close-confirm": "작업중입니다. 종료하시겠습니까?",
|
||||
"time-interval": "시간 간격 (초단위):",
|
||||
"work-mode-title": "방식:",
|
||||
"work-mode": {
|
||||
"1": "개별 토렌트 일치",
|
||||
"2": "개별 폴더 일치"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Renaming a Torrent's Path",
|
||||
"oldname": "Old",
|
||||
"newname": "New"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Add Trackers",
|
||||
"tip": "One Line, One Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Set User Labels",
|
||||
"available": "Available:",
|
||||
"selected": "Selected:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "이름",
|
||||
"hashString": "해쉬",
|
||||
"downloadDir": "다운로드 폴더",
|
||||
"totalSize": "총 크기",
|
||||
"status": "상태",
|
||||
"percentDone": "진행 상황",
|
||||
"remainingTime": "남은 시간",
|
||||
"addedDate": "추가된 시간",
|
||||
"completeSize": "완료된 크기",
|
||||
"rateDownload": "다운로드 속도",
|
||||
"rateUpload": "업로드 속도",
|
||||
"leecherCount": "리처",
|
||||
"seederCount": "시더",
|
||||
"uploadedEver": "업로드 한 크기",
|
||||
"uploadRatio": "비율",
|
||||
"queuePosition": "Queue",
|
||||
"activityDate": "Activity Date",
|
||||
"trackers": "Trackers",
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "정지",
|
||||
"1": "확인 대기",
|
||||
"2": "확인 중",
|
||||
"3": "다운로드 대기",
|
||||
"4": "다운로드 중",
|
||||
"5": "시드 대기",
|
||||
"6": "시드 중"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "기본",
|
||||
"servers": "트래커",
|
||||
"files": "파일",
|
||||
"users": "피어",
|
||||
"config": "설정"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "이름",
|
||||
"length": "크기",
|
||||
"percentDone": "진행 상황",
|
||||
"bytesCompleted": "다운로드한 크기",
|
||||
"wanted": "Wanted",
|
||||
"priority": "우선도"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "주소",
|
||||
"announceState": "상태",
|
||||
"lastAnnounceResult": "정보",
|
||||
"lastAnnounceSucceeded": "성공",
|
||||
"lastAnnounceTime": "연결된 시각",
|
||||
"lastAnnounceTimedOut": "시간 초과",
|
||||
"downloadCount": "다운로드 수",
|
||||
"nextAnnounceTime": "다음 연결 시각"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "IP 주소",
|
||||
"clientName": "클라이언트",
|
||||
"flagStr": "플래그",
|
||||
"progress": "진행",
|
||||
"rateToClient": "클라이언트 평가",
|
||||
"rateToPeer": "피어 평가"
|
||||
},
|
||||
"status": {
|
||||
"true": "True",
|
||||
"false": "False"
|
||||
},
|
||||
"priority": {
|
||||
"0": "보통",
|
||||
"1": "높음",
|
||||
"-1": "낮음"
|
||||
},
|
||||
"label": {
|
||||
"name": "이름:",
|
||||
"addedDate": "추가된 시간:",
|
||||
"totalSize": "총 크기:",
|
||||
"completeSize": "완료된 크기:",
|
||||
"leftUntilDone": "남은 크기:",
|
||||
"hashString": "해쉬:",
|
||||
"downloadDir": "다운로드 폴더:",
|
||||
"status": "상태:",
|
||||
"rateDownload": "다운로드 속도:",
|
||||
"rateUpload": "업로드 속도:",
|
||||
"leecherCount": "리처:",
|
||||
"seederCount": "시더:",
|
||||
"uploadedEver": "지금까지 한 업로드:",
|
||||
"uploadRatio": "업로드 비율:",
|
||||
"creator": "생성 클라이언트:",
|
||||
"dateCreated": "제작일:",
|
||||
"comment": "코멘트:",
|
||||
"errorString": "스트링 오류:",
|
||||
"downloadLimited": "다운로드 속도:",
|
||||
"uploadLimited": "업로드 속도:",
|
||||
"peer-limit": "피어 수 제한:",
|
||||
"seedRatioMode": "토렌트 시드 비율:",
|
||||
"seedIdleMode": "토렌트가 오래동안 유휴상태이면, 정지합니다 :",
|
||||
"doneDate": "Finish Time:",
|
||||
"seedTime": "Seed Time:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "다운로드 확인한 파일",
|
||||
"button-deny": "확인 생략한 파일",
|
||||
"button-priority": "우선도 지정",
|
||||
"button-tracker-add": "Add New Tracker",
|
||||
"button-tracker-edit": "Edit Tracker",
|
||||
"button-tracker-remove": "Remove Tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "이 트래커를 제거 하시겠습니까?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "속성 자동 확장"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "알수없음",
|
||||
"text-drop-title": "드래그 엔 드롭으로 토렌트 추가.",
|
||||
"text-saved": "저장됨",
|
||||
"text-nochange": "변경 안됨",
|
||||
"text-info": "정보",
|
||||
"text-confirm": "확실합니까?",
|
||||
"text-browsers-not-support-features": "현재 브라우저는이 기능을 지원하지 않습니다!",
|
||||
"text-download-update": "이 업데이트를 다운로드",
|
||||
"text-have-update": "업데이트를 사용할 수 있습니다",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/nl.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "nl",
|
||||
"author": "Alwin Hummels, Jeroen, vodek3",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "Verbinden...",
|
||||
"connected": "Verbonden",
|
||||
"queue": "Wachtrij:",
|
||||
"queuefinish": "De wachtrij(en) zijn gereed.",
|
||||
"notfinal": "Not final",
|
||||
"checked": "%n data checked:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Data error.",
|
||||
"data-post-error": "Data post error.",
|
||||
"rename-error": "Error renaming file/folder!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Download dir"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Start",
|
||||
"pause": "Pauze",
|
||||
"recheck": "Verifiëren",
|
||||
"start-all": "Start alles",
|
||||
"pause-all": "Pauzeer alles",
|
||||
"remove": "Verwijder",
|
||||
"remove-all": "Verwijder Alles",
|
||||
"remove-data": "Verwijder data",
|
||||
"add-torrent": "Toevoegen",
|
||||
"attribute": "Attribute",
|
||||
"alt-speed": "Alt-Snelheid",
|
||||
"system-config": "Instellingen",
|
||||
"system-reload": "Opnieuw laden",
|
||||
"about": "Over",
|
||||
"reload-time": "Auto-verversen:",
|
||||
"reload-time-unit": "sec",
|
||||
"autoreload-disabled": "Uitgeschakeld",
|
||||
"autoreload-enabled": "Ingeschakeld",
|
||||
"search-prompt": "Zoek Lokale Torrents",
|
||||
"tracker-replace": "Vervang trackers",
|
||||
"queue": "Queue",
|
||||
"ui-mobile": "Mobile UI",
|
||||
"ui-original": "Original UI",
|
||||
"ui-computer": "Desktop UI",
|
||||
"plugin": "Extensions/plugins",
|
||||
"rename": "Rename",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard",
|
||||
"tip": {
|
||||
"start": "Start de geselecteerde torrents",
|
||||
"pause": "Pauzeer de geselecteerde torrents",
|
||||
"recheck": "Verifiëren",
|
||||
"recheck-confirm": "Weet je zeker dat je de geselecteerde torrents wilt Verifiëren? Dit kan enige tijd duren!",
|
||||
"start-all": "Start alles",
|
||||
"pause-all": "Pauzeer alles",
|
||||
"remove": "Verwijderen",
|
||||
"delete-all": "Torrent en data verwijderen",
|
||||
"delete-data": "Delete-data",
|
||||
"add-torrent": "Torrent(s) toevoegen",
|
||||
"attribute": "Attribute",
|
||||
"alt-speed": "Alt-snelheid",
|
||||
"system-config": "Instellingen",
|
||||
"system-reload": "Opnieuw laden",
|
||||
"about": "Over deze app",
|
||||
"autoreload-disabled": "Auto-verversen uitzetten",
|
||||
"autoreload-enabled": "Auto-verversen aanzetten",
|
||||
"tracker-replace": "Vervang trackers",
|
||||
"change-download-dir": "Locatie instellen",
|
||||
"ui-mobile": "Mobiele UI",
|
||||
"ui-original": "Originele UI",
|
||||
"more-peers": "Tracker om meer peers vragen",
|
||||
"rename": "Renaming a Torrent's Path",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Move to top",
|
||||
"move-up": "Move up",
|
||||
"move-down": "Move down",
|
||||
"move-bottom": "Move to bottom"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Automatically matches data directory"
|
||||
},
|
||||
"setLabels": "Set User Labels"
|
||||
},
|
||||
"title": {
|
||||
"left": "Navigatie",
|
||||
"list": "Torrents",
|
||||
"attribute": "Kenmerken",
|
||||
"status": "Status"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Alles",
|
||||
"active": "Actief",
|
||||
"paused": "Gepauzeerd",
|
||||
"downloading": "Downloaden",
|
||||
"sending": "Uploaden",
|
||||
"error": "Fout",
|
||||
"warning": "Waarschuwing",
|
||||
"actively": "Actief",
|
||||
"check": "Controleren",
|
||||
"wait": "Wachten",
|
||||
"search-result": "Zoekresultaat",
|
||||
"status": {
|
||||
"loading": "Bezig met laden..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Statistieken",
|
||||
"cumulative": "Cumulatief",
|
||||
"current": "Huidig",
|
||||
"uploadedBytes": "Geüpload: ",
|
||||
"downloadedBytes": "Gedownload: ",
|
||||
"filesAdded": "Bestanden die zijn toegevoegd: ",
|
||||
"sessionCount": "Sessie teller: ",
|
||||
"secondsActive": "Actief: "
|
||||
},
|
||||
"servers": "Trackers",
|
||||
"folders": "Mappen",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Toon mappen"
|
||||
}
|
||||
},
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Download snelheid:",
|
||||
"uploadspeed": "Upload snelheid:",
|
||||
"version": "Versie:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Downloadmap:",
|
||||
"torrent-url": "Torrent URL:",
|
||||
"tip-torrent-url": "Tip: je kunt meerdere torrents scheiden met 'Enter'",
|
||||
"autostart": "Direct starten:",
|
||||
"set-default-download-dir": "Instellen als standaardmap",
|
||||
"upload-file": "Torrent bestand(en):",
|
||||
"nosource": "Geen torrent bestand of URL.",
|
||||
"tip-title": "Uploaden van het torrent-bestand heeft voorrang boven de URL van de torrent"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Server Instellingen",
|
||||
"tabs": {
|
||||
"base": "Algemeen",
|
||||
"network": "Netwerk",
|
||||
"limit": "Begrenzen",
|
||||
"alt-speed": "Gepland",
|
||||
"dictionary-folders": "Folders Dictionary",
|
||||
"more": "More",
|
||||
"labels": "Labels"
|
||||
},
|
||||
"config-dir": "Locatie van de configuratie directory:",
|
||||
"download-dir": "Standaardpad voor downloaden:",
|
||||
"download-dir-free-space": "Vrije ruimte:",
|
||||
"incomplete-dir-enabled": "Locatie voor onvoltooide bestanden",
|
||||
"cache-size-mb": "Schijf cache grootte:",
|
||||
"rename-partial-files": "Voeg de '.part' extensie toe aan onvoltooide bestanden",
|
||||
"start-added-torrents": "Start toegevoegde torrent automatisch",
|
||||
"download-queue-enabled": "Aantal gelijktijdige downloads:",
|
||||
"seed-queue-enabled": "Aantal gelijktijdige uploads:",
|
||||
"peer-port-random-on-start": "Neem een willekeurige poort als daemon opstart",
|
||||
"port-forwarding-enabled": "Portforwarding ingeschakeld",
|
||||
"test-port": "Test de poort",
|
||||
"port-is-open-true": "De poort is open",
|
||||
"port-is-open-false": "De poort is gesloten",
|
||||
"testing": "Testen...",
|
||||
"encryption": "Encryptie:",
|
||||
"encryption-type": {
|
||||
"required": "Encryptie vereist",
|
||||
"preferred": "Encryptie aan",
|
||||
"tolerated": "Encryptie uit"
|
||||
},
|
||||
"utp-enabled": "Gebruik µTP (UPnP)",
|
||||
"dht-enabled": "Distributed Hash Table (DHT)",
|
||||
"lpd-enabled": "Local Peer Discovery (LPD)",
|
||||
"pex-enabled": "Peer uitwisseling",
|
||||
"peer-limit-global": "Maximum aantal peers:",
|
||||
"peer-limit-per-torrent": "Maximum aantal peers per torrent:",
|
||||
"speed-limit-down-enabled": "Maximum download snelheid:",
|
||||
"speed-limit-up-enabled": "Maximum upload snelheid:",
|
||||
"alt-speed-enabled": "Gebruik alternatieve bandbreedte instellingen",
|
||||
"alt-speed-down": "Maximum download snelheid:",
|
||||
"alt-speed-up": "Maximum upload snelheid:",
|
||||
"alt-speed-time-enabled": "Gebruik tijdschema",
|
||||
"alt-speed-time": "Tijdbestek",
|
||||
"weekday": {
|
||||
"1": "Maandag",
|
||||
"2": "Dinsdag",
|
||||
"3": "Woensdag",
|
||||
"4": "Donderdag",
|
||||
"5": "Vrijdag",
|
||||
"6": "Zaterdag",
|
||||
"0": "Zondag"
|
||||
},
|
||||
"blocklist-enabled": "Blocklist gebruiken",
|
||||
"blocklist-size": "Blocklist has %n rules.",
|
||||
"seedRatioLimited": "Seed ratio:",
|
||||
"queue-stalled-enabled": "Of inactieve torrents als opgehouden moeten worden behandeld:",
|
||||
"idle-seeding-limit-enabled": "Stop seeden wanneer inactief gedurende:",
|
||||
"minutes": "Minuten",
|
||||
"nochange": "Geen wijzigingen",
|
||||
"saving": "Verwerken...",
|
||||
"show-bt-servers": "Show 'BT servers' on Trackers:",
|
||||
"restore-default-settings": "Restore UI Default Settings",
|
||||
"language": "Language:",
|
||||
"loading": "Loading...",
|
||||
"hide-subfolders": "When clicking on the data directory, hide subfolders content in the list:",
|
||||
"simple-check-mode": "Checked only one torrent when you right-click on the torrent list:",
|
||||
"nav-contents": "Navigation bar Display content:",
|
||||
"labels-manage": {
|
||||
"name": "Label Name",
|
||||
"description": "Description",
|
||||
"color": "Color",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Do you want to import labels? This overrides the current configuration."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "OK",
|
||||
"button-cancel": "Annuleren",
|
||||
"button-reload": "Opnieuw laden",
|
||||
"button-save": "Opslaan",
|
||||
"button-close": "Sluiten",
|
||||
"button-update": "Update",
|
||||
"button-config": "Config",
|
||||
"button-addnew": "Add",
|
||||
"button-edit": "Edit",
|
||||
"button-delete": "Delete",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Auteur: culturist <br/> Verklaring: De meeste van de pictogrammen in dit programma komen ergens van internet. Schend dit uw rechten? Neem dan contact met mij op om deze te verwijderen.",
|
||||
"check-update": "Check Update",
|
||||
"home": "Project Home",
|
||||
"help": "Wiki",
|
||||
"donate": "Donate",
|
||||
"pt-plugin": "PT Plugin"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Verwijderen bevestigen",
|
||||
"confirm-text": "Weet je zeker dat je de gemarkeerde torrent(s) wilt verwijderen?",
|
||||
"remove-data": "Verwijder lokale data (data op schijf)",
|
||||
"remove-error": "Verwijderen is mislukt!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Locatie instellen",
|
||||
"old-download-dir": "Oude locatie:",
|
||||
"new-download-dir": "Nieuwe locatie:",
|
||||
"move-data": "Indien aangevinkt, verplaatsen van de vorige locatie. Zo niet, gebruik 'Nieuwe locatie' voor bestanden.",
|
||||
"set-error": "Locatie instellen mislukt!",
|
||||
"recheck-data": "Recheck data."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Vervang Trackers",
|
||||
"old-tracker": "Oude tracker:",
|
||||
"new-tracker": "Nieuwe tracker:",
|
||||
"tip": "Deze functie vindt <b>alle torrent</b> trackers",
|
||||
"not-found": "Tracker is niet gevonden."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Automatically matches data directory",
|
||||
"torrent-count": "Torrent count:",
|
||||
"folder-count": "Folder count:",
|
||||
"dictionary": "Folders Dictionary",
|
||||
"time-begin": "Begin time:",
|
||||
"time-now": "Now:",
|
||||
"status": "Status:",
|
||||
"ignore": "Ignore",
|
||||
"working-close-confirm": "Torrents are currently downloading, are sure you want to close Transmission?",
|
||||
"time-interval": "Time interval (seconds):",
|
||||
"work-mode-title": "Mode:",
|
||||
"work-mode": {
|
||||
"1": "Individually matched by torrent",
|
||||
"2": "Individually matched by folder"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Renaming a Torrent's Path",
|
||||
"oldname": "Old",
|
||||
"newname": "New"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Add Trackers",
|
||||
"tip": "One Line, One Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Set User Labels",
|
||||
"available": "Available:",
|
||||
"selected": "Selected:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Naam",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "Downloadmap",
|
||||
"totalSize": "Totale grootte",
|
||||
"status": "Status",
|
||||
"percentDone": "Gereed",
|
||||
"remainingTime": "Resterende tijd",
|
||||
"addedDate": "Toegevoegd op",
|
||||
"completeSize": "Grootte voltooid",
|
||||
"rateDownload": "Download snelheid",
|
||||
"rateUpload": "Upload snelheid",
|
||||
"leecherCount": "Leecher",
|
||||
"seederCount": "Seeder",
|
||||
"uploadedEver": "Geüpload",
|
||||
"uploadRatio": "Ratio",
|
||||
"queuePosition": "Queue",
|
||||
"activityDate": "Activity Date",
|
||||
"trackers": "Trackers",
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "Gepauzeerd",
|
||||
"1": "Wacht op check",
|
||||
"2": "Verifiëren",
|
||||
"3": "In wachtrij",
|
||||
"4": "Downloaden",
|
||||
"5": "Seeding-wachtwrij",
|
||||
"6": "Seeding"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Algemeen",
|
||||
"servers": "Trackers",
|
||||
"files": "Bestanden",
|
||||
"users": "Peers",
|
||||
"config": "Instellingen"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Naam",
|
||||
"length": "Totale grootte",
|
||||
"percentDone": "Gereed",
|
||||
"bytesCompleted": "Voltooid",
|
||||
"wanted": "Gewenst",
|
||||
"priority": "Prioriteit"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Aangekondigd bij",
|
||||
"announceState": "Status",
|
||||
"lastAnnounceResult": "Info",
|
||||
"lastAnnounceSucceeded": "Geslaagd",
|
||||
"lastAnnounceTime": "Tijd van aankondiging",
|
||||
"lastAnnounceTimedOut": "Time-out",
|
||||
"downloadCount": "Aantal downloads",
|
||||
"nextAnnounceTime": "Volgende aankondiging"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "IP adres",
|
||||
"clientName": "Client",
|
||||
"flagStr": "Flag",
|
||||
"progress": "Voortgang",
|
||||
"rateToClient": "RateToClient",
|
||||
"rateToPeer": "RateToPeer"
|
||||
},
|
||||
"status": {
|
||||
"true": "Ja",
|
||||
"false": "Nee"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Normaal",
|
||||
"1": "Hoog",
|
||||
"-1": "Laag"
|
||||
},
|
||||
"label": {
|
||||
"name": "Naam:",
|
||||
"addedDate": "Toegevoegd op:",
|
||||
"totalSize": "Totale grootte:",
|
||||
"completeSize": "Groote voltooid:",
|
||||
"leftUntilDone": "Over tot voltooid:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "Download dir:",
|
||||
"status": "Status:",
|
||||
"rateDownload": "Downloadsnelheid:",
|
||||
"rateUpload": "Uploadsnelheid:",
|
||||
"leecherCount": "Leecher:",
|
||||
"seederCount": "Seeder:",
|
||||
"uploadedEver": "Geüpload:",
|
||||
"uploadRatio": "Upload Ratio:",
|
||||
"creator": "Maker:",
|
||||
"dateCreated": "Gemaakt op:",
|
||||
"comment": "Commentaar:",
|
||||
"errorString": "Foutmelding(en):",
|
||||
"downloadLimited": "Maximum algemene download snelheid",
|
||||
"uploadLimited": "Maximum algemene upload snelheid",
|
||||
"peer-limit": "Maximum aantal peers per torrent:",
|
||||
"seedRatioMode": "Seed ratio:",
|
||||
"seedIdleMode": "Stop seeden wanneer inactief gedurende:",
|
||||
"doneDate": "Finish Time:",
|
||||
"seedTime": "Seed Time:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Download gemarkeerd(e) bestand(en)",
|
||||
"button-deny": "Gemarkeerd(e) bestand(en) overslaan",
|
||||
"button-priority": "Ingestelde prioriteit",
|
||||
"button-tracker-add": "Add New Tracker",
|
||||
"button-tracker-edit": "Edit Tracker",
|
||||
"button-tracker-remove": "Remove Tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Weet je zeker dat je deze tracker wilt verwijderen?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Automatisch uitvouwen kenmerken"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Onbekend",
|
||||
"text-drop-title": "Bestand Slepen en neerzetten in dit vlak om aan Transmission toe te voegen.",
|
||||
"text-saved": "Opgeslagen",
|
||||
"text-nochange": "Geen verandering",
|
||||
"text-info": "Info",
|
||||
"text-confirm": "Weet je het zeker?",
|
||||
"text-browsers-not-support-features": "Jouw browser ondersteunt deze functie niet!",
|
||||
"text-download-update": "Download deze update",
|
||||
"text-have-update": "Er is een update beschikbaar",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/pl.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "pl",
|
||||
"author": "Daniel Kolek, Piotr Kozica, vodek3, Mark eM",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "Łączenie...",
|
||||
"connected": "Połączono",
|
||||
"queue": "Kolejka:",
|
||||
"queuefinish": "Zakończono kolejkę.",
|
||||
"notfinal": "Nie ukończone",
|
||||
"checked": "Zaznaczone pozycje: %n"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Błąd pobierania danych!",
|
||||
"data-post-error": "Błąd wysyłania danych!",
|
||||
"rename-error": "Błąd zmiany nazwy!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Katalog pobierania"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Start",
|
||||
"pause": "Wstrzymaj",
|
||||
"recheck": "Sprawdź",
|
||||
"start-all": "Pobieraj wszystkie",
|
||||
"pause-all": "Wstrzymaj wszystkie",
|
||||
"remove": "Usuń",
|
||||
"remove-all": "Usuń wszystkie",
|
||||
"remove-data": "Usuń dane",
|
||||
"add-torrent": "Dodaj torrenta",
|
||||
"attribute": "Szczegóły",
|
||||
"alt-speed": "Alternatywna prędkość",
|
||||
"system-config": "Panel konfiguracyjny Transmission",
|
||||
"system-reload": "Odśwież",
|
||||
"about": "O webgui",
|
||||
"reload-time": "Auto odświeżanie:",
|
||||
"reload-time-unit": "sekund",
|
||||
"autoreload-disabled": "Wyłączone",
|
||||
"autoreload-enabled": "Włączone",
|
||||
"search-prompt": "Szukaj w torrentach",
|
||||
"tracker-replace": "Zamień trackery",
|
||||
"queue": "Kolejka",
|
||||
"ui-mobile": "UI Mobilne",
|
||||
"ui-original": "UI Oryginalne",
|
||||
"ui-computer": "UI Desktopowe",
|
||||
"plugin": "Rozszerzenia/wtyczki",
|
||||
"rename": "Zmień nazwę",
|
||||
"copy-path-to-clipboard": "Skopiuj katalog pobierania do schowka",
|
||||
"tip": {
|
||||
"start": "Pobieraj wybrane torrenty",
|
||||
"pause": "Wstrzymaj wybrane torrenty",
|
||||
"recheck": "Sprawdź ponownie wybrane torrenty",
|
||||
"recheck-confirm": "Jesteś pewny, że chcesz ponownie sprawdzić wybrane torrenty? To może zająć trochę czasu!",
|
||||
"start-all": "Pobieraj wszystkie",
|
||||
"pause-all": "Wstrzymaj wszystkie",
|
||||
"remove": "Usuń",
|
||||
"delete-all": "Usuń wszystkie",
|
||||
"delete-data": "Usuń dane",
|
||||
"add-torrent": "Dodaj torrenta",
|
||||
"attribute": "Szczegóły",
|
||||
"alt-speed": "Limituj prędkość pobierania i wysyłania",
|
||||
"system-config": "Panel konfiguracyjny Transmission",
|
||||
"system-reload": "Odśwież",
|
||||
"about": "O aplikacji",
|
||||
"autoreload-disabled": "Wyłącz auto-odświeżanie",
|
||||
"autoreload-enabled": "Włącz auto-odświeżanie",
|
||||
"tracker-replace": "Zamień trackery",
|
||||
"change-download-dir": "Zmień katalog pobierania",
|
||||
"ui-mobile": "Mobilne UI",
|
||||
"ui-original": "Oryginalne UI",
|
||||
"more-peers": "Zapytaj tracker o więcej peerów",
|
||||
"rename": "Zmiana nazwy katalogu",
|
||||
"copy-path-to-clipboard": "Kopiuj katalog pobierania do schowka"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Przesuń na górę",
|
||||
"move-up": "Przesuń wyżej",
|
||||
"move-down": "Przesuń niżej",
|
||||
"move-bottom": "Przesuń na dół"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Automatyczne dopasowanie katalogu"
|
||||
},
|
||||
"setLabels": "Ustaw własne etykiety"
|
||||
},
|
||||
"title": {
|
||||
"left": "Nawigacja",
|
||||
"list": "Torrenty",
|
||||
"attribute": "Szczegóły",
|
||||
"status": "Status"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Wszystkie torrenty",
|
||||
"active": "Aktywne",
|
||||
"paused": "Wstrzymane",
|
||||
"downloading": "Pobierane",
|
||||
"sending": "Wysyłane",
|
||||
"error": "Błędy",
|
||||
"warning": "Ostrzeżenia",
|
||||
"actively": "Aktywne",
|
||||
"check": "Sprawdzane",
|
||||
"wait": "Oczekiwanie",
|
||||
"search-result": "Wyniki wyszukiwania",
|
||||
"status": {
|
||||
"loading": "Ładowanie..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Statystyki",
|
||||
"cumulative": "Ogólne",
|
||||
"current": "Bieżące",
|
||||
"uploadedBytes": "Wysłano:",
|
||||
"downloadedBytes": "Pobrano:",
|
||||
"filesAdded": "Dodane pliki:",
|
||||
"sessionCount": "Ilość sesji:",
|
||||
"secondsActive": "Czas aktywności:"
|
||||
},
|
||||
"servers": "Trackery",
|
||||
"folders": "Katalogi",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Katalogi"
|
||||
}
|
||||
},
|
||||
"labels": "Własne etykiety"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Prędkość pobierania:",
|
||||
"uploadspeed": "Prędkość wysyłania:",
|
||||
"version": "Wersja:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Katalog pobierania:",
|
||||
"torrent-url": "Link do torrenta:",
|
||||
"tip-torrent-url": "Wskazówka: każdy w nowej linii (oddziel klawiszem ENTER)",
|
||||
"autostart": "Uruchom pobieranie:",
|
||||
"set-default-download-dir": "Zapisz jako katalog domyślny",
|
||||
"upload-file": "Pliki torrent:",
|
||||
"nosource": "Brak pliku torrent bądź linka.",
|
||||
"tip-title": "Dodaj plik torrent i rozpocznij pobieranie"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Konfiguracja serwera",
|
||||
"tabs": {
|
||||
"base": "Ogólne",
|
||||
"network": "Sieć",
|
||||
"limit": "Limitowanie prędkości",
|
||||
"alt-speed": "Harmonogram",
|
||||
"dictionary-folders": "Słownik folderów",
|
||||
"more": "Więcej",
|
||||
"labels": "Etykiety"
|
||||
},
|
||||
"config-dir": "Lokalizacja katalogu z konfiguracją Transmission:",
|
||||
"download-dir": "Domyślny katalog pobierania torrentów:",
|
||||
"download-dir-free-space": "Wolne miejsce na dysku:",
|
||||
"incomplete-dir-enabled": "Użyj katalogu dla niedokończonych pobrań",
|
||||
"cache-size-mb": "Wielkość cache'u dysku:",
|
||||
"rename-partial-files": "Dodaj rozszerzenie '.part' do nieukończonych pobrań",
|
||||
"start-added-torrents": "Automatycznie rozpoczynaj pobieranie dodawanych torrentów",
|
||||
"download-queue-enabled": "Włącz kolejkę pobierania, maksymalna ilość kolejek:",
|
||||
"seed-queue-enabled": "Włącz kolejkę wysyłania, maksymalna ilość kolejek:",
|
||||
"peer-port-random-on-start": "Użyj losowego portu podczas uruchamiania",
|
||||
"port-forwarding-enabled": "Włącz przekierowywanie portów",
|
||||
"test-port": "Testuj port",
|
||||
"port-is-open-true": "Port jest otwarty",
|
||||
"port-is-open-false": "Port jest zamknięty",
|
||||
"testing": "Testowanie...",
|
||||
"encryption": "Szyfrowanie:",
|
||||
"encryption-type": {
|
||||
"required": "Wymagane",
|
||||
"preferred": "Preferowane",
|
||||
"tolerated": "Tolerowane"
|
||||
},
|
||||
"utp-enabled": "Włącz µTP (UPnP)",
|
||||
"dht-enabled": "Włącz DHT",
|
||||
"lpd-enabled": "Włącz LPD",
|
||||
"pex-enabled": "Włącz PEX",
|
||||
"peer-limit-global": "Maksymalna ogólna ilość peerów:",
|
||||
"peer-limit-per-torrent": "Maksymalna ilość peerów na torrent:",
|
||||
"speed-limit-down-enabled": "Maksymalna prędkość pobierania:",
|
||||
"speed-limit-up-enabled": "Maksymalna prędkość wysyłania:",
|
||||
"alt-speed-enabled": "Używaj ograniczenia prędkości",
|
||||
"alt-speed-down": "Maksymalna prędkość pobierania:",
|
||||
"alt-speed-up": "Maksymalna prędkość wysyłania:",
|
||||
"alt-speed-time-enabled": "Użyj harmonogramu",
|
||||
"alt-speed-time": "Godziny:",
|
||||
"weekday": {
|
||||
"1": "Poniedziałek",
|
||||
"2": "Wtorek",
|
||||
"3": "Środa",
|
||||
"4": "Czwartek",
|
||||
"5": "Piątek",
|
||||
"6": "Sobota",
|
||||
"0": "Niedziela"
|
||||
},
|
||||
"blocklist-enabled": "Używaj blocklist'y (czarna lista z adresami IP organizacji antypirackich)",
|
||||
"blocklist-size": "Na czarnej liście jest %n reguł",
|
||||
"seedRatioLimited": "Domyślne ratio dla torrentów:",
|
||||
"queue-stalled-enabled": "Bezczynne torrenty będą blokowane po czasie:",
|
||||
"idle-seeding-limit-enabled": "Wysyłanie pobranych torrentów zostanie zatrzymane, jeżeli nikt nie będzie ich pobierał przez:",
|
||||
"minutes": "Minut",
|
||||
"nochange": "Nie dokonano zmian",
|
||||
"saving": "Zapisywanie...",
|
||||
"show-bt-servers": "Pokazuj serwery BT na liście Trackerów:",
|
||||
"restore-default-settings": "Przywróć ustawienia domyślne",
|
||||
"language": "Język:",
|
||||
"loading": "Ładowanie...",
|
||||
"hide-subfolders": "Ukrywaj zawartość folderów nadrzędnych podczas klikania w katalogu z danymi:",
|
||||
"simple-check-mode": "Podczas prawo-kliku na liście torrentów zaznaczaj tylko jedną pozycję:",
|
||||
"nav-contents": "Wyświetlane elementy pasków nawigacji:",
|
||||
"labels-manage": {
|
||||
"name": "Nazwa etykiety",
|
||||
"description": "Opis",
|
||||
"color": "Kolor",
|
||||
"actions": "Akcje",
|
||||
"import-confirm": "Czy na pewno chcesz zaimportować etykiety? Spowoduje to nadpisanie istniejącej konfiguracji."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "OK",
|
||||
"button-cancel": "Anuluj",
|
||||
"button-reload": "Odśwież",
|
||||
"button-save": "Zapisz",
|
||||
"button-close": "Zamknij",
|
||||
"button-update": "Aktualizuj",
|
||||
"button-config": "Konfiguracja",
|
||||
"button-addnew": "Dodaj",
|
||||
"button-edit": "Edytuj",
|
||||
"button-delete": "Usuń",
|
||||
"button-export": "Eksportuj",
|
||||
"button-import": "Importuj"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Autor: culturist, Tłumaczenie: Simplydan<br/>Poprawki + nowe tłumaczenia: vipKoza<br/>Oświadczenie: Jeżeli któraś ikona narusza twoje prawa, skontaktuj się z autorem.",
|
||||
"check-update": "Sprawdź aktualizację",
|
||||
"home": "Strona domowa",
|
||||
"help": "Wiki",
|
||||
"donate": "Dotacja",
|
||||
"pt-plugin": "Plugin PT"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Potwierdź",
|
||||
"confirm-text": "Czy na pewno chcesz usunąć wybrane torrenty?",
|
||||
"remove-data": "Usuń lokalne dane",
|
||||
"remove-error": "Usuwanie nie powiodło się!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Ustaw nowy katalog pobierania dla tego torrenta",
|
||||
"old-download-dir": "Stary katalog:",
|
||||
"new-download-dir": "Nowy katalog:",
|
||||
"move-data": "Przenieś pobrane pliki do nowej lokalizacji",
|
||||
"set-error": "Błąd!",
|
||||
"recheck-data": "Ponownie sprawdź pobrane dane"
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Zmiana trackerów",
|
||||
"old-tracker": "Stary tracker:",
|
||||
"new-tracker": "Nowy tracker:",
|
||||
"tip": "Ta funkcja znajdzie i zamieni trackery we <b>wszystkich torrentach!</b>",
|
||||
"not-found": "Tracker nie został znaleziony."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Automatyczne dopasowanie katalogu z danymi",
|
||||
"torrent-count": "Liczba torrentów:",
|
||||
"folder-count": "Liczba folderów:",
|
||||
"dictionary": "Plik słownika",
|
||||
"time-begin": "Czas rozpoczęcia:",
|
||||
"time-now": "Teraz:",
|
||||
"status": "Stan:",
|
||||
"ignore": "Ignoruj",
|
||||
"working-close-confirm": "Operacja pobierania w trakcie, czy na pewno chcesz ją zatrzymać?",
|
||||
"time-interval": "Odstęp czasu (sekundy):",
|
||||
"work-mode-title": "Tryb:",
|
||||
"work-mode": {
|
||||
"1": "Dopasowanie według torrenta",
|
||||
"2": "Dopasowanie według folderu"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Zmiana nazwy katalogu",
|
||||
"oldname": "Stary:",
|
||||
"newname": "Nowy:"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Dodaj trackery",
|
||||
"tip": "Jedna linia - jeden Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Ustaw własne etykiety",
|
||||
"available": "Dostępne:",
|
||||
"selected": "Wybrane:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Nazwa",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "Katalog pobierania",
|
||||
"totalSize": "Rozmiar",
|
||||
"status": "Status",
|
||||
"percentDone": "Ukończono",
|
||||
"remainingTime": "Pozostały czas",
|
||||
"addedDate": "Data dodania",
|
||||
"completeSize": "Pobrano",
|
||||
"rateDownload": "Prędkość pobierania",
|
||||
"rateUpload": "Prędkość wysyłania",
|
||||
"leecherCount": "Peerów",
|
||||
"seederCount": "Seedów",
|
||||
"uploadedEver": "Wysłano",
|
||||
"uploadRatio": "Ratio",
|
||||
"queuePosition": "Kolejka",
|
||||
"activityDate": "Ostatnia aktywność",
|
||||
"trackers": "Trackery",
|
||||
"labels": "Własne etykiety"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "Wstrzymano",
|
||||
"1": "Oczekiwanie na sprawdzenie",
|
||||
"2": "Sprawdzanie",
|
||||
"3": "Oczekiwanie na pobieranie",
|
||||
"4": "Pobieranie",
|
||||
"5": "Oczekiwanie na seeda",
|
||||
"6": "Wysyłanie"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Ogólne",
|
||||
"servers": "Trackery",
|
||||
"files": "Pliki",
|
||||
"users": "Peery",
|
||||
"config": "Konfiguracja"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Nazwa",
|
||||
"length": "Rozmiar",
|
||||
"percentDone": "Ukończono",
|
||||
"bytesCompleted": "Pobrano",
|
||||
"wanted": "Pobierać?",
|
||||
"priority": "Priorytet"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Tracker",
|
||||
"announceState": "Status",
|
||||
"lastAnnounceResult": "Status połączenia z trackerem",
|
||||
"lastAnnounceSucceeded": "Udane połączenie",
|
||||
"lastAnnounceTime": "Godzina połączenia",
|
||||
"lastAnnounceTimedOut": "Timeout",
|
||||
"downloadCount": "Ilość pobrań",
|
||||
"nextAnnounceTime": "Następne połączenie"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "Adres IP",
|
||||
"clientName": "Klient",
|
||||
"flagStr": "Flaga",
|
||||
"progress": "%",
|
||||
"rateToClient": "Prędkość pobierania",
|
||||
"rateToPeer": "Prędkość wysyłania"
|
||||
},
|
||||
"status": {
|
||||
"true": "Tak",
|
||||
"false": " - "
|
||||
},
|
||||
"priority": {
|
||||
"0": "Normalny",
|
||||
"1": "Wysoki",
|
||||
"-1": "Niski"
|
||||
},
|
||||
"label": {
|
||||
"name": "Nazwa:",
|
||||
"addedDate": "Data dodania:",
|
||||
"totalSize": "Rozmiar:",
|
||||
"completeSize": "Pobrano:",
|
||||
"leftUntilDone": "Pozostało do pobrania:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "Katalog pobierania:",
|
||||
"status": "Status:",
|
||||
"rateDownload": "Prędkość pobierania:",
|
||||
"rateUpload": "Prędkość wysyłania:",
|
||||
"leecherCount": "Ilość peerów:",
|
||||
"seederCount": "Ilość seedów:",
|
||||
"uploadedEver": "Wysłano:",
|
||||
"uploadRatio": "Ratio:",
|
||||
"creator": "Autor:",
|
||||
"dateCreated": "Data utworzenia:",
|
||||
"comment": "Komentarz:",
|
||||
"errorString": "Błąd:",
|
||||
"downloadLimited": "Maksymalna prędkość pobierania:",
|
||||
"uploadLimited": "Maksymalna prędkość wysyłania:",
|
||||
"peer-limit": "Maksymalna ilość peerów na torrent:",
|
||||
"seedRatioMode": "Ratio do wyseedowania dla tego torrenta:",
|
||||
"seedIdleMode": "Wysyłanie torrenta zostanie zatrzymane, jeżeli nie będzie wysyłany przez (minut):",
|
||||
"doneDate": "Czas zakończenia:",
|
||||
"seedTime": "Czas 'wysiewu':"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Pobierz sprawdzone pliki",
|
||||
"button-deny": "Pomiń sprawdzone pliki",
|
||||
"button-priority": "Ustaw priorytet",
|
||||
"button-tracker-add": "Dodaj nowy tracker",
|
||||
"button-tracker-edit": "Edytuj tracker",
|
||||
"button-tracker-remove": "Usuń tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Czy na pewno chcesz usunąć ten tracker?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Automatycznie rozwijaj szczegóły"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Nieznany",
|
||||
"text-drop-title": "Przerzuć z komputera plik o rozszerzeniu *.torrent metodą 'przeciągnij i upuść' (drag&drop) w podświetlony obszar jakbyś kopiował pliki pomiędzy katalogami na komputerze",
|
||||
"text-saved": "Zapisano",
|
||||
"text-nochange": "Nie dokonano zmian",
|
||||
"text-info": "Informacje",
|
||||
"text-confirm": "Jesteś pewny?",
|
||||
"text-browsers-not-support-features": "Ta przeglądarka nie obsługuje tej funkcji!",
|
||||
"text-download-update": "Pobierz tę aktualizację",
|
||||
"text-have-update": "Dostępna jest aktualizacja",
|
||||
"text-on": "WŁ",
|
||||
"text-off": "WYŁ",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/pt_BR.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "pt-BR",
|
||||
"author": "Dudu Maroja, pcgaldo, vodek3, Brivaldo Junior, DarkAlexWang",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "Conectando...",
|
||||
"connected": "Conectado",
|
||||
"queue": "Fila:",
|
||||
"queuefinish": "Fila(s) encerrada(s)",
|
||||
"notfinal": "Não final",
|
||||
"checked": "%n data checked:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Erro de dados.",
|
||||
"data-post-error": "Erro de dados Post.",
|
||||
"rename-error": "Error renaming file/folder!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Dir de download"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Iniciar",
|
||||
"pause": "Pausar",
|
||||
"recheck": "Verificar",
|
||||
"start-all": "Iniciar todos",
|
||||
"pause-all": "Pausar todos",
|
||||
"remove": "Remover",
|
||||
"remove-all": "Remover todos",
|
||||
"remove-data": "Remover arquivos",
|
||||
"add-torrent": "Adicionar Torrent",
|
||||
"attribute": "Atributos",
|
||||
"alt-speed": "Velocidade alternativa",
|
||||
"system-config": "Configurações",
|
||||
"system-reload": "Recarregar",
|
||||
"about": "Sobre",
|
||||
"reload-time": "Auto recarregar:",
|
||||
"reload-time-unit": "segundos",
|
||||
"autoreload-disabled": "desabilitado",
|
||||
"autoreload-enabled": "habilitado",
|
||||
"search-prompt": "Procurar Torrents locais",
|
||||
"tracker-replace": "Repor trackers",
|
||||
"queue": "Fila",
|
||||
"ui-mobile": "IU Mobile",
|
||||
"ui-original": "IU Original",
|
||||
"ui-computer": "IU Escritório",
|
||||
"plugin": "Extensions/plugins",
|
||||
"rename": "Rename",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard",
|
||||
"tip": {
|
||||
"start": "Iniciar Torrents marcados",
|
||||
"pause": "Pausar Torrents marcados",
|
||||
"recheck": "Verificar Torrents marcados",
|
||||
"recheck-confirm": "Tem certeza de comprovar estes torrents? Isso pode levar algum tempo!",
|
||||
"start-all": "Iniciar todos",
|
||||
"pause-all": "Pausar todos",
|
||||
"remove": "Remover",
|
||||
"delete-all": "Eliminar todos",
|
||||
"delete-data": "Eliminar arquivos",
|
||||
"add-torrent": "Adicionar torrent(s)",
|
||||
"attribute": "Atributos",
|
||||
"alt-speed": "Velocidade alternativa",
|
||||
"system-config": "Configuração",
|
||||
"system-reload": "Recarregar",
|
||||
"about": "Sobre este aplicativo",
|
||||
"autoreload-disabled": "Auto recarregar desligado",
|
||||
"autoreload-enabled": "Auto recarregar ligado",
|
||||
"tracker-replace": "Repôr os trackers",
|
||||
"change-download-dir": "Modificar o destino",
|
||||
"ui-mobile": "Interface Mobile",
|
||||
"ui-original": "Interface Web",
|
||||
"more-peers": "Pedir mais peers ao Traker",
|
||||
"rename": "Renaming a Torrent's Path",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Mover para o início",
|
||||
"move-up": "Mover para cima",
|
||||
"move-down": "Mover para baixo",
|
||||
"move-bottom": "Mover para o final"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Combinar automaticamente diretório de dados"
|
||||
},
|
||||
"setLabels": "Set User Labels"
|
||||
},
|
||||
"title": {
|
||||
"left": "Navegação",
|
||||
"list": "Torrents",
|
||||
"attribute": "Atributos",
|
||||
"status": "Estado"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Todos",
|
||||
"active": "Ativos",
|
||||
"paused": "Pausados",
|
||||
"downloading": "Baixando",
|
||||
"sending": "Enviando",
|
||||
"error": "Erro",
|
||||
"warning": "Aviso",
|
||||
"actively": "Ativos",
|
||||
"check": "Verificando",
|
||||
"wait": "Espera",
|
||||
"search-result": "Resultados da busca",
|
||||
"status": {
|
||||
"loading": "Carregando..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Estatísticas",
|
||||
"cumulative": "Acumuladas",
|
||||
"current": "Atual",
|
||||
"uploadedBytes": "Enviados: ",
|
||||
"downloadedBytes": "Baixados: ",
|
||||
"filesAdded": "Arquivos adicinados: ",
|
||||
"sessionCount": "Contagem de sessões: ",
|
||||
"secondsActive": "Tempo ativo: "
|
||||
},
|
||||
"servers": "Trackers",
|
||||
"folders": "Pastas",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Pastas"
|
||||
}
|
||||
},
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Velocidade de download:",
|
||||
"uploadspeed": "Velocidade de envio:",
|
||||
"version": "Versão:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Diretório de download:",
|
||||
"torrent-url": "URL do Torrent:",
|
||||
"tip-torrent-url": "Dica: separe por linhas (Enter) múltiplos links para adicioná-los de uma só vez",
|
||||
"autostart": "Auto iniciar:",
|
||||
"set-default-download-dir": "Diretório padrão",
|
||||
"upload-file": "Arquivos Torrent:",
|
||||
"nosource": "Nenhum arquivo ou url Torrent.",
|
||||
"tip-title": "Arquivos Torrent têm preferência sobre URLs"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Configuração do servidor",
|
||||
"tabs": {
|
||||
"base": "Base",
|
||||
"network": "Rede",
|
||||
"limit": "Limite",
|
||||
"alt-speed": "Agendamento",
|
||||
"dictionary-folders": "Dicionário de pastas",
|
||||
"more": "More",
|
||||
"labels": "Labels"
|
||||
},
|
||||
"config-dir": "Local do arquivo de configuração do Transmission:",
|
||||
"download-dir": "Diretório padrão de download:",
|
||||
"download-dir-free-space": "Espaço livre:",
|
||||
"incomplete-dir-enabled": "Usar diretório de arquivos incompletos",
|
||||
"cache-size-mb": "Tamanho de cache de disco:",
|
||||
"rename-partial-files": "Adicinar '.part' aos arquivos incompletos",
|
||||
"start-added-torrents": "Iniciar torrents adicionados automaticamente",
|
||||
"download-queue-enabled": "Numero máximo de downloads na fila:",
|
||||
"seed-queue-enabled": "Número máximo de seeds na fila:",
|
||||
"peer-port-random-on-start": "Usar porta aleatória ao iniciar",
|
||||
"port-forwarding-enabled": "Habilitar redirecionamento de portas",
|
||||
"test-port": "Verificar porta",
|
||||
"port-is-open-true": "A porta está aberta",
|
||||
"port-is-open-false": "A porta está fechada",
|
||||
"testing": "Verificando...",
|
||||
"encryption": "Encriptação:",
|
||||
"encryption-type": {
|
||||
"required": "Somente encriptada",
|
||||
"preferred": "Prefencialmente encriptada",
|
||||
"tolerated": "Qualquer conexão"
|
||||
},
|
||||
"utp-enabled": "µTP (UPnP) habilitado",
|
||||
"dht-enabled": "DHT habilitado",
|
||||
"lpd-enabled": "LPD habilitado",
|
||||
"pex-enabled": "PEX habilitado",
|
||||
"peer-limit-global": "Número máximo de peers por conexão:",
|
||||
"peer-limit-per-torrent": "Número máximo de peers por Torrent:",
|
||||
"speed-limit-down-enabled": "Velocidade de download global:",
|
||||
"speed-limit-up-enabled": "Velocidade de envio global:",
|
||||
"alt-speed-enabled": "Usar velocidade alternativa",
|
||||
"alt-speed-down": "Velocidade de download global:",
|
||||
"alt-speed-up": "Velocidade de envio global:",
|
||||
"alt-speed-time-enabled": "Usar agendamento",
|
||||
"alt-speed-time": "Tempo:",
|
||||
"weekday": {
|
||||
"1": "Segunda",
|
||||
"2": "Terça",
|
||||
"3": "Quarta",
|
||||
"4": "Quinta",
|
||||
"5": "Sexta",
|
||||
"6": "Sábado",
|
||||
"0": "Domingo"
|
||||
},
|
||||
"blocklist-enabled": "Usar lista de bloqueio",
|
||||
"blocklist-size": "Lista de bloqueio tem %n regra(s).",
|
||||
"seedRatioLimited": "Taxa máxima de Seeds:",
|
||||
"queue-stalled-enabled": "Considerar Torrents inativos como parados:",
|
||||
"idle-seeding-limit-enabled": "Semeamento de Torrents parará se ficam inativos por:",
|
||||
"minutes": "Minutos",
|
||||
"nochange": "Sem mudanças",
|
||||
"saving": "Salvando...",
|
||||
"show-bt-servers": "Show 'BT servers' on Trackers:",
|
||||
"restore-default-settings": "Restore UI Default Settings",
|
||||
"language": "Language:",
|
||||
"loading": "Loading...",
|
||||
"hide-subfolders": "When clicking on the data directory, hide subfolders content in the list:",
|
||||
"simple-check-mode": "Checked only one torrent when you right-click on the torrent list:",
|
||||
"nav-contents": "Navigation bar Display content:",
|
||||
"labels-manage": {
|
||||
"name": "Label Name",
|
||||
"description": "Description",
|
||||
"color": "Color",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Do you want to import labels? This overrides the current configuration."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "Aceptar",
|
||||
"button-cancel": "Cancelar",
|
||||
"button-reload": "Recarregar",
|
||||
"button-save": "Salvar",
|
||||
"button-close": "Fechar",
|
||||
"button-update": "Atualizar",
|
||||
"button-config": "Configurações",
|
||||
"button-addnew": "Add",
|
||||
"button-edit": "Edit",
|
||||
"button-delete": "Delete",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Autor: culturist<br/>Aviso: A maioria dos icones usados foram encontrados pela net. Para retirar algum conteúdo, por favor contate o autor.",
|
||||
"check-update": "Comprovar atualizações",
|
||||
"home": "Project Home",
|
||||
"help": "Wiki",
|
||||
"donate": "Donate",
|
||||
"pt-plugin": "PT Plugin"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Confimar a eliminação",
|
||||
"confirm-text": "Tem certeza de querer eliminar os torrents selecionados?",
|
||||
"remove-data": "Eliminar os dados baixados",
|
||||
"remove-error": "Erro ao eliminar!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Escolha um novo diretório",
|
||||
"old-download-dir": "Antigo diretório:",
|
||||
"new-download-dir": "Novo diretório:",
|
||||
"move-data": "Se marcado, mover da localização anterior. Caso contrário, procura 'Novo diretório' para os arquivos.",
|
||||
"set-error": "Erro!",
|
||||
"recheck-data": "Verificar dados novamente."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Substituir trackers",
|
||||
"old-tracker": "Antigo tracker:",
|
||||
"new-tracker": "Novo tracker:",
|
||||
"tip": "Esta função pode substituir trackers de todos os Torrents.",
|
||||
"not-found": "Tracker não encontrado."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Combina automaticamente o diretório de dados",
|
||||
"torrent-count": "Contagem de Torrents:",
|
||||
"folder-count": "Contagem de pastas:",
|
||||
"dictionary": "Dicionário de pastas",
|
||||
"time-begin": "Horário de início",
|
||||
"time-now": "Agora:",
|
||||
"status": "Estado:",
|
||||
"ignore": "Ignorar",
|
||||
"working-close-confirm": "Está trabalhando, tem certeza de fechar?",
|
||||
"time-interval": "Intervalo de tempo (segundos):",
|
||||
"work-mode-title": "Modo:",
|
||||
"work-mode": {
|
||||
"1": "Combinação individual por torrent",
|
||||
"2": "Combinação individual por pasta"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Renaming a Torrent's Path",
|
||||
"oldname": "Old",
|
||||
"newname": "New"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Add Trackers",
|
||||
"tip": "One Line, One Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Set User Labels",
|
||||
"available": "Available:",
|
||||
"selected": "Selected:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Nome",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "Dir de download",
|
||||
"totalSize": "Tamanho total",
|
||||
"status": "Estado",
|
||||
"percentDone": "Completo",
|
||||
"remainingTime": "Tempo restante",
|
||||
"addedDate": "Data de adição",
|
||||
"completeSize": "Tamanho completo",
|
||||
"rateDownload": "Taxa de download",
|
||||
"rateUpload": "Taxa de envio",
|
||||
"leecherCount": "Leechs",
|
||||
"seederCount": "Seeds",
|
||||
"uploadedEver": "Total enviado",
|
||||
"uploadRatio": "Proporção",
|
||||
"queuePosition": "Queue",
|
||||
"activityDate": "Activity Date",
|
||||
"trackers": "Trackers",
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "Pausado",
|
||||
"1": "Aguardando verificação",
|
||||
"2": "Comprovando",
|
||||
"3": "Aguardando download",
|
||||
"4": "Descarregando",
|
||||
"5": "Aguardando semeamento",
|
||||
"6": "Semeando"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Base",
|
||||
"servers": "Trackers",
|
||||
"files": "Arquivos",
|
||||
"users": "Peers",
|
||||
"config": "Configuração"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Nome",
|
||||
"length": "Tamanho",
|
||||
"percentDone": "Concluído",
|
||||
"bytesCompleted": "Tamanho completo",
|
||||
"wanted": "Procurado",
|
||||
"priority": "Prioridade"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Anúncio",
|
||||
"announceState": "Estado",
|
||||
"lastAnnounceResult": "Info",
|
||||
"lastAnnounceSucceeded": "Sucesso",
|
||||
"lastAnnounceTime": "Anúncio",
|
||||
"lastAnnounceTimedOut": "Tempo limite",
|
||||
"downloadCount": "Contagem de download",
|
||||
"nextAnnounceTime": "Próximo anúncio"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "IP address",
|
||||
"clientName": "Cliente",
|
||||
"flagStr": "Flag",
|
||||
"progress": "Progresso",
|
||||
"rateToClient": "Vel de download",
|
||||
"rateToPeer": "Vel de envio"
|
||||
},
|
||||
"status": {
|
||||
"true": "Verdadeiro",
|
||||
"false": "Falso"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Normal",
|
||||
"1": "Alto",
|
||||
"-1": "Baixo"
|
||||
},
|
||||
"label": {
|
||||
"name": "Nome:",
|
||||
"addedDate": "Data de adição:",
|
||||
"totalSize": "Tamanho completo:",
|
||||
"completeSize": "Tamanho completo:",
|
||||
"leftUntilDone": "Tempo estimado:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "Dir download:",
|
||||
"status": "Estado:",
|
||||
"rateDownload": "Vel de download:",
|
||||
"rateUpload": "Vel de envio:",
|
||||
"leecherCount": "Leechers:",
|
||||
"seederCount": "Seeds:",
|
||||
"uploadedEver": "Total enviado:",
|
||||
"uploadRatio": "Proporção de envio:",
|
||||
"creator": "Criador:",
|
||||
"dateCreated": "Data de criação:",
|
||||
"comment": "Comentário:",
|
||||
"errorString": "Erro de String:",
|
||||
"downloadLimited": "Velocidade máxima de download:",
|
||||
"uploadLimited": "Velocidade máxima de upload:",
|
||||
"peer-limit": "Número máximo de peers por torrent:",
|
||||
"seedRatioMode": "Proporção de upload:",
|
||||
"seedIdleMode": "Semeamento será interrompido se inativos por:",
|
||||
"doneDate": "Finish Time:",
|
||||
"seedTime": "Seed Time:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Baixar arquivos selecionados",
|
||||
"button-deny": "Ignorar arquivos selecionados",
|
||||
"button-priority": "Definir prioridade",
|
||||
"button-tracker-add": "Add New Tracker",
|
||||
"button-tracker-edit": "Edit Tracker",
|
||||
"button-tracker-remove": "Remove Tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Tem certeza que deseja eliminar este tracker?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Expandir atributos automaticamente"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Desconhecido",
|
||||
"text-drop-title": "Arraste o arquivo do Torrent para esta área para adicionar ele ao transmission.",
|
||||
"text-saved": "Salvo",
|
||||
"text-nochange": "Sem alterações",
|
||||
"text-info": "Info",
|
||||
"text-confirm": "Tem certeza?",
|
||||
"text-browsers-not-support-features": "O navegador atual não suporta esta função!",
|
||||
"text-download-update": "Baixe esta atualização",
|
||||
"text-have-update": "Há uma atualização disponível",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/pt_PT.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "pt-PT",
|
||||
"author": "pcgaldo, vodek3",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "A conectar...",
|
||||
"connected": "Conectado",
|
||||
"queue": "Fila:",
|
||||
"queuefinish": "Fila(s) encerrada(s)",
|
||||
"notfinal": "Não final",
|
||||
"checked": "%n data checked:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Erro de dados.",
|
||||
"data-post-error": "Erro de dados Post.",
|
||||
"rename-error": "Error renaming file/folder!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Dir de descarga"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Iniciar",
|
||||
"pause": "Pausar",
|
||||
"recheck": "Verificar",
|
||||
"start-all": "Iniciar todos",
|
||||
"pause-all": "Pausar todos",
|
||||
"remove": "Remover",
|
||||
"remove-all": "Remover todos",
|
||||
"remove-data": "Remover ficheiros",
|
||||
"add-torrent": "Adicionar Torrent",
|
||||
"attribute": "Atributos",
|
||||
"alt-speed": "Velocidade alternativa",
|
||||
"system-config": "Configurações",
|
||||
"system-reload": "Recarregar",
|
||||
"about": "Sobre",
|
||||
"reload-time": "Auto recarregar:",
|
||||
"reload-time-unit": "segundos",
|
||||
"autoreload-disabled": "desabilitado",
|
||||
"autoreload-enabled": "habilitado",
|
||||
"search-prompt": "Procurar Torrents locais",
|
||||
"tracker-replace": "Repor trackers",
|
||||
"queue": "Fila",
|
||||
"ui-mobile": "IU Mobile",
|
||||
"ui-original": "IU Original",
|
||||
"ui-computer": "IU Escritório",
|
||||
"plugin": "Extensions/plugins",
|
||||
"rename": "Rename",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard",
|
||||
"tip": {
|
||||
"start": "Iniciar os Torrents marcados",
|
||||
"pause": "Pausar os Torrents marcados",
|
||||
"recheck": "Verificar os Torrents marcados",
|
||||
"recheck-confirm": "Tens certeza de comprovar estes torrents? Isso pode levar algum tempo!",
|
||||
"start-all": "Iniciar todos",
|
||||
"pause-all": "Pausar todos",
|
||||
"remove": "Remover",
|
||||
"delete-all": "Eliminar todos",
|
||||
"delete-data": "Eliminar ficheiros",
|
||||
"add-torrent": "Adicionar torrent(s)",
|
||||
"attribute": "Atributos",
|
||||
"alt-speed": "Velocidade alternativa",
|
||||
"system-config": "Configuração",
|
||||
"system-reload": "Recarregar",
|
||||
"about": "Sobre este aplicativo",
|
||||
"autoreload-disabled": "Auto recarregar desligado",
|
||||
"autoreload-enabled": "Auto recarregar ligado",
|
||||
"tracker-replace": "Repôr os trackers",
|
||||
"change-download-dir": "Modificar o destino",
|
||||
"ui-mobile": "Interface Mobile",
|
||||
"ui-original": "Interface Web",
|
||||
"more-peers": "Pedir mais peers ao Traker",
|
||||
"rename": "Renaming a Torrent's Path",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Mover para o início",
|
||||
"move-up": "Mover para cima",
|
||||
"move-down": "Mover para baixo",
|
||||
"move-bottom": "Mover para o final"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Combinar automaticamente o diretório de dados"
|
||||
},
|
||||
"setLabels": "Set User Labels"
|
||||
},
|
||||
"title": {
|
||||
"left": "Navegação",
|
||||
"list": "Torrents",
|
||||
"attribute": "Atributos",
|
||||
"status": "Estado"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Todos",
|
||||
"active": "Ativos",
|
||||
"paused": "Pausados",
|
||||
"downloading": "Baixando",
|
||||
"sending": "Enviando",
|
||||
"error": "Erro",
|
||||
"warning": "Aviso",
|
||||
"actively": "Ativos",
|
||||
"check": "Verificando",
|
||||
"wait": "Espera",
|
||||
"search-result": "Resultados da busca",
|
||||
"status": {
|
||||
"loading": "A carregar..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Estatísticas",
|
||||
"cumulative": "Acumuladas",
|
||||
"current": "Atual",
|
||||
"uploadedBytes": "Enviados: ",
|
||||
"downloadedBytes": "Baixados: ",
|
||||
"filesAdded": "Ficheiros adicinados: ",
|
||||
"sessionCount": "Contagem de sessões: ",
|
||||
"secondsActive": "Tempo ativo: "
|
||||
},
|
||||
"servers": "Trackers",
|
||||
"folders": "Pastas",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Pastas"
|
||||
}
|
||||
},
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Velocidade de descarga:",
|
||||
"uploadspeed": "Velocidade de envio:",
|
||||
"version": "Versão:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Diretório de descarga:",
|
||||
"torrent-url": "URL do Torrent:",
|
||||
"tip-torrent-url": "Dica: separa por linhas (Enter) múltiplas ligações para adicioná-las de uma só vez",
|
||||
"autostart": "Auto iniciar:",
|
||||
"set-default-download-dir": "Diretório padrão",
|
||||
"upload-file": "Ficheiros Torrent:",
|
||||
"nosource": "Nenhum ficheiro ou url Torrent.",
|
||||
"tip-title": "Os ficheiros Torrent têm preferência sobre URLs"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Configuração do servidor",
|
||||
"tabs": {
|
||||
"base": "Base",
|
||||
"network": "Rede",
|
||||
"limit": "Limite",
|
||||
"alt-speed": "Agendamento",
|
||||
"dictionary-folders": "Dicionário de pastas",
|
||||
"more": "More",
|
||||
"labels": "Labels"
|
||||
},
|
||||
"config-dir": "Local do ficheiro de configuração do Transmission:",
|
||||
"download-dir": "Diretório padrão de descarga:",
|
||||
"download-dir-free-space": "Espaço livre:",
|
||||
"incomplete-dir-enabled": "Usar diretório de ficheiros incompletos",
|
||||
"cache-size-mb": "Tamanho de caché de disco:",
|
||||
"rename-partial-files": "Adicinar '.part' aos ficheiros incompletos",
|
||||
"start-added-torrents": "Iniciar torrents adicionados automaticamente",
|
||||
"download-queue-enabled": "Numero máximo de descargas na fila:",
|
||||
"seed-queue-enabled": "Número máximo de seeds na fila:",
|
||||
"peer-port-random-on-start": "Usar porta aleatória ao iniciar",
|
||||
"port-forwarding-enabled": "Habilitar o redirecionamento de portas",
|
||||
"test-port": "Verificar a porta",
|
||||
"port-is-open-true": "A porta está aberta",
|
||||
"port-is-open-false": "A porta está fechada",
|
||||
"testing": "A verificar...",
|
||||
"encryption": "Encriptação:",
|
||||
"encryption-type": {
|
||||
"required": "Somente encriptada",
|
||||
"preferred": "Prefencialmente encriptada",
|
||||
"tolerated": "Qualquer conexão"
|
||||
},
|
||||
"utp-enabled": "µTP (UPnP) habilitado",
|
||||
"dht-enabled": "DHT habilitado",
|
||||
"lpd-enabled": "LPD habilitado",
|
||||
"pex-enabled": "PEX habilitado",
|
||||
"peer-limit-global": "Número máximo de peers por conexão:",
|
||||
"peer-limit-per-torrent": "Número máximo de peers por Torrent:",
|
||||
"speed-limit-down-enabled": "Velocidade de descarga global:",
|
||||
"speed-limit-up-enabled": "Velocidade de envio global:",
|
||||
"alt-speed-enabled": "Usar velocidade alternativa",
|
||||
"alt-speed-down": "Velocidade de descarga global:",
|
||||
"alt-speed-up": "Velocidade de envio global:",
|
||||
"alt-speed-time-enabled": "Usar agendamento",
|
||||
"alt-speed-time": "Tempo:",
|
||||
"weekday": {
|
||||
"1": "Segunda",
|
||||
"2": "Terça",
|
||||
"3": "Quarta",
|
||||
"4": "Quinta",
|
||||
"5": "Sexta",
|
||||
"6": "Sábado",
|
||||
"0": "Domingo"
|
||||
},
|
||||
"blocklist-enabled": "Usar lista de bloqueio",
|
||||
"blocklist-size": "A lista de bloqueio tem %n regra(s).",
|
||||
"seedRatioLimited": "Taxa máxima de Seeds:",
|
||||
"queue-stalled-enabled": "Considerar os Torrents inativos como parados:",
|
||||
"idle-seeding-limit-enabled": "O semeamento dos Torrents parará se ficam inativos por:",
|
||||
"minutes": "Minutos",
|
||||
"nochange": "Sem mudanças",
|
||||
"saving": "A salvar...",
|
||||
"show-bt-servers": "Show 'BT servers' on Trackers:",
|
||||
"restore-default-settings": "Restore UI Default Settings",
|
||||
"language": "Language:",
|
||||
"loading": "Loading...",
|
||||
"hide-subfolders": "When clicking on the data directory, hide subfolders content in the list:",
|
||||
"simple-check-mode": "Checked only one torrent when you right-click on the torrent list:",
|
||||
"nav-contents": "Navigation bar Display content:",
|
||||
"labels-manage": {
|
||||
"name": "Label Name",
|
||||
"description": "Description",
|
||||
"color": "Color",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Do you want to import labels? This overrides the current configuration."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "Aceptar",
|
||||
"button-cancel": "Cancelar",
|
||||
"button-reload": "Recarregar",
|
||||
"button-save": "Salvar",
|
||||
"button-close": "Fechar",
|
||||
"button-update": "Atualizar",
|
||||
"button-config": "Configurações",
|
||||
"button-addnew": "Add",
|
||||
"button-edit": "Edit",
|
||||
"button-delete": "Delete",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Autor: culturist<br/>Aviso: A maioria dos icones usados foram encontrados pela net. Para retirar algum conteúdo, por favor contata o autor.",
|
||||
"check-update": "Comprovar atualizações",
|
||||
"home": "Project Home",
|
||||
"help": "Wiki",
|
||||
"donate": "Donate",
|
||||
"pt-plugin": "PT Plugin"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Confimar a eliminação",
|
||||
"confirm-text": "Tens certeza de querer eliminar os torrents selecionados?",
|
||||
"remove-data": "Eliminar os dados baixados",
|
||||
"remove-error": "Erro ao eliminar!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Escolhe um novo diretório",
|
||||
"old-download-dir": "Antigo diretório:",
|
||||
"new-download-dir": "Novo diretório:",
|
||||
"move-data": "Se marcado, mover da localização anterior. Caso contrário, procura 'Novo diretório' para os ficheiros.",
|
||||
"set-error": "Erro!",
|
||||
"recheck-data": "Verificar novamente os dados."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Substituir trackers",
|
||||
"old-tracker": "Antigo tracker:",
|
||||
"new-tracker": "Novo tracker:",
|
||||
"tip": "Esta função pode substituir trackers de todos os Torrents.",
|
||||
"not-found": "Tracker não encontrado."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Combina automaticamente o diretório de dados",
|
||||
"torrent-count": "Contagem de Torrents:",
|
||||
"folder-count": "Contagem de pastas:",
|
||||
"dictionary": "Dicionário de pastas",
|
||||
"time-begin": "Horário de início",
|
||||
"time-now": "Agora:",
|
||||
"status": "Estado:",
|
||||
"ignore": "Ignorar",
|
||||
"working-close-confirm": "Está trabalhando, tens certeza de fechá-lo?",
|
||||
"time-interval": "Intervalo de tempo (segundos):",
|
||||
"work-mode-title": "Modo:",
|
||||
"work-mode": {
|
||||
"1": "Combinação individual por torrent",
|
||||
"2": "Combinação individual por pasta"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Renaming a Torrent's Path",
|
||||
"oldname": "Old",
|
||||
"newname": "New"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Add Trackers",
|
||||
"tip": "One Line, One Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Set User Labels",
|
||||
"available": "Available:",
|
||||
"selected": "Selected:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Nome",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "Dir de descarga",
|
||||
"totalSize": "Tamanho total",
|
||||
"status": "Estado",
|
||||
"percentDone": "Completo",
|
||||
"remainingTime": "Tempo restante",
|
||||
"addedDate": "Data de adição",
|
||||
"completeSize": "Tamanho completo",
|
||||
"rateDownload": "Taxa de descarga",
|
||||
"rateUpload": "Taxa de envio",
|
||||
"leecherCount": "Leechs",
|
||||
"seederCount": "Seeds",
|
||||
"uploadedEver": "Total enviado",
|
||||
"uploadRatio": "Proporção",
|
||||
"queuePosition": "Queue",
|
||||
"activityDate": "Activity Date",
|
||||
"trackers": "Trackers",
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "Pausado",
|
||||
"1": "Aguardando verificação",
|
||||
"2": "Comprovando",
|
||||
"3": "Aguardando descarga",
|
||||
"4": "Descarregando",
|
||||
"5": "Aguardando semeamento",
|
||||
"6": "Semeando"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Base",
|
||||
"servers": "Trackers",
|
||||
"files": "Ficheiros",
|
||||
"users": "Peers",
|
||||
"config": "Configuração"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Nome",
|
||||
"length": "Tamanho",
|
||||
"percentDone": "Concluído",
|
||||
"bytesCompleted": "Tamanho completo",
|
||||
"wanted": "Procurado",
|
||||
"priority": "Prioridade"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Anúncio",
|
||||
"announceState": "Estado",
|
||||
"lastAnnounceResult": "Info",
|
||||
"lastAnnounceSucceeded": "Sucesso",
|
||||
"lastAnnounceTime": "Anúncio",
|
||||
"lastAnnounceTimedOut": "Tempo limite",
|
||||
"downloadCount": "Contagem de descarga",
|
||||
"nextAnnounceTime": "Próximo anúncio"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "IP address",
|
||||
"clientName": "Cliente",
|
||||
"flagStr": "Flag",
|
||||
"progress": "Progresso",
|
||||
"rateToClient": "Vel de descarga",
|
||||
"rateToPeer": "Vel de envio"
|
||||
},
|
||||
"status": {
|
||||
"true": "Verdadeiro",
|
||||
"false": "Falso"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Normal",
|
||||
"1": "Alto",
|
||||
"-1": "Baixo"
|
||||
},
|
||||
"label": {
|
||||
"name": "Nome:",
|
||||
"addedDate": "Data de adição:",
|
||||
"totalSize": "Tamanho completo:",
|
||||
"completeSize": "Tamanho completo:",
|
||||
"leftUntilDone": "Tempo estimado:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "Dir descarga:",
|
||||
"status": "Estado:",
|
||||
"rateDownload": "Vel de descarga:",
|
||||
"rateUpload": "Vel de envio:",
|
||||
"leecherCount": "Leechers:",
|
||||
"seederCount": "Seeds:",
|
||||
"uploadedEver": "Total enviado:",
|
||||
"uploadRatio": "Proporção de envio:",
|
||||
"creator": "Criador:",
|
||||
"dateCreated": "Data de criação:",
|
||||
"comment": "Comentário:",
|
||||
"errorString": "Erro de String:",
|
||||
"downloadLimited": "Velocidade máxima de descarga:",
|
||||
"uploadLimited": "Velocidade máxima de envio:",
|
||||
"peer-limit": "Número máximo de peers por torrent:",
|
||||
"seedRatioMode": "Proporção de envio:",
|
||||
"seedIdleMode": "O semeamento será interrompido se inativos por:",
|
||||
"doneDate": "Finish Time:",
|
||||
"seedTime": "Seed Time:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Baixar os ficheiros selecionados",
|
||||
"button-deny": "Ignorar os ficheiros selecionados",
|
||||
"button-priority": "Definir prioridade",
|
||||
"button-tracker-add": "Add New Tracker",
|
||||
"button-tracker-edit": "Edit Tracker",
|
||||
"button-tracker-remove": "Remove Tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Tens certeza que desejas eliminar este tracker?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Expandir os atributos automaticamente"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Desconhecido",
|
||||
"text-drop-title": "Arrasta o ficheiro Torrent para esta área para adicioná-lo ao transmission.",
|
||||
"text-saved": "Salvo",
|
||||
"text-nochange": "Sem alterações",
|
||||
"text-info": "Info",
|
||||
"text-confirm": "Tens certeza?",
|
||||
"text-browsers-not-support-features": "O navegador atual não suporta esta função!",
|
||||
"text-download-update": "Baixa esta atualização",
|
||||
"text-have-update": "Há uma atualização disponível",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/ro.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "ro",
|
||||
"author": "Laurentiu Dinulescu, vodek3",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "Conectare în curs...",
|
||||
"connected": "Conectat",
|
||||
"queue": "Coadă:",
|
||||
"queuefinish": "Lista este finalizată.",
|
||||
"notfinal": "Nefinalizat",
|
||||
"checked": "%n data checked:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Eroare de date.",
|
||||
"data-post-error": "Eroare de postare date.",
|
||||
"rename-error": "Error renaming file/folder!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Director pentru descărcare"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Start",
|
||||
"pause": "Pauză",
|
||||
"recheck": "Reverifică",
|
||||
"start-all": "Porneşte toate",
|
||||
"pause-all": "Pauză pentru toate",
|
||||
"remove": "Şterge",
|
||||
"remove-all": "Şterge toate",
|
||||
"remove-data": "Şterge datele",
|
||||
"add-torrent": "Adaugă fişier torrent",
|
||||
"attribute": "Atribute",
|
||||
"alt-speed": "Viteza alternativă",
|
||||
"system-config": "Configurează",
|
||||
"system-reload": "Reîncarcă",
|
||||
"about": "Despre",
|
||||
"reload-time": "Reîncărcare automată:",
|
||||
"reload-time-unit": "secunde",
|
||||
"autoreload-disabled": "Activat",
|
||||
"autoreload-enabled": "Dezactivat",
|
||||
"search-prompt": "Caută torrent local",
|
||||
"tracker-replace": "Înlocuieşte tracker",
|
||||
"queue": "Queue",
|
||||
"ui-mobile": "Mobile UI",
|
||||
"ui-original": "Original UI",
|
||||
"ui-computer": "Desktop UI",
|
||||
"plugin": "Extensions/plugins",
|
||||
"rename": "Rename",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard",
|
||||
"tip": {
|
||||
"start": "Porneşte sarcinile bifate",
|
||||
"pause": "Pauză pentru sarcinile bifate",
|
||||
"recheck": "Reverifică sarcinile bifate",
|
||||
"recheck-confirm": "Vrei să verifici sarcinile bifate ? Poate dura ceva timp ...",
|
||||
"start-all": "Porneşte toate",
|
||||
"pause-all": "Pauză toate",
|
||||
"remove": "Şterge",
|
||||
"delete-all": "Şterge toate",
|
||||
"delete-data": "Şterge datele",
|
||||
"add-torrent": "Adaugă fişiere torrent",
|
||||
"attribute": "Atribut",
|
||||
"alt-speed": "Viteza alternativă",
|
||||
"system-config": "Configurează",
|
||||
"system-reload": "Reîncarcă",
|
||||
"about": "Despre aplicaţie",
|
||||
"autoreload-disabled": "Dezactivează reîncarcarea automată",
|
||||
"autoreload-enabled": "Activează reîncarcarea automată",
|
||||
"tracker-replace": "Înlocuieşte tracker",
|
||||
"change-download-dir": "Setează directorul de descărcare",
|
||||
"ui-mobile": "Interfaţă mobile",
|
||||
"ui-original": "Interfaţă originală",
|
||||
"more-peers": "Interoghează pentru mai multe legături",
|
||||
"rename": "Renaming a Torrent's Path",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Move to top",
|
||||
"move-up": "Move up",
|
||||
"move-down": "Move down",
|
||||
"move-bottom": "Move to bottom"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Automatically matches data directory"
|
||||
},
|
||||
"setLabels": "Set User Labels"
|
||||
},
|
||||
"title": {
|
||||
"left": "Navigare",
|
||||
"list": "Torrente",
|
||||
"attribute": "Atribut",
|
||||
"status": "Status"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Toate",
|
||||
"active": "Active",
|
||||
"paused": "În pauză",
|
||||
"downloading": "În descărcare",
|
||||
"sending": "În transmitere",
|
||||
"error": "Erori",
|
||||
"warning": "Avertizări",
|
||||
"actively": "Active",
|
||||
"check": "În verificare",
|
||||
"wait": "Aştept",
|
||||
"search-result": "Rezultate căutare",
|
||||
"status": {
|
||||
"loading": "Încărcare..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Statistici",
|
||||
"cumulative": "Cumulat",
|
||||
"current": "Actual",
|
||||
"uploadedBytes": "Total octeţi( upload ): ",
|
||||
"downloadedBytes": "Total octeţi( download ): ",
|
||||
"filesAdded": "Fişiere adăugate: ",
|
||||
"sessionCount": "Sesiuni: ",
|
||||
"secondsActive": "Activ de: "
|
||||
},
|
||||
"servers": "Trackere",
|
||||
"folders": "Directoare",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Directoare"
|
||||
}
|
||||
},
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Viteza de descărcare:",
|
||||
"uploadspeed": "Vitza de încărcare:",
|
||||
"version": "Versiune:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Directorul de descărcare:",
|
||||
"torrent-url": "Torrent URL:",
|
||||
"tip-torrent-url": "Sfat: Separate cu 'Enter'",
|
||||
"autostart": "Auto Start:",
|
||||
"set-default-download-dir": "Configurează ca director implicit",
|
||||
"upload-file": "Fişiere Torrent :",
|
||||
"nosource": "Niciun fişier torrent sau URL.",
|
||||
"tip-title": "Încarcărea fişierului torrent file este prioritară comparativ cu torrent URL"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Configurează Serverul",
|
||||
"tabs": {
|
||||
"base": "Principal",
|
||||
"network": "Reţea",
|
||||
"limit": "Limită",
|
||||
"alt-speed": "Programate",
|
||||
"dictionary-folders": "Folders Dictionary",
|
||||
"more": "More",
|
||||
"labels": "Labels"
|
||||
},
|
||||
"config-dir": "Locaţia fişierului de configurare al daemonului (settings.json):",
|
||||
"download-dir": "Calea implicită către directorul de descărcare:",
|
||||
"download-dir-free-space": "Spaţiu liber:",
|
||||
"incomplete-dir-enabled": "Foloseşte directorul pentru descărcare nefinalizată",
|
||||
"cache-size-mb": "Mărime cache:",
|
||||
"rename-partial-files": "Ataşează extensia '.part' fişierelor nefinalizate",
|
||||
"start-added-torrents": "Porneşte automat torrenții adăugaţi",
|
||||
"download-queue-enabled": "Număr maxim descărcari simultane:",
|
||||
"seed-queue-enabled": "Număr maxim încărcări simultane:",
|
||||
"peer-port-random-on-start": "Folosește port aleator de conectare la pornire",
|
||||
"port-forwarding-enabled": "Activează forwarding",
|
||||
"test-port": "Testează port",
|
||||
"port-is-open-true": "Portul este deschis",
|
||||
"port-is-open-false": "Portul este închis",
|
||||
"testing": "Testare...",
|
||||
"encryption": "Encriptare:",
|
||||
"encryption-type": {
|
||||
"required": "Obligatorie",
|
||||
"preferred": "Preferată",
|
||||
"tolerated": "Tolerată"
|
||||
},
|
||||
"utp-enabled": "Activează µTP (UPnP)",
|
||||
"dht-enabled": "Activează DHT",
|
||||
"lpd-enabled": "Activează LPD",
|
||||
"pex-enabled": "Activează PEX",
|
||||
"peer-limit-global": "Număr maxim de legaturi (peers):",
|
||||
"peer-limit-per-torrent": "Număr maxim de peers/torrent:",
|
||||
"speed-limit-down-enabled": "Viteză maximă cumulată de descărcare:",
|
||||
"speed-limit-up-enabled": "Viteză maximă cumulată de încărcare:",
|
||||
"alt-speed-enabled": "Activează viteza alternativă",
|
||||
"alt-speed-down": "Viteză maximă cumulată de descărcare:",
|
||||
"alt-speed-up": "Viteză maximă cumulată de încărcare:",
|
||||
"alt-speed-time-enabled": "Folosește programare",
|
||||
"alt-speed-time": "Timp:",
|
||||
"weekday": {
|
||||
"1": "Luni",
|
||||
"2": "Marți",
|
||||
"3": "Miercuri",
|
||||
"4": "Joi",
|
||||
"5": "Vineri",
|
||||
"6": "Sâmbătă",
|
||||
"0": "Duminică"
|
||||
},
|
||||
"blocklist-enabled": "Folosește blocklist",
|
||||
"blocklist-size": "Blocklist has %n rules.",
|
||||
"seedRatioLimited": "Rația implicită pentru încărcare:",
|
||||
"queue-stalled-enabled": "Torentele inactive sunt considerete blocate după:",
|
||||
"idle-seeding-limit-enabled": "Torentele la încărcare vor fi oprite dacă sunt inactive pentru:",
|
||||
"minutes": "Minute",
|
||||
"nochange": "Nicio schimbare",
|
||||
"saving": "Salvez...",
|
||||
"show-bt-servers": "Show 'BT servers' on Trackers:",
|
||||
"restore-default-settings": "Restore UI Default Settings",
|
||||
"language": "Language:",
|
||||
"loading": "Loading...",
|
||||
"hide-subfolders": "When clicking on the data directory, hide subfolders content in the list:",
|
||||
"simple-check-mode": "Checked only one torrent when you right-click on the torrent list:",
|
||||
"nav-contents": "Navigation bar Display content:",
|
||||
"labels-manage": {
|
||||
"name": "Label Name",
|
||||
"description": "Description",
|
||||
"color": "Color",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Do you want to import labels? This overrides the current configuration."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "OK",
|
||||
"button-cancel": "Renunță",
|
||||
"button-reload": "Reîncarcă",
|
||||
"button-save": "Salvează",
|
||||
"button-close": "Închide",
|
||||
"button-update": "Update",
|
||||
"button-config": "Config",
|
||||
"button-addnew": "Add",
|
||||
"button-edit": "Edit",
|
||||
"button-delete": "Delete",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Autor:culturist<br/>Declarație:Dacă dețineți drepturi de autor pentru pictogramele folosite aici, vă rog, contactați-mă.",
|
||||
"check-update": "Check Update",
|
||||
"home": "Project Home",
|
||||
"help": "Wiki",
|
||||
"donate": "Donate",
|
||||
"pt-plugin": "PT Plugin"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Confirmă ștergerea",
|
||||
"confirm-text": "Confirmă ștergerea torrenților selectați?",
|
||||
"remove-data": "Șterge datele salvate",
|
||||
"remove-error": "Ștergere eșuată!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Confirmă noul director",
|
||||
"old-download-dir": "Vechiul director:",
|
||||
"new-download-dir": "Noul director:",
|
||||
"move-data": "Dacă bifat se va muta din locația anterioară sau setează director nou pentru fișiere.",
|
||||
"set-error": "eroare !",
|
||||
"recheck-data": "Recheck data."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Înlocuiește trackerul",
|
||||
"old-tracker": "Vechiul tracker:",
|
||||
"new-tracker": "Noul tracker:",
|
||||
"tip": "Această funcție va găsi <b>TOATE</b> trackerele.",
|
||||
"not-found": "Tracker nu poate fi găsit."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Automatically matches data directory",
|
||||
"torrent-count": "Torrent count:",
|
||||
"folder-count": "Folder count:",
|
||||
"dictionary": "Folders Dictionary",
|
||||
"time-begin": "Begin time:",
|
||||
"time-now": "Now:",
|
||||
"status": "Status:",
|
||||
"ignore": "Ignore",
|
||||
"working-close-confirm": "Torrents are currently downloading, are sure you want to close Transmission?",
|
||||
"time-interval": "Time interval (seconds):",
|
||||
"work-mode-title": "Mode:",
|
||||
"work-mode": {
|
||||
"1": "Individually matched by torrent",
|
||||
"2": "Individually matched by folder"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Renaming a Torrent's Path",
|
||||
"oldname": "Old",
|
||||
"newname": "New"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Add Trackers",
|
||||
"tip": "One Line, One Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Set User Labels",
|
||||
"available": "Available:",
|
||||
"selected": "Selected:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Nume",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "Director descărcare",
|
||||
"totalSize": "Mărime totală",
|
||||
"status": "Status",
|
||||
"percentDone": "Procent finalizat",
|
||||
"remainingTime": "Timp rămas",
|
||||
"addedDate": "Data adăugare",
|
||||
"completeSize": "Marime descărcat",
|
||||
"rateDownload": "Viteză descărcare",
|
||||
"rateUpload": "Viteză încărcare",
|
||||
"leecherCount": "Leecheri",
|
||||
"seederCount": "Seederi",
|
||||
"uploadedEver": "Total încărcat",
|
||||
"uploadRatio": "Rația",
|
||||
"queuePosition": "Queue",
|
||||
"activityDate": "Activity Date",
|
||||
"trackers": "Trackers",
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "Pauză",
|
||||
"1": "Așteaptă pentru verificare",
|
||||
"2": "Verificare",
|
||||
"3": "Așteapta pentru descărcare",
|
||||
"4": "Descarcă",
|
||||
"5": "Așteaptă pentru încărcare",
|
||||
"6": "Trimite date"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Principal",
|
||||
"servers": "Trackere",
|
||||
"files": "Fișiere",
|
||||
"users": "Peers",
|
||||
"config": "Setări"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Nume",
|
||||
"length": "Mărime",
|
||||
"percentDone": "Procent finalizat",
|
||||
"bytesCompleted": "Mărime finalizat",
|
||||
"wanted": "Căutat",
|
||||
"priority": "Prioritate"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Link tracker",
|
||||
"announceState": "Status",
|
||||
"lastAnnounceResult": "Info",
|
||||
"lastAnnounceSucceeded": "Succes",
|
||||
"lastAnnounceTime": "Timp pentru verificare tracker",
|
||||
"lastAnnounceTimedOut": "Erori la conectare tracker ?",
|
||||
"downloadCount": "Număr descărcări",
|
||||
"nextAnnounceTime": "Următoarea verificare tracker"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "Adresa IP",
|
||||
"clientName": "Client",
|
||||
"flagStr": "Flag",
|
||||
"progress": "Progres",
|
||||
"rateToClient": "Viteza descărcare a conectatului",
|
||||
"rateToPeer": "Viteza de transfer către conectat"
|
||||
},
|
||||
"status": {
|
||||
"true": "Adevărat",
|
||||
"false": "Fals"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Normală",
|
||||
"1": "Mare",
|
||||
"-1": "Mică"
|
||||
},
|
||||
"label": {
|
||||
"name": "Nume:",
|
||||
"addedDate": "Data adăugării:",
|
||||
"totalSize": "Mărime totală:",
|
||||
"completeSize": "Mărime descărcat:",
|
||||
"leftUntilDone": "Rămas de finalizat:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "Director pentru descărcare:",
|
||||
"status": "Status:",
|
||||
"rateDownload": "Viteză descărcare:",
|
||||
"rateUpload": "Viteză încărcare:",
|
||||
"leecherCount": "Leecher:",
|
||||
"seederCount": "Seeder:",
|
||||
"uploadedEver": "Total încărcat:",
|
||||
"uploadRatio": "Rația încărcat:",
|
||||
"creator": "Creator:",
|
||||
"dateCreated": "Data creării:",
|
||||
"comment": "Comentariu:",
|
||||
"errorString": "Eroare în șirȘ",
|
||||
"downloadLimited": "Viteza maximă de descărcare:",
|
||||
"uploadLimited": "Viteza maximă de încărcare:",
|
||||
"peer-limit": "Număr maxim de peers/torrent:",
|
||||
"seedRatioMode": "Rația pentru încărcare:",
|
||||
"seedIdleMode": "Torrentele la încărcat vor fi oprite dacă sunt inactive pentru:",
|
||||
"doneDate": "Finish Time:",
|
||||
"seedTime": "Seed Time:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Descărcarea fișierelor bifate",
|
||||
"button-deny": "Nu descărca fișierele :",
|
||||
"button-priority": "Prioritate",
|
||||
"button-tracker-add": "Add New Tracker",
|
||||
"button-tracker-edit": "Edit Tracker",
|
||||
"button-tracker-remove": "Remove Tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Confirmi ștergerea acestui tracker ?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Afișează automat atributele"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Necunoscut",
|
||||
"text-drop-title": "Fă 'drag and drop' pentru adăugare în Transmission.",
|
||||
"text-saved": "Salvat",
|
||||
"text-nochange": "Nicio schimbare",
|
||||
"text-info": "Informții",
|
||||
"text-confirm": "Ești sigur ?",
|
||||
"text-browsers-not-support-features": "Browserul folosit nu suportă această funcție !",
|
||||
"text-download-update": "Descarcă această actualizare",
|
||||
"text-have-update": "O actualizare este disponibilă",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/ru.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "ru",
|
||||
"author": "Oleksandr Gureiev, irherder, Isseq, DarkAlexWang, vodek3",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "Соединение...",
|
||||
"connected": "Соединено",
|
||||
"queue": "Очередь:",
|
||||
"queuefinish": "Очередь загрузки завершена.",
|
||||
"notfinal": "Не завершена",
|
||||
"checked": "Отмечено %n торрент(а/ов): "
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Ошибка данных.",
|
||||
"data-post-error": "Ошибка отправки данных.",
|
||||
"rename-error": "Ошибка переименования файла/папки!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Папка для загрузки"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Старт",
|
||||
"pause": "Пауза",
|
||||
"recheck": "Перепроверить",
|
||||
"start-all": "Начать все",
|
||||
"pause-all": "Пауза все",
|
||||
"remove": "Удалить",
|
||||
"remove-all": "Удалить все",
|
||||
"remove-data": "Удалить данные",
|
||||
"add-torrent": "Добавить торрент",
|
||||
"attribute": "Атрибут",
|
||||
"alt-speed": "Альтернативная скорость",
|
||||
"system-config": "Настройки",
|
||||
"system-reload": "Обновить",
|
||||
"about": "О программе",
|
||||
"reload-time": "Автообновление:",
|
||||
"reload-time-unit": "с/раз",
|
||||
"autoreload-disabled": "Отключено",
|
||||
"autoreload-enabled": "Включено",
|
||||
"search-prompt": "Поиск по торрентам",
|
||||
"tracker-replace": "Заменить трекеры",
|
||||
"queue": "Очередь",
|
||||
"ui-mobile": "Мобильный UI",
|
||||
"ui-original": "Оригинальный UI",
|
||||
"ui-computer": "Стандартный UI",
|
||||
"plugin": "Плагины",
|
||||
"rename": "Переименовать",
|
||||
"copy-path-to-clipboard": "Скопировать путь загрузки в буфер обмена",
|
||||
"tip": {
|
||||
"start": "Запустить выбранные торренты",
|
||||
"pause": "Приостановить выбранные торренты",
|
||||
"recheck": "Перепроверить выбранные торренты",
|
||||
"recheck-confirm": "Вы уверены что необходимо перепроверить выбранные торренты? Это займет некоторое время!",
|
||||
"start-all": "Запустить все",
|
||||
"pause-all": "Приостановить все",
|
||||
"remove": "Удалить выбранные торренты",
|
||||
"delete-all": "Удалить все",
|
||||
"delete-data": "Удалить данные",
|
||||
"add-torrent": "Добавить торрент",
|
||||
"attribute": "Атрибут",
|
||||
"alt-speed": "Альтернативная скорость",
|
||||
"system-config": "Настройки",
|
||||
"system-reload": "Обновить",
|
||||
"about": "О программе",
|
||||
"autoreload-disabled": "Отключить автообновление",
|
||||
"autoreload-enabled": "Включить автообновление",
|
||||
"tracker-replace": "Заменить трекеры",
|
||||
"change-download-dir": "Изменить папку загрузки",
|
||||
"ui-mobile": "Мобильный UI",
|
||||
"ui-original": "Оригинальный UI",
|
||||
"more-peers": "Запросить у трекера больше пиров",
|
||||
"rename": "Переименовать торрент",
|
||||
"copy-path-to-clipboard": "Скопировать путь загрузки в буфер обмена"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Сдвинуть в начало",
|
||||
"move-up": "Сдвинуть выше",
|
||||
"move-down": "Сдвинуть ниже",
|
||||
"move-bottom": "Сдвинуть в конец"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Автосопоставление путей"
|
||||
},
|
||||
"setLabels": "Set User Labels"
|
||||
},
|
||||
"title": {
|
||||
"left": "Навигация",
|
||||
"list": "Торренты",
|
||||
"attribute": "Атрибуты",
|
||||
"status": "Статус"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Все",
|
||||
"active": "Активные",
|
||||
"paused": "Приостановлены",
|
||||
"downloading": "Загружаются",
|
||||
"sending": "Раздаются",
|
||||
"error": "С ошибкой",
|
||||
"warning": "С предупреждением",
|
||||
"actively": "Активные",
|
||||
"check": "Проверяются",
|
||||
"wait": "Ожидание",
|
||||
"search-result": "Результаты поиска",
|
||||
"status": {
|
||||
"loading": "Загрузка..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Статистика",
|
||||
"cumulative": "Общая",
|
||||
"current": "Текущая",
|
||||
"uploadedBytes": "Всего отдано: ",
|
||||
"downloadedBytes": "Всего загружено: ",
|
||||
"filesAdded": "Файлов: ",
|
||||
"sessionCount": "Сессий: ",
|
||||
"secondsActive": "Время работы: "
|
||||
},
|
||||
"servers": "Трекеры",
|
||||
"folders": "Папки",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Папки"
|
||||
}
|
||||
},
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Скорость загрузки:",
|
||||
"uploadspeed": "Скорость отдачи:",
|
||||
"version": "Версия:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Папка загрузки:",
|
||||
"torrent-url": "Ссылка на .torrent или magnet:",
|
||||
"tip-torrent-url": "Новая ссылка с новой строки",
|
||||
"autostart": "Начать загрузку:",
|
||||
"set-default-download-dir": "Выбрать как папку по умолчанию",
|
||||
"upload-file": "Файлы .torrent:",
|
||||
"nosource": "Указанный источник не является файлом .torrent.",
|
||||
"tip-title": "Приоритет для загрузок указанных через URL"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Настройка сервера",
|
||||
"tabs": {
|
||||
"base": "Базовые",
|
||||
"network": "Сеть",
|
||||
"limit": "Ограничения",
|
||||
"alt-speed": "Планировщик",
|
||||
"dictionary-folders": "Список путей",
|
||||
"more": "Дополнительно",
|
||||
"labels": "Labels"
|
||||
},
|
||||
"config-dir": "Папка конфигурации Transmission (settings.json):",
|
||||
"download-dir": "Папка для загрузки по умолчанию:",
|
||||
"download-dir-free-space": "Свободно места: ",
|
||||
"incomplete-dir-enabled": "Папка для не полностью загруженных файлов:",
|
||||
"cache-size-mb": "Размер дискового кеша:",
|
||||
"rename-partial-files": "Добавлять расширение .part к не полностью загруженным файлам",
|
||||
"start-added-torrents": "Автостарт для добавленных торрентов",
|
||||
"download-queue-enabled": "Включить очередь загрузки, одновременно:",
|
||||
"seed-queue-enabled": "Включить очередь отдачи, одновременно:",
|
||||
"peer-port-random-on-start": "Использовать случайный порт при запуске",
|
||||
"port-forwarding-enabled": "Включить проброс портов (UPnP)",
|
||||
"test-port": "Проверить",
|
||||
"port-is-open-true": "Порт открыт",
|
||||
"port-is-open-false": "Порт закрыт",
|
||||
"testing": "Тестирую...",
|
||||
"encryption": "Шифрование:",
|
||||
"encryption-type": {
|
||||
"required": "Требуется",
|
||||
"preferred": "Включено",
|
||||
"tolerated": "Отключено"
|
||||
},
|
||||
"utp-enabled": "Включить µTP (UPnP)",
|
||||
"dht-enabled": "Включить DHT",
|
||||
"lpd-enabled": "Включить Local Peer Discovery",
|
||||
"pex-enabled": "Включить обмен пирами",
|
||||
"peer-limit-global": "Максимум пиров на все торренты:",
|
||||
"peer-limit-per-torrent": "Максимум пиров на торрент:",
|
||||
"speed-limit-down-enabled": "Максимальная скорость загрузки:",
|
||||
"speed-limit-up-enabled": "Максимальная скорость отдачи:",
|
||||
"alt-speed-enabled": "Включить альтернативные скорости",
|
||||
"alt-speed-down": "Альтернативная скорость загрузки:",
|
||||
"alt-speed-up": "Альтернативная скорость отдачи:",
|
||||
"alt-speed-time-enabled": "Использовать планировщик",
|
||||
"alt-speed-time": "Время:",
|
||||
"weekday": {
|
||||
"1": "Понедельник",
|
||||
"2": "Вторник",
|
||||
"3": "Среда",
|
||||
"4": "Четверг",
|
||||
"5": "Пятница",
|
||||
"6": "Суббота",
|
||||
"0": "Воскресенье"
|
||||
},
|
||||
"blocklist-enabled": "Использовать черный список",
|
||||
"blocklist-size": "Черный список содержит %n правил.",
|
||||
"seedRatioLimited": "Раздача будет остановлена на рейтинге:",
|
||||
"queue-stalled-enabled": "Считать активные торрренты зависшими, если нет активности:",
|
||||
"idle-seeding-limit-enabled": "Раздача будет остановлена если нет активности:",
|
||||
"minutes": "Минут",
|
||||
"nochange": "Без изменений",
|
||||
"saving": "Сохранение...",
|
||||
"show-bt-servers": "Показать 'BT-серверы' в окне 'Навигация' -> 'Трекеры'.",
|
||||
"restore-default-settings": "Настойки по-умолчанию",
|
||||
"language": "Язык:",
|
||||
"loading": "Загрузка...",
|
||||
"hide-subfolders": "When clicking on the data directory, hide subfolders content in the list:",
|
||||
"simple-check-mode": "Checked only one torrent when you right-click on the torrent list:",
|
||||
"nav-contents": "Navigation bar Display content:",
|
||||
"labels-manage": {
|
||||
"name": "Label Name",
|
||||
"description": "Description",
|
||||
"color": "Color",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Do you want to import labels? This overrides the current configuration."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "OK",
|
||||
"button-cancel": "Отмена",
|
||||
"button-reload": "Перегрузить",
|
||||
"button-save": "Сохранить",
|
||||
"button-close": "Закрыть",
|
||||
"button-update": "Обновить",
|
||||
"button-config": "Настройка",
|
||||
"button-addnew": "Add",
|
||||
"button-edit": "Edit",
|
||||
"button-delete": "Delete",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Автор: culturist<br/>Дисклеймер: Большинство используемых изображений найдены в сети, если они нарушают Ваши авторские права, сообщите автору для удаления.",
|
||||
"check-update": "Проверить обновления",
|
||||
"home": "Домашняя страница проекта",
|
||||
"help": "Wiki",
|
||||
"donate": "Поддержать проект",
|
||||
"pt-plugin": "PT Plugin"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Удалить торрент",
|
||||
"confirm-text": "Вы согласны удалить выбранные торренты?",
|
||||
"remove-data": "Удалить данные",
|
||||
"remove-error": "Удаление прошло неудачно!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Изменить папку загрузки",
|
||||
"old-download-dir": "Старая:",
|
||||
"new-download-dir": "Новая:",
|
||||
"move-data": "Перенести данные из старой папки в новую.",
|
||||
"set-error": "ошибка!",
|
||||
"recheck-data": "Перепроверить данные."
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Заменить трекеры",
|
||||
"old-tracker": "Cтарый трекер:",
|
||||
"new-tracker": "Новой трекер:",
|
||||
"tip": "Эта функция будет искать трекер <b>во всех торрентах</b>.",
|
||||
"not-found": "Трекер не найден."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Автоматическое сопоставление путей",
|
||||
"torrent-count": "Количество торрентов:",
|
||||
"folder-count": "Количество папок:",
|
||||
"dictionary": "Список путей",
|
||||
"time-begin": "Время начала:",
|
||||
"time-now": "Текущее время:",
|
||||
"status": "Статус:",
|
||||
"ignore": "Игнорировать",
|
||||
"working-close-confirm": "Работа выполняется, закрыть?",
|
||||
"time-interval": "Интервал (секунд):",
|
||||
"work-mode-title": "Режим:",
|
||||
"work-mode": {
|
||||
"1": "Соответствие по торренту",
|
||||
"2": "Соответствие по папке"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Переименовать Torrent",
|
||||
"oldname": "Старый",
|
||||
"newname": "Новый"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Добавить трекеры",
|
||||
"tip": "Одна строка, один трекер"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Set User Labels",
|
||||
"available": "Available:",
|
||||
"selected": "Selected:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Название",
|
||||
"hashString": "Хэш",
|
||||
"downloadDir": "Папка загрузки",
|
||||
"totalSize": "Размер",
|
||||
"status": "Состояние",
|
||||
"percentDone": "Готово %",
|
||||
"remainingTime": "Осталось",
|
||||
"addedDate": "Добавлен",
|
||||
"completeSize": "Загружено",
|
||||
"rateDownload": "Загрузка",
|
||||
"rateUpload": "Отдача",
|
||||
"leecherCount": "Личи",
|
||||
"seederCount": "Сиды",
|
||||
"uploadedEver": "Отдано",
|
||||
"uploadRatio": "Рейтинг",
|
||||
"queuePosition": "Очередь",
|
||||
"activityDate": "Последняя активность",
|
||||
"trackers": "Трекеры",
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "Пауза",
|
||||
"1": "Ожидает проверки",
|
||||
"2": "Проверка",
|
||||
"3": "Ожидает загрузку",
|
||||
"4": "Загрузка",
|
||||
"5": "Ожидает раздачу",
|
||||
"6": "Раздача"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Общие",
|
||||
"servers": "Трекеры",
|
||||
"files": "Файлы",
|
||||
"users": "Пиры",
|
||||
"config": "Настройки"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Название",
|
||||
"length": "Объем",
|
||||
"percentDone": "Загружено %",
|
||||
"bytesCompleted": "Загружено",
|
||||
"wanted": "Загружать",
|
||||
"priority": "Приоритет"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Анонс",
|
||||
"announceState": "Статус",
|
||||
"lastAnnounceResult": "Результат",
|
||||
"lastAnnounceSucceeded": "Успешно",
|
||||
"lastAnnounceTime": "Время анонса",
|
||||
"lastAnnounceTimedOut": "Тайм-аут",
|
||||
"downloadCount": "Количество загрузок",
|
||||
"nextAnnounceTime": "Следующий анонс"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "IP адрес",
|
||||
"clientName": "Клиент",
|
||||
"flagStr": "Страна",
|
||||
"progress": "Прогресс",
|
||||
"rateToClient": "Скорость приема",
|
||||
"rateToPeer": "Скорость отдачи"
|
||||
},
|
||||
"status": {
|
||||
"true": "Да",
|
||||
"false": "Нет"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Нормальный",
|
||||
"1": "Высокий",
|
||||
"-1": "Низкий"
|
||||
},
|
||||
"label": {
|
||||
"name": "Название:",
|
||||
"addedDate": "Добавлено:",
|
||||
"totalSize": "Общий объем:",
|
||||
"completeSize": "Загружено:",
|
||||
"leftUntilDone": "Осталось:",
|
||||
"hashString": "Хэш:",
|
||||
"downloadDir": "Папка:",
|
||||
"status": "Статус:",
|
||||
"rateDownload": "Скорость загрузки:",
|
||||
"rateUpload": "Скорость отдачи:",
|
||||
"leecherCount": "Личеры:",
|
||||
"seederCount": "Сидеры:",
|
||||
"uploadedEver": "Отдано всего:",
|
||||
"uploadRatio": "Рейтинг отдачи:",
|
||||
"creator": "Создан:",
|
||||
"dateCreated": "Дата создания:",
|
||||
"comment": "Комментарий:",
|
||||
"errorString": "Ошибка:",
|
||||
"downloadLimited": "Максимальная скорость приема: ",
|
||||
"uploadLimited": "Максимальная скорость отдачи: ",
|
||||
"peer-limit": "Максимум пиров на торрент: ",
|
||||
"seedRatioMode": "Раздача будет остановлена на рейтинге: ",
|
||||
"seedIdleMode": "Раздача будет остановлена если нет активности: ",
|
||||
"doneDate": "Finish Time:",
|
||||
"seedTime": "Seed Time:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Загрузить выбранные файлы",
|
||||
"button-deny": "Пропустить выбранные файлы",
|
||||
"button-priority": "Установить приоритет",
|
||||
"button-tracker-add": "Добавить новый трекер",
|
||||
"button-tracker-edit": "Редактировать трекер",
|
||||
"button-tracker-remove": "Удалить трекер"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Вы уверены, что хотите удалить этот Трекер?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Отображать атрибуты"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Неизвестно",
|
||||
"text-drop-title": "Перетащите .torrent файл в область \"Загрузки\" чтобы добавить задачу.",
|
||||
"text-saved": "Сохранено",
|
||||
"text-nochange": "Без изменений",
|
||||
"text-info": "Информация",
|
||||
"text-confirm": "Вы уверены?",
|
||||
"text-browsers-not-support-features": "Текущий браузер не поддерживает этот функционал!",
|
||||
"text-download-update": "Загрузить это обновление",
|
||||
"text-have-update": "Доступно новое обновление",
|
||||
"text-on": "Вкл",
|
||||
"text-off": "Выкл",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/uk.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "uk",
|
||||
"author": "Andrew, vodek3",
|
||||
"system": {
|
||||
"title": "Transmission WEB Control",
|
||||
"status": {
|
||||
"connect": "З'єднання...",
|
||||
"connected": "З'єднане",
|
||||
"queue": "Чергу:",
|
||||
"queuefinish": "Черга завантаження завершена.",
|
||||
"notfinal": "Не завершена",
|
||||
"checked": "%n data checked:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "Помилка даних.",
|
||||
"data-post-error": "Помилка відсилання даних.",
|
||||
"rename-error": "Error renaming file/folder!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "Директорія для завантаження"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "Старт",
|
||||
"pause": "Пауза",
|
||||
"recheck": "Перевірити",
|
||||
"start-all": "Почати все",
|
||||
"pause-all": "Пауза всі",
|
||||
"remove": "Видалити",
|
||||
"remove-all": "Видалити всі",
|
||||
"remove-data": "Видалити дані",
|
||||
"add-torrent": "Додати торрент",
|
||||
"attribute": "Атрибут",
|
||||
"alt-speed": "Альтернативна швидкість",
|
||||
"system-config": "Налаштування",
|
||||
"system-reload": "Оновити",
|
||||
"about": "Про програму",
|
||||
"reload-time": "Авто-оновлення:",
|
||||
"reload-time-unit": "с/раз",
|
||||
"autoreload-disabled": "Вимкнено",
|
||||
"autoreload-enabled": "Включено",
|
||||
"search-prompt": "Пошук по торрентів",
|
||||
"tracker-replace": "Замінити трекери",
|
||||
"queue": "Чергу",
|
||||
"ui-mobile": "Мобільний UI",
|
||||
"ui-original": "Оригінальний UI",
|
||||
"ui-computer": "Стандартний UI",
|
||||
"plugin": "Плагіни",
|
||||
"rename": "Rename",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard",
|
||||
"tip": {
|
||||
"start": "Запустити вибрані торренти",
|
||||
"pause": "Призупинити вибрані торренти",
|
||||
"recheck": "Перевірити вибрані торренти",
|
||||
"recheck-confirm": "Ви впевнені, що необхідно перевірити вибрані торренти? Це займе деякий час!",
|
||||
"start-all": "Запустити всі",
|
||||
"pause-all": "Призупинити всі",
|
||||
"remove": "Видалити вибрані торренти",
|
||||
"delete-all": "Видалити всі",
|
||||
"delete-data": "Видалити дані",
|
||||
"add-torrent": "Додати торрент",
|
||||
"attribute": "Атрибут",
|
||||
"alt-speed": "Альтернативна швидкість",
|
||||
"system-config": "Налаштування",
|
||||
"system-reload": "Оновити",
|
||||
"about": "Про програму",
|
||||
"autoreload-disabled": "Відключити авто-оновлення",
|
||||
"autoreload-enabled": "Включити авто-оновлення",
|
||||
"tracker-replace": "Замінити трекери",
|
||||
"change-download-dir": "Змінити директорію завантаження",
|
||||
"ui-mobile": "Мобільний UI",
|
||||
"ui-original": "Оригінальний UI",
|
||||
"more-peers": "Запитати у трекера більше бенкетів",
|
||||
"rename": "Renaming a Torrent's Path",
|
||||
"copy-path-to-clipboard": "Copy download location to clipboard"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "Зрушити вгору",
|
||||
"move-up": "Зрушити вище",
|
||||
"move-down": "Зрушити нижче",
|
||||
"move-bottom": "Зрушити вниз"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "Авто-зіставлення шляхів"
|
||||
},
|
||||
"setLabels": "Set User Labels"
|
||||
},
|
||||
"title": {
|
||||
"left": "Навігація",
|
||||
"list": "Торренти",
|
||||
"attribute": "Атрибути",
|
||||
"status": "Стан"
|
||||
},
|
||||
"tree": {
|
||||
"all": "Всі",
|
||||
"active": "Активні",
|
||||
"paused": "Припинені",
|
||||
"downloading": "Завантажуються",
|
||||
"sending": "Роздаються",
|
||||
"error": "З помилкою",
|
||||
"warning": "З попередженням",
|
||||
"actively": "Активні",
|
||||
"check": "Перевіряються",
|
||||
"wait": "Очікування",
|
||||
"search-result": "Результати пошуку",
|
||||
"status": {
|
||||
"loading": "Завантаження..."
|
||||
},
|
||||
"statistics": {
|
||||
"title": "Статистика",
|
||||
"cumulative": "Загальна",
|
||||
"current": "Поточна",
|
||||
"uploadedBytes": "Все віддано: ",
|
||||
"downloadedBytes": "Всього завантажено: ",
|
||||
"filesAdded": "Файлів: ",
|
||||
"sessionCount": "Сесій: ",
|
||||
"secondsActive": "Час роботи: "
|
||||
},
|
||||
"servers": "Трекери",
|
||||
"folders": "Директорії",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "Директорії"
|
||||
}
|
||||
},
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "Швидкість завантаження:",
|
||||
"uploadspeed": "Швидкість віддачі:",
|
||||
"version": "Версія:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "Директорія завантаження:",
|
||||
"torrent-url": "Посилання на .torrent або magnet:",
|
||||
"tip-torrent-url": "Нове посилання з нового рядка",
|
||||
"autostart": "Розпочати завантаження:",
|
||||
"set-default-download-dir": "Вибрати як директорію за замовчуванням",
|
||||
"upload-file": "Файли .torrent:",
|
||||
"nosource": "Вказане джерело не є файлом .torrent.",
|
||||
"tip-title": "Пріоритет для завантажень зазначених через URL"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "Налаштування сервера",
|
||||
"tabs": {
|
||||
"base": "Базові",
|
||||
"network": "Мережа",
|
||||
"limit": "Обмеження",
|
||||
"alt-speed": "Планувальник",
|
||||
"dictionary-folders": "Список шляхів",
|
||||
"more": "More",
|
||||
"labels": "Labels"
|
||||
},
|
||||
"config-dir": "Директорія конфігурації transmission:",
|
||||
"download-dir": "Директорія для завантаження за замовчуванням:",
|
||||
"download-dir-free-space": "Вільно місця: ",
|
||||
"incomplete-dir-enabled": "Використовувати директорію для незавершених файлів",
|
||||
"cache-size-mb": "Розмір дискового кешу:",
|
||||
"rename-partial-files": "Завантажувати файл '.part' незавершені файли",
|
||||
"start-added-torrents": "Автостарт доданих торрентів",
|
||||
"download-queue-enabled": "Включити чергу завантаження, одночасно:",
|
||||
"seed-queue-enabled": "Включити чергу віддачі, одночасно:",
|
||||
"peer-port-random-on-start": "Використовувати випадковий порт при запуску",
|
||||
"port-forwarding-enabled": "Включити порт-forwarding (UPnP)",
|
||||
"test-port": "Перевірити",
|
||||
"port-is-open-true": "Порт відкритий",
|
||||
"port-is-open-false": "Порт закритий",
|
||||
"testing": "Тестую...",
|
||||
"encryption": "Шифрування:",
|
||||
"encryption-type": {
|
||||
"required": "Потрібно",
|
||||
"preferred": "Включено",
|
||||
"tolerated": "Вимкнено"
|
||||
},
|
||||
"utp-enabled": "Увімкнути µTP (UPnP)",
|
||||
"dht-enabled": "Увімкнути DHT",
|
||||
"lpd-enabled": "Увімкнути Local Peer Discovery",
|
||||
"pex-enabled": "Увімкнути обмен пирами",
|
||||
"peer-limit-global": "Максимум пірів на всі торренти:",
|
||||
"peer-limit-per-torrent": "Максимум пірів на торрент:",
|
||||
"speed-limit-down-enabled": "Максимальна швидкість завантаження:",
|
||||
"speed-limit-up-enabled": "Максимальна швидкість віддачі:",
|
||||
"alt-speed-enabled": "Включити альтернативні швидкості",
|
||||
"alt-speed-down": "Альтернативна швидкість завантаження:",
|
||||
"alt-speed-up": "Альтернативна швидкість віддачі:",
|
||||
"alt-speed-time-enabled": "Використовувати планувальник",
|
||||
"alt-speed-time": "Час:",
|
||||
"weekday": {
|
||||
"1": "Понеділок",
|
||||
"2": "Вівторок",
|
||||
"3": "Середа",
|
||||
"4": "Четвер",
|
||||
"5": "П'ятниця",
|
||||
"6": "Субота",
|
||||
"0": "Неділя"
|
||||
},
|
||||
"blocklist-enabled": "Використовувати чорний список",
|
||||
"blocklist-size": "Чорний список містить %n правил.",
|
||||
"seedRatioLimited": "Роздача буде зупинена на рейтингу:",
|
||||
"queue-stalled-enabled": "Вважати торренти завислими, якщо немає активності:",
|
||||
"idle-seeding-limit-enabled": "Роздача буде зупинена якщо немає активності:",
|
||||
"minutes": "Хвилин",
|
||||
"nochange": "Без змін",
|
||||
"saving": "Збереження...",
|
||||
"show-bt-servers": "Show 'BT servers' on Trackers:",
|
||||
"restore-default-settings": "Restore UI Default Settings",
|
||||
"language": "Language:",
|
||||
"loading": "Loading...",
|
||||
"hide-subfolders": "When clicking on the data directory, hide subfolders content in the list:",
|
||||
"simple-check-mode": "Checked only one torrent when you right-click on the torrent list:",
|
||||
"nav-contents": "Navigation bar Display content:",
|
||||
"labels-manage": {
|
||||
"name": "Label Name",
|
||||
"description": "Description",
|
||||
"color": "Color",
|
||||
"actions": "Actions",
|
||||
"import-confirm": "Do you want to import labels? This overrides the current configuration."
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "OK",
|
||||
"button-cancel": "Скасування",
|
||||
"button-reload": "Перевантажити",
|
||||
"button-save": "Зберегти",
|
||||
"button-close": "Закрити",
|
||||
"button-update": "Оновити",
|
||||
"button-config": "Налаштування",
|
||||
"button-addnew": "Add",
|
||||
"button-edit": "Edit",
|
||||
"button-delete": "Delete",
|
||||
"button-export": "Export",
|
||||
"button-import": "Import"
|
||||
},
|
||||
"about": {
|
||||
"infos": "Автор: culturist<br/>Дискеймер: Більшість використовуваних зображень знайдені в мережі, якщо вони порушують ваші авторські права, повідомте автора для видалення.",
|
||||
"check-update": "Перевірити оновлення",
|
||||
"home": "Project Home",
|
||||
"help": "Wiki",
|
||||
"donate": "Donate",
|
||||
"pt-plugin": "PT Plugin"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "Видалити торрент",
|
||||
"confirm-text": "Ви згодні видалити вибрані торренти?",
|
||||
"remove-data": "Видалити дані",
|
||||
"remove-error": "Видалення пройшло невдало!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "Змінити директорію завантаження",
|
||||
"old-download-dir": "Стара:",
|
||||
"new-download-dir": "Нова:",
|
||||
"move-data": "Перенести дані зі старої директорії в нову",
|
||||
"set-error": "помилка!",
|
||||
"recheck-data": "Перевірити дані"
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "Замінити трекери",
|
||||
"old-tracker": "Старий трекер:",
|
||||
"new-tracker": "Новий трекер:",
|
||||
"tip": "Ця функція буде шукати трекер <b>у всіх торрентах</b>.",
|
||||
"not-found": "Трекер не знайдено."
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "Автоматичне співставлення шляхів",
|
||||
"torrent-count": "Кількість торрентів:",
|
||||
"folder-count": "Кількість директорій:",
|
||||
"dictionary": "Список шляхів",
|
||||
"time-begin": "Час початку:",
|
||||
"time-now": "Поточний час:",
|
||||
"status": "Статус:",
|
||||
"ignore": "Ігнорувати",
|
||||
"working-close-confirm": "Робота виконується, завершити?",
|
||||
"time-interval": "Інтервал (секунд):",
|
||||
"work-mode-title": "Режим:",
|
||||
"work-mode": {
|
||||
"1": "Збіг по торренту",
|
||||
"2": "Збіг за директорією"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "Renaming a Torrent's Path",
|
||||
"oldname": "Old",
|
||||
"newname": "New"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "Add Trackers",
|
||||
"tip": "One Line, One Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "Set User Labels",
|
||||
"available": "Available:",
|
||||
"selected": "Selected:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "Назва",
|
||||
"hashString": "Хеш",
|
||||
"downloadDir": "Директорія",
|
||||
"totalSize": "Розмір",
|
||||
"status": "Стан",
|
||||
"percentDone": "%",
|
||||
"remainingTime": "Залишилося",
|
||||
"addedDate": "Додано",
|
||||
"completeSize": "Завантажено",
|
||||
"rateDownload": "Завантаження",
|
||||
"rateUpload": "Віддача",
|
||||
"leecherCount": "Лічі",
|
||||
"seederCount": "Сіди",
|
||||
"uploadedEver": "Віддано",
|
||||
"uploadRatio": "Рейтинг",
|
||||
"queuePosition": "Queue",
|
||||
"activityDate": "Activity Date",
|
||||
"trackers": "Trackers",
|
||||
"labels": "User Labels"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "Пауза",
|
||||
"1": "Очікує перевірки",
|
||||
"2": "Перевірка",
|
||||
"3": "Очікує завантаження",
|
||||
"4": "Завантаження",
|
||||
"5": "Очікує роздачу",
|
||||
"6": "Роздача"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "Загальні",
|
||||
"servers": "Трекери",
|
||||
"files": "Файли",
|
||||
"users": "Піри",
|
||||
"config": "Конфіг"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "Назва",
|
||||
"length": "Обсяг",
|
||||
"percentDone": "Завантажено %",
|
||||
"bytesCompleted": "Завантажено",
|
||||
"wanted": "Завантажувати",
|
||||
"priority": "Пріоритет"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "Анонс",
|
||||
"announceState": "Стан",
|
||||
"lastAnnounceResult": "Результат",
|
||||
"lastAnnounceSucceeded": "Успішно",
|
||||
"lastAnnounceTime": "Час анонсу",
|
||||
"lastAnnounceTimedOut": "Тайм-аут",
|
||||
"downloadCount": "Кількість завантажень",
|
||||
"nextAnnounceTime": "Наступний анонс"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "IP адреса",
|
||||
"clientName": "Клієнт",
|
||||
"flagStr": "Країна",
|
||||
"progress": "Прогрес",
|
||||
"rateToClient": "Швидкість прийому",
|
||||
"rateToPeer": "Швидкість віддачі"
|
||||
},
|
||||
"status": {
|
||||
"true": "Так",
|
||||
"false": "Немає"
|
||||
},
|
||||
"priority": {
|
||||
"0": "Нормальний",
|
||||
"1": "Високий",
|
||||
"-1": "Низький"
|
||||
},
|
||||
"label": {
|
||||
"name": "Назва:",
|
||||
"addedDate": "Додано:",
|
||||
"totalSize": "Загальний обсяг:",
|
||||
"completeSize": "Завантажено:",
|
||||
"leftUntilDone": "Залишилося:",
|
||||
"hashString": "Хеш:",
|
||||
"downloadDir": "Директорія:",
|
||||
"status": "Стан:",
|
||||
"rateDownload": "Швидкість завантаження:",
|
||||
"rateUpload": "Швидкість віддачі:",
|
||||
"leecherCount": "Лічери:",
|
||||
"seederCount": "Сідери:",
|
||||
"uploadedEver": "Віддано всього:",
|
||||
"uploadRatio": "Рейтинг отдачи:",
|
||||
"creator": "Автор:",
|
||||
"dateCreated": "Створений:",
|
||||
"comment": "Коментар:",
|
||||
"errorString": "Помилка:",
|
||||
"downloadLimited": "Максимальна швидкість завантаження: ",
|
||||
"uploadLimited": "Максимальна швидкість віддачі: ",
|
||||
"peer-limit": "Максимум пірів на торрент: ",
|
||||
"seedRatioMode": "Роздача буде зупинена на рейтингу: ",
|
||||
"seedIdleMode": "Роздача буде зупинена якщо немає активності: ",
|
||||
"doneDate": "Finish Time:",
|
||||
"seedTime": "Seed Time:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "Завантажити вибрані файли",
|
||||
"button-deny": "Пропустити вибрані файли",
|
||||
"button-priority": "Встановити пріоритет",
|
||||
"button-tracker-add": "Add New Tracker",
|
||||
"button-tracker-edit": "Edit Tracker",
|
||||
"button-tracker-remove": "Remove Tracker"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "Ви впевнені, що хочете видалити цей трекер?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "Відображати атрибути"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "Неизвестно",
|
||||
"text-drop-title": "Перетягніть .torrent файл область \"Завантаження\" щоб додати завдання.",
|
||||
"text-saved": "Збережено",
|
||||
"text-nochange": "Без змін",
|
||||
"text-info": "Інформація",
|
||||
"text-confirm": "Ви впевнені?",
|
||||
"text-browsers-not-support-features": "Поточний браузер не підтримує цей функціонал!",
|
||||
"text-download-update": "Завантажити це оновлення",
|
||||
"text-have-update": "Доступно нове оновлення",
|
||||
"text-on": "ON",
|
||||
"text-off": "OFF",
|
||||
"text-how-to-update": "How to update?",
|
||||
"text-ignore-this-version": "Ignore this version"
|
||||
}
|
||||
}
|
||||
448
apps/transmission/web/tr-web-control/i18n/zh_CN.json
Normal file
@@ -0,0 +1,448 @@
|
||||
{
|
||||
"name": "zh-CN",
|
||||
"author": "栽培者, vodek3",
|
||||
"system": {
|
||||
"title": "Transmission WEB 控制器",
|
||||
"status": {
|
||||
"connect": "正在连接服务器…",
|
||||
"connected": "已连接至服务器",
|
||||
"queue": "队列:",
|
||||
"queuefinish": "本次队列完成。",
|
||||
"notfinal": "未完成……",
|
||||
"checked": "已选中 %n 条数据:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "数据错误",
|
||||
"data-post-error": "数据提交错误",
|
||||
"rename-error": "修改名称失败!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "保存目录"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "开始",
|
||||
"pause": "暂停",
|
||||
"recheck": "校验",
|
||||
"start-all": "全部开始",
|
||||
"pause-all": "全部暂停",
|
||||
"remove": "删除",
|
||||
"remove-all": "删除所有",
|
||||
"remove-data": "删除任务和数据",
|
||||
"add-torrent": "添加种子",
|
||||
"attribute": "属性",
|
||||
"alt-speed": "限速",
|
||||
"system-config": "参数",
|
||||
"system-reload": "刷新",
|
||||
"about": "关于",
|
||||
"reload-time": "自动刷新:",
|
||||
"reload-time-unit": "秒/次",
|
||||
"autoreload-disabled": "已禁用",
|
||||
"autoreload-enabled": "已启用",
|
||||
"search-prompt": "搜索本地种子",
|
||||
"tracker-replace": "替换 Tracker",
|
||||
"queue": "队列",
|
||||
"ui-mobile": "移动UI",
|
||||
"ui-original": "原版UI",
|
||||
"ui-computer": "桌面UI",
|
||||
"plugin": "扩展功能/插件",
|
||||
"rename": "改名",
|
||||
"copy-path-to-clipboard": "复制保存目录到剪切板",
|
||||
"tip": {
|
||||
"start": "重新开始已经选中的种子",
|
||||
"pause": "暂停已经选中的种子",
|
||||
"recheck": "重新校验已选中的种子",
|
||||
"recheck-confirm": "确定要重新校验已选中的种子吗?这可能需要些时间!",
|
||||
"start-all": "全部开始",
|
||||
"pause-all": "全部暂停",
|
||||
"remove": "删除已经选中的任务",
|
||||
"delete-all": "删除所有任务(不删除数据)",
|
||||
"delete-data": "删除已经选中的种子任务和数据",
|
||||
"add-torrent": "添加种子",
|
||||
"attribute": "属性",
|
||||
"alt-speed": "以系统设置的速度限制上传和下载",
|
||||
"system-config": "配置系统参数",
|
||||
"system-reload": "刷新当前数据",
|
||||
"about": "关于本程序",
|
||||
"autoreload-disabled": "禁用自动刷新",
|
||||
"autoreload-enabled": "启用自动刷新",
|
||||
"tracker-replace": "替换 Tracker",
|
||||
"change-download-dir": "变更数据保存目录",
|
||||
"ui-mobile": "切换到移动设备界面",
|
||||
"ui-original": "切换到原版界面",
|
||||
"more-peers": "获取更多Peer",
|
||||
"rename": "修改种子文件或目录名称",
|
||||
"copy-path-to-clipboard": "复制保存目录到剪切板"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "队列排到最前",
|
||||
"move-up": "队列向上移动",
|
||||
"move-down": "队列向下移动",
|
||||
"move-bottom": "队列排到最后"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "自动匹配数据目录"
|
||||
},
|
||||
"setLabels": "设置用户标签"
|
||||
},
|
||||
"title": {
|
||||
"left": "导航",
|
||||
"list": "种子列表",
|
||||
"attribute": "当前种子属性",
|
||||
"status": "状态"
|
||||
},
|
||||
"tree": {
|
||||
"all": "全部",
|
||||
"active": "活动中",
|
||||
"paused": "已暂停",
|
||||
"downloading": "下载中",
|
||||
"sending": "正在做种",
|
||||
"error": "错误",
|
||||
"warning": "警告",
|
||||
"actively": "活动中",
|
||||
"check": "正在校验",
|
||||
"wait": "等待中",
|
||||
"search-result": "搜索结果",
|
||||
"status": {
|
||||
"loading": "加载中…"
|
||||
},
|
||||
"statistics": {
|
||||
"title": "数据统计",
|
||||
"cumulative": "累计",
|
||||
"current": "当前会话",
|
||||
"uploadedBytes": "已上传:",
|
||||
"downloadedBytes": "已下载:",
|
||||
"filesAdded": "已添加文件:",
|
||||
"sessionCount": "会话次数:",
|
||||
"secondsActive": "活动时间:"
|
||||
},
|
||||
"servers": "服务器分布",
|
||||
"folders": "数据目录",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "数据目录"
|
||||
}
|
||||
},
|
||||
"labels": "用户标签"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "下载速度:",
|
||||
"uploadspeed": "上传速度:",
|
||||
"version": "版本:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "保存目录:",
|
||||
"torrent-url": "种子地址:",
|
||||
"tip-torrent-url": "注:复制种子链接到列表中,多个种子用“回车”分隔。",
|
||||
"autostart": "自动开始:",
|
||||
"set-default-download-dir": "设为默认保存目录",
|
||||
"upload-file": "种子文件:",
|
||||
"nosource": "没有选择种子或没有输入URL地址",
|
||||
"tip-title": "上传文件优先于URL"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "服务器参数设置",
|
||||
"tabs": {
|
||||
"base": "基本设置",
|
||||
"network": "网络传输",
|
||||
"limit": "带宽限制",
|
||||
"alt-speed": "时段限制",
|
||||
"dictionary-folders": "目录字典",
|
||||
"more": "额外设置",
|
||||
"labels": "用户标签"
|
||||
},
|
||||
"config-dir": "Transmission 配置文件目录(只读):",
|
||||
"download-dir": "默认保存目录:",
|
||||
"download-dir-free-space": "可用空间:",
|
||||
"incomplete-dir-enabled": "启用临时目录",
|
||||
"cache-size-mb": "磁盘缓存大小:",
|
||||
"rename-partial-files": "在未完成的文件名后加上“.part”后缀",
|
||||
"start-added-torrents": "自动开始新添加的种子",
|
||||
"download-queue-enabled": "启用下载队列,最大同时下载数:",
|
||||
"seed-queue-enabled": "启用上传队列,最大同时上传数:",
|
||||
"peer-port-random-on-start": "启用随机端口,或使用固定端口:",
|
||||
"port-forwarding-enabled": "启用端口转发",
|
||||
"test-port": "测试端口",
|
||||
"port-is-open-true": "端口可连接",
|
||||
"port-is-open-false": "端口不可连接",
|
||||
"testing": "测试中...",
|
||||
"encryption": "数据传输加密方式:",
|
||||
"encryption-type": {
|
||||
"required": "必须(required)",
|
||||
"preferred": "优先(preferred)",
|
||||
"tolerated": "允许(tolerated)"
|
||||
},
|
||||
"utp-enabled": "启用 µTP(UPnP)",
|
||||
"dht-enabled": "启用分布式哈希表(DHT)",
|
||||
"lpd-enabled": "启用本地用户发现(LPD)",
|
||||
"pex-enabled": "启用用户交换",
|
||||
"peer-limit-global": "全局链接数限制为:",
|
||||
"peer-limit-per-torrent": "每个种子最大链接数:",
|
||||
"speed-limit-down-enabled": "启用最大下载速度限制:",
|
||||
"speed-limit-up-enabled": "启用最大上传速度限制:",
|
||||
"alt-speed-enabled": "启用备用带宽",
|
||||
"alt-speed-down": "最大下载速度限制为:",
|
||||
"alt-speed-up": "最大上传速度限制为:",
|
||||
"alt-speed-time-enabled": "启用时间段限制",
|
||||
"alt-speed-time": "时间:",
|
||||
"weekday": {
|
||||
"1": "星期一",
|
||||
"2": "星期二",
|
||||
"3": "星期三",
|
||||
"4": "星期四",
|
||||
"5": "星期五",
|
||||
"6": "星期六",
|
||||
"0": "星期天"
|
||||
},
|
||||
"blocklist-enabled": "启用黑名单列表:",
|
||||
"blocklist-size": "可用规则数量:%n",
|
||||
"seedRatioLimited": "当种子的分享率达到这个数时,自动停止做种:",
|
||||
"queue-stalled-enabled": "当未完成的种子超过这个时间没有收到数据时,自动停止下载:",
|
||||
"idle-seeding-limit-enabled": "当种子超过这个时间没有流量时,自动停止做种:",
|
||||
"minutes": "分钟",
|
||||
"nochange": "参数未改变",
|
||||
"saving": "正在保存...",
|
||||
"show-bt-servers": "在『服务器分布』中显示『BT』服务器列表:",
|
||||
"restore-default-settings": "恢复界面默认设置(含主题)",
|
||||
"language": "界面语言:",
|
||||
"loading": "正在加载...",
|
||||
"hide-subfolders": "点击数据目录时,在列表中不显示子目录下的种子:",
|
||||
"simple-check-mode": "在种子列表上单击鼠标右键时,仅选中一个种子:",
|
||||
"nav-contents": "导航栏显示内容:",
|
||||
"labels-manage": {
|
||||
"name": "标签名称",
|
||||
"description": "描述",
|
||||
"color": "颜色",
|
||||
"actions": "操作",
|
||||
"import-confirm": "是否确认导入标签信息?这将覆盖当前配置。"
|
||||
},
|
||||
"import-config": "从备份文件中导入配置",
|
||||
"export-config": "导出当前配置到配置文件(内容包括:Transmission 参数、WebUI 配置)",
|
||||
"import-config-confirm": "是否确认导入这些配置信息?这将覆盖当前配置。"
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "确定",
|
||||
"button-cancel": "取消",
|
||||
"button-reload": "刷新",
|
||||
"button-save": "保存",
|
||||
"button-close": "关闭",
|
||||
"button-update": "更新",
|
||||
"button-config": "设置",
|
||||
"button-addnew": "新增",
|
||||
"button-edit": "修改",
|
||||
"button-delete": "删除",
|
||||
"button-export": "导出",
|
||||
"button-import": "导入"
|
||||
},
|
||||
"about": {
|
||||
"infos": "程序设计:栽培者<br/>使用帮助:<a href='https://github.com/ronggang/transmission-web-control/wiki/Home-CN'>查看</a><br/>QQ群:723130968 <a target='_blank' href='https://shang.qq.com/wpa/qunwpa?idkey=353d3f247de2b78c071e28a31777022424660c97c9fdd6f25640a4a51c6b9d65' ><img border='0' src='https://pub.idqqimg.com/wpa/images/group.png' alt='Transmission Web Control' title='Transmission Web Control (723130968)'></a>",
|
||||
"check-update": "检查更新",
|
||||
"home": "项目主页",
|
||||
"help": "使用帮助",
|
||||
"donate": "打赏",
|
||||
"pt-plugin": "PT助手"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "删除种子确认",
|
||||
"confirm-text": "确认要删除已选择的种子吗?",
|
||||
"remove-data": "同时删除数据",
|
||||
"remove-error": "种子删除失败!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "设置新目录",
|
||||
"old-download-dir": "原目录:",
|
||||
"new-download-dir": "新目录:",
|
||||
"move-data": "同时移动数据(如果不钩选,则从新目录下查找文件)",
|
||||
"set-error": "设置目录失败!",
|
||||
"recheck-data": "设置完成后重新校验。"
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "替换 Tracker 地址",
|
||||
"old-tracker": "原 Tracker:",
|
||||
"new-tracker": "新 Tracker:",
|
||||
"tip": "此功能将查找<b>所有种子</b>的 Tracker,如果找到相等的,则替换。",
|
||||
"not-found": "未找到符合条件的 Tracker。"
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "自动匹配数据目录",
|
||||
"torrent-count": "将被操作的种子数量:",
|
||||
"folder-count": "目录字典数量:",
|
||||
"dictionary": "目录字典",
|
||||
"time-begin": "开始时间:",
|
||||
"time-now": "当前时间:",
|
||||
"status": "状态:",
|
||||
"ignore": "忽略这个",
|
||||
"working-close-confirm": "系统正在进行目录匹配,确定要终止并关闭吗?",
|
||||
"time-interval": "时间间隔(秒):",
|
||||
"work-mode-title": "处理方式:",
|
||||
"work-mode": {
|
||||
"1": "按种子逐个匹配目录",
|
||||
"2": "按目录逐个匹配种子"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "修改种子文件或目录名称",
|
||||
"oldname": "原名称",
|
||||
"newname": "新名称"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "增加 Tracker",
|
||||
"tip": "每行表示一个Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "设置用户标签",
|
||||
"available": "可用标签:",
|
||||
"selected": "已选择:"
|
||||
},
|
||||
"export-config": {
|
||||
"title": "请选择需要导出的配置",
|
||||
"option-all": "所有配置",
|
||||
"option-system": "Web Control 参数配置(包含用户标签)",
|
||||
"option-dictionary": "用户定义的目录字典",
|
||||
"option-server": "Transmission 服务端配置(如下载目录、缓存、限速等所有可配置参数)"
|
||||
},
|
||||
"import-config": {
|
||||
"title": "请选择需要导入的配置",
|
||||
"invalid-file": "无效的配置文件"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "名称",
|
||||
"hashString": "HASH",
|
||||
"downloadDir": "保存目录",
|
||||
"totalSize": "总大小",
|
||||
"status": "状态",
|
||||
"percentDone": "进度",
|
||||
"remainingTime": "剩余时间",
|
||||
"addedDate": "添加时间",
|
||||
"completeSize": "已完成",
|
||||
"rateDownload": "下载速度",
|
||||
"rateUpload": "上传速度",
|
||||
"leecherCount": "下载|活跃",
|
||||
"seederCount": "种子|活跃",
|
||||
"uploadedEver": "已上传",
|
||||
"uploadRatio": "分享率",
|
||||
"queuePosition": "队列",
|
||||
"activityDate": "最后活动于",
|
||||
"trackers": "服务器",
|
||||
"labels": "用户标签"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "已暂停",
|
||||
"1": "正在等待校验",
|
||||
"2": "正在校验",
|
||||
"3": "正在等待下载",
|
||||
"4": "下载中",
|
||||
"5": "等待做种",
|
||||
"6": "做种中"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "常规",
|
||||
"servers": "服务器",
|
||||
"files": "文件",
|
||||
"users": "用户",
|
||||
"config": "设置"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "名称",
|
||||
"length": "大小",
|
||||
"percentDone": "进度",
|
||||
"bytesCompleted": "已下载",
|
||||
"wanted": "需要下载",
|
||||
"priority": "优先级别"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "服务器",
|
||||
"announceState": "状态",
|
||||
"lastAnnounceResult": "信息",
|
||||
"lastAnnounceSucceeded": "已连接",
|
||||
"lastAnnounceTime": "更新时间",
|
||||
"lastAnnounceTimedOut": "超时",
|
||||
"downloadCount": "总下载数",
|
||||
"nextAnnounceTime": "下次更新时间"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "IP地址",
|
||||
"clientName": "客户端",
|
||||
"flagStr": "标记",
|
||||
"progress": "完成进度",
|
||||
"rateToClient": "下载速度",
|
||||
"rateToPeer": "上传速度"
|
||||
},
|
||||
"status": {
|
||||
"true": "是",
|
||||
"false": "否"
|
||||
},
|
||||
"priority": {
|
||||
"0": "正常",
|
||||
"1": "高",
|
||||
"-1": "低"
|
||||
},
|
||||
"label": {
|
||||
"name": "名称:",
|
||||
"addedDate": "添加时间:",
|
||||
"totalSize": "大小:",
|
||||
"completeSize": "已完成大小:",
|
||||
"leftUntilDone": "剩余:",
|
||||
"hashString": "HASH:",
|
||||
"downloadDir": "保存目录:",
|
||||
"status": "状态:",
|
||||
"rateDownload": "下载速度:",
|
||||
"rateUpload": "上传速度:",
|
||||
"leecherCount": "下载(活跃):",
|
||||
"seederCount": "种子(活跃):",
|
||||
"uploadedEver": "已上传:",
|
||||
"uploadRatio": "分享率:",
|
||||
"creator": "创建者:",
|
||||
"dateCreated": "创建时间:",
|
||||
"comment": "描述:",
|
||||
"errorString": "错误信息:",
|
||||
"downloadLimited": "启用最大下载速度限制:",
|
||||
"uploadLimited": "启用最大上传速度限制:",
|
||||
"peer-limit": "最大链接数:",
|
||||
"seedRatioMode": "当种子的分享率达到这个数时,自动停止做种:",
|
||||
"seedIdleMode": "当种子超过这个时间没有流量时,自动停止做种:",
|
||||
"doneDate": "完成时间:",
|
||||
"seedTime": "做种时间:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "下载已选择的文件",
|
||||
"button-deny": "忽略已选择的文件",
|
||||
"button-priority": "设置优先级别",
|
||||
"button-tracker-add": "增加新的 Tracker",
|
||||
"button-tracker-edit": "修改已选中的 Tracker 地址",
|
||||
"button-tracker-remove": "删除已选中的 Tracker 地址"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "确认要删除这个 Tracker 吗?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "自动显示种子属性"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "未知",
|
||||
"text-drop-title": "快放开,让我看看你是不是拖的种子文件!",
|
||||
"text-saved": "已保存",
|
||||
"text-nochange": "参数未改变",
|
||||
"text-info": "信息",
|
||||
"text-confirm": "确认要这样做吗?",
|
||||
"text-browsers-not-support-features": "当前浏览器不支持该功能!",
|
||||
"text-download-update": "下载这个更新",
|
||||
"text-have-update": "点击查看更新内容",
|
||||
"text-on": "开",
|
||||
"text-off": "关",
|
||||
"text-how-to-update": "如何更新?",
|
||||
"text-ignore-this-version": "忽略这个版本",
|
||||
"text-json-file-parsing-failed": "JSON文件解析失败!"
|
||||
}
|
||||
}
|
||||
433
apps/transmission/web/tr-web-control/i18n/zh_TW.json
Normal file
@@ -0,0 +1,433 @@
|
||||
{
|
||||
"name": "zh-TW",
|
||||
"author": "Sean, vodek3",
|
||||
"system": {
|
||||
"title": "Transmission WEB 控制台",
|
||||
"status": {
|
||||
"connect": "正在連接伺服器…",
|
||||
"connected": "已連接至伺服器",
|
||||
"queue": "佇列:",
|
||||
"queuefinish": "本次佇列完成。",
|
||||
"notfinal": "未完成……",
|
||||
"checked": "已選中 %n 條數據:"
|
||||
}
|
||||
},
|
||||
"error": {
|
||||
"data-error": "資料錯誤",
|
||||
"data-post-error": "資料提交錯誤",
|
||||
"rename-error": "修改名稱失敗!"
|
||||
},
|
||||
"config": {
|
||||
"save-path": "儲存資料夾"
|
||||
},
|
||||
"toolbar": {
|
||||
"start": "開始",
|
||||
"pause": "暫停",
|
||||
"recheck": "稽核",
|
||||
"start-all": "全部開始",
|
||||
"pause-all": "全部暫停",
|
||||
"remove": "刪除",
|
||||
"remove-all": "刪除所有",
|
||||
"remove-data": "刪除任務和資料",
|
||||
"add-torrent": "新增種子",
|
||||
"attribute": "屬性",
|
||||
"alt-speed": "限速",
|
||||
"system-config": "參數",
|
||||
"system-reload": "重新整理",
|
||||
"about": "關於",
|
||||
"reload-time": "自動重整:",
|
||||
"reload-time-unit": "秒/次",
|
||||
"autoreload-disabled": "已停用",
|
||||
"autoreload-enabled": "已啟用",
|
||||
"search-prompt": "搜尋本機種子",
|
||||
"tracker-replace": "更換 Tracker",
|
||||
"queue": "佇列",
|
||||
"ui-mobile": "行動UI",
|
||||
"ui-original": "原版UI",
|
||||
"ui-computer": "桌面UI",
|
||||
"plugin": "擴充功能/外掛",
|
||||
"rename": "改名",
|
||||
"copy-path-to-clipboard": "複製保存目錄到剪切板",
|
||||
"tip": {
|
||||
"start": "重新開始已經選取的種子",
|
||||
"pause": "暫停已經選取的種子",
|
||||
"recheck": "重新稽核已經選取的種子",
|
||||
"recheck-confirm": "確定要重新稽核選取的種子嗎?這可能需要些時間!",
|
||||
"start-all": "全部開始",
|
||||
"pause-all": "全部暫停",
|
||||
"remove": "刪除已經選取的任務",
|
||||
"delete-all": "刪除所有任務(不刪除檔案)",
|
||||
"delete-data": "刪除選取的種子任務和檔案",
|
||||
"add-torrent": "新增種子",
|
||||
"attribute": "屬性",
|
||||
"alt-speed": "以系統設定的速度限制上傳和下載",
|
||||
"system-config": "配置系統參數",
|
||||
"system-reload": "更新目前資料",
|
||||
"about": "關於本程式",
|
||||
"autoreload-disabled": "停用自動重整",
|
||||
"autoreload-enabled": "啟用自動重整",
|
||||
"tracker-replace": "取代 Tracker",
|
||||
"change-download-dir": "變更下載資料夾",
|
||||
"ui-mobile": "切換到行動裝置界面",
|
||||
"ui-original": "切換到原版界面",
|
||||
"more-peers": "取得更多Peer",
|
||||
"rename": "修改種子文件或目錄名稱",
|
||||
"copy-path-to-clipboard": "複製保存目錄到剪切板"
|
||||
}
|
||||
},
|
||||
"menus": {
|
||||
"queue": {
|
||||
"move-top": "置頂",
|
||||
"move-up": "上移",
|
||||
"move-down": "下移",
|
||||
"move-bottom": "置底"
|
||||
},
|
||||
"plugin": {
|
||||
"auto-match-data-folder": "自動配對資料夾"
|
||||
},
|
||||
"setLabels": "設置使用者標籤"
|
||||
},
|
||||
"title": {
|
||||
"left": "分類資料夾",
|
||||
"list": "種子清單",
|
||||
"attribute": "目前種子屬性",
|
||||
"status": "狀態"
|
||||
},
|
||||
"tree": {
|
||||
"all": "全部",
|
||||
"active": "正在使用",
|
||||
"paused": "暫停",
|
||||
"downloading": "正在下載",
|
||||
"sending": "正在做種",
|
||||
"error": "錯誤",
|
||||
"warning": "警告",
|
||||
"actively": "正在使用",
|
||||
"check": "正在稽核",
|
||||
"wait": "等待",
|
||||
"search-result": "搜尋結果",
|
||||
"status": {
|
||||
"loading": "載入中…"
|
||||
},
|
||||
"statistics": {
|
||||
"title": "資料統計",
|
||||
"cumulative": "累計",
|
||||
"current": "目前工作階段",
|
||||
"uploadedBytes": "已上傳:",
|
||||
"downloadedBytes": "已下載:",
|
||||
"filesAdded": "已增加檔案:",
|
||||
"sessionCount": "工作階段次數:",
|
||||
"secondsActive": "使用時間:"
|
||||
},
|
||||
"servers": "伺服器分佈",
|
||||
"folders": "資料夾",
|
||||
"toolbar": {
|
||||
"nav": {
|
||||
"folders": "資料夾"
|
||||
}
|
||||
},
|
||||
"labels": "使用者標籤"
|
||||
},
|
||||
"statusbar": {
|
||||
"downloadspeed": "下載速度:",
|
||||
"uploadspeed": "上傳速度:",
|
||||
"version": "版本:"
|
||||
},
|
||||
"dialog": {
|
||||
"torrent-add": {
|
||||
"download-dir": "下載資料夾:",
|
||||
"torrent-url": "種子地址:",
|
||||
"tip-torrent-url": "註:貼上種子連結到清單中,多個種子用「換行」分隔。",
|
||||
"autostart": "自動開始:",
|
||||
"set-default-download-dir": "設為預設儲存資料夾",
|
||||
"upload-file": "種子檔案:",
|
||||
"nosource": "沒有選擇種子或沒有輸入URL位址",
|
||||
"tip-title": "上傳檔案優先於URL"
|
||||
},
|
||||
"system-config": {
|
||||
"title": "伺服器參數設定",
|
||||
"tabs": {
|
||||
"base": "基本設定",
|
||||
"network": "網路傳輸",
|
||||
"limit": "頻寬限制",
|
||||
"alt-speed": "時段限制",
|
||||
"dictionary-folders": "資料夾字典",
|
||||
"more": "額外設置",
|
||||
"labels": "使用者標籤"
|
||||
},
|
||||
"config-dir": "Transmission 組態檔資料夾(唯讀):",
|
||||
"download-dir": "預設儲存資料夾:",
|
||||
"download-dir-free-space": "可用空間:",
|
||||
"incomplete-dir-enabled": "啟用臨時資料夾",
|
||||
"cache-size-mb": "磁碟快取大小:",
|
||||
"rename-partial-files": "在未完成的檔案名後加上「.part」尾碼",
|
||||
"start-added-torrents": "自動開始新加的種子",
|
||||
"download-queue-enabled": "啟用下載佇列,最大同時下載數:",
|
||||
"seed-queue-enabled": "啟用上傳佇列,最大同時上傳數:",
|
||||
"peer-port-random-on-start": "啟用隨機埠,或使用固定埠:",
|
||||
"port-forwarding-enabled": "啟用埠轉送",
|
||||
"test-port": "測試埠",
|
||||
"port-is-open-true": "埠可連接",
|
||||
"port-is-open-false": "埠不可連接",
|
||||
"testing": "測試中...",
|
||||
"encryption": "資料傳輸加密方式:",
|
||||
"encryption-type": {
|
||||
"required": "必須(required)",
|
||||
"preferred": "優先(preferred)",
|
||||
"tolerated": "允許(tolerated)"
|
||||
},
|
||||
"utp-enabled": "啟用 µTP (UPnP)",
|
||||
"dht-enabled": "啟用分散式雜湊表(DHT)",
|
||||
"lpd-enabled": "啟用本機點探索(LPD)",
|
||||
"pex-enabled": "啟用用戶交換",
|
||||
"peer-limit-global": "全域連結數限制為:",
|
||||
"peer-limit-per-torrent": "每個種子最大連結數:",
|
||||
"speed-limit-down-enabled": "啟用最大下載速度限制:",
|
||||
"speed-limit-up-enabled": "啟用最大上傳速度限制:",
|
||||
"alt-speed-enabled": "啟用備用頻寬",
|
||||
"alt-speed-down": "最大下載速度限制為:",
|
||||
"alt-speed-up": "最大上傳速度限制為:",
|
||||
"alt-speed-time-enabled": "啟用時段限制",
|
||||
"alt-speed-time": "時間:",
|
||||
"weekday": {
|
||||
"1": "星期一",
|
||||
"2": "星期二",
|
||||
"3": "星期三",
|
||||
"4": "星期四",
|
||||
"5": "星期五",
|
||||
"6": "星期六",
|
||||
"0": "星期天"
|
||||
},
|
||||
"blocklist-enabled": "啟用黑名單:",
|
||||
"blocklist-size": "可用規則數量:%n",
|
||||
"seedRatioLimited": "當種子的分享率達到這個數時,自動停止做種:",
|
||||
"queue-stalled-enabled": "當未完成的種子超過這個時間沒有收到資料時,自動停止下載:",
|
||||
"idle-seeding-limit-enabled": "當種子超過這個時間沒有流量時,自動停止做種:",
|
||||
"minutes": "分鐘",
|
||||
"nochange": "參數未改變",
|
||||
"saving": "儲存中...",
|
||||
"show-bt-servers": "在『伺服器分佈』中顯示『BT』伺服器列表:",
|
||||
"restore-default-settings": "恢復界面默認設置(含主題)",
|
||||
"language": "界面語言:",
|
||||
"loading": "加載中...",
|
||||
"hide-subfolders": "點擊數據目錄時,在列表中不顯示子目錄下的種子:",
|
||||
"simple-check-mode": "在種子列表上單擊滑鼠右鍵時,僅選中一個種子:",
|
||||
"nav-contents": "巡覽列顯示內容:",
|
||||
"labels-manage": {
|
||||
"name": "標籤名稱",
|
||||
"description": "描述",
|
||||
"color": "顏色",
|
||||
"actions": "操作",
|
||||
"import-confirm": "是否確認導入標籤資訊? 這將覆蓋當前配置。"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"button-ok": "確定",
|
||||
"button-cancel": "取消",
|
||||
"button-reload": "重整",
|
||||
"button-save": "儲存",
|
||||
"button-close": "關閉",
|
||||
"button-update": "更新",
|
||||
"button-config": "設定",
|
||||
"button-addnew": "新增",
|
||||
"button-edit": "編輯",
|
||||
"button-delete": "刪除",
|
||||
"button-export": "匯出",
|
||||
"button-import": "導入"
|
||||
},
|
||||
"about": {
|
||||
"infos": "程式設計、製作:栽培者<br/>聲明:本程式使用的大部分圖示來自網路,如有侵犯您的權益,請與本人聯繫刪除。<br/>如您有什麼意見建議,也歡迎與我聯繫。",
|
||||
"check-update": "檢查更新",
|
||||
"home": "項目主頁",
|
||||
"help": "使用幫助",
|
||||
"donate": "捐贈",
|
||||
"pt-plugin": "PT助手"
|
||||
},
|
||||
"torrent-remove": {
|
||||
"title": "刪除種子確認",
|
||||
"confirm-text": "確認要刪除已選擇的種子嗎?",
|
||||
"remove-data": "同時刪除資料",
|
||||
"remove-error": "種子刪除失敗!"
|
||||
},
|
||||
"torrent-changeDownloadDir": {
|
||||
"title": "設定新資料夾",
|
||||
"old-download-dir": "原資料夾:",
|
||||
"new-download-dir": "新資料夾:",
|
||||
"move-data": "同時移動資料(如不勾選,則從新資料夾下搜尋資料)",
|
||||
"set-error": "設定資料夾失敗!",
|
||||
"recheck-data": "設定完成後重新稽核。"
|
||||
},
|
||||
"system-replaceTracker": {
|
||||
"title": "取代 Tracker 地址",
|
||||
"old-tracker": "原 Tracker:",
|
||||
"new-tracker": "新 Tracker:",
|
||||
"tip": "此功能將搜尋<b>所有種子</b>的 Tracker,如果找到相等的,則取代。",
|
||||
"not-found": "未找到符合條件的 Tracker。"
|
||||
},
|
||||
"auto-match-data-folder": {
|
||||
"title": "自動配對目錄",
|
||||
"torrent-count": "將被操作的種子數量:",
|
||||
"folder-count": "目錄字典數量:",
|
||||
"dictionary": "目錄字典",
|
||||
"time-begin": "開始始時間:",
|
||||
"time-now": "目前時間:",
|
||||
"status": "狀態:",
|
||||
"ignore": "忽略",
|
||||
"working-close-confirm": "系統正在進行目錄配對,確定要終止並關閉嗎?",
|
||||
"time-interval": "時間間隔(秒):",
|
||||
"work-mode-title": "處理方式:",
|
||||
"work-mode": {
|
||||
"1": "按種子逐個配對目錄",
|
||||
"2": "按目錄逐個配對種子"
|
||||
}
|
||||
},
|
||||
"torrent-rename": {
|
||||
"title": "修改種子檔或目錄名稱",
|
||||
"oldname": "原名稱",
|
||||
"newname": "新名稱"
|
||||
},
|
||||
"torrent-attribute-add-tracker": {
|
||||
"title": "增加 Tracker",
|
||||
"tip": "每行表示一個 Tracker"
|
||||
},
|
||||
"torrent-setLabels": {
|
||||
"title": "設置使用者標籤",
|
||||
"available": "可用標籤:",
|
||||
"selected": "已選擇:"
|
||||
}
|
||||
},
|
||||
"torrent": {
|
||||
"fields": {
|
||||
"id": "#",
|
||||
"name": "名稱",
|
||||
"hashString": "雜湊",
|
||||
"downloadDir": "下載資料夾",
|
||||
"totalSize": "大小總計",
|
||||
"status": "狀態",
|
||||
"percentDone": "進度",
|
||||
"remainingTime": "剩餘時間",
|
||||
"addedDate": "加入時間",
|
||||
"completeSize": "完整大小",
|
||||
"rateDownload": "下載速度",
|
||||
"rateUpload": "上傳速度",
|
||||
"leecherCount": "下載|活躍",
|
||||
"seederCount": "種子|活躍",
|
||||
"uploadedEver": "已上傳",
|
||||
"uploadRatio": "分享率",
|
||||
"queuePosition": "佇列",
|
||||
"activityDate": "最後活動於",
|
||||
"trackers": "伺服器",
|
||||
"labels": "使用者標籤"
|
||||
},
|
||||
"status-text": {
|
||||
"0": "已暫停",
|
||||
"1": "正在等待稽核",
|
||||
"2": "正在稽核",
|
||||
"3": "正在等待下載",
|
||||
"4": "下載中",
|
||||
"5": "等待做種",
|
||||
"6": "做種中"
|
||||
},
|
||||
"attribute": {
|
||||
"tabs": {
|
||||
"base": "基本",
|
||||
"servers": "伺服器",
|
||||
"files": "檔案",
|
||||
"users": "帳號",
|
||||
"config": "設定"
|
||||
},
|
||||
"files-fields": {
|
||||
"name": "名稱",
|
||||
"length": "大小",
|
||||
"percentDone": "進度",
|
||||
"bytesCompleted": "已下載",
|
||||
"wanted": "需要下載",
|
||||
"priority": "優先順序別"
|
||||
},
|
||||
"servers-fields": {
|
||||
"announce": "伺服器",
|
||||
"announceState": "狀態",
|
||||
"lastAnnounceResult": "訊息",
|
||||
"lastAnnounceSucceeded": "已連接",
|
||||
"lastAnnounceTime": "更新時間",
|
||||
"lastAnnounceTimedOut": "超時",
|
||||
"downloadCount": "總下載數",
|
||||
"nextAnnounceTime": "下次更新時間"
|
||||
},
|
||||
"peers-fields": {
|
||||
"address": "IP地址",
|
||||
"clientName": "用戶端",
|
||||
"flagStr": "標記",
|
||||
"progress": "完成進度",
|
||||
"rateToClient": "下載速度",
|
||||
"rateToPeer": "上傳速度"
|
||||
},
|
||||
"status": {
|
||||
"true": "是",
|
||||
"false": "否"
|
||||
},
|
||||
"priority": {
|
||||
"0": "正常",
|
||||
"1": "高",
|
||||
"-1": "低"
|
||||
},
|
||||
"label": {
|
||||
"name": "名稱:",
|
||||
"addedDate": "添加時間:",
|
||||
"totalSize": "大小:",
|
||||
"completeSize": "已完成大小:",
|
||||
"leftUntilDone": "剩餘:",
|
||||
"hashString": "雜湊:",
|
||||
"downloadDir": "下載資料夾:",
|
||||
"status": "狀態:",
|
||||
"rateDownload": "下載速度:",
|
||||
"rateUpload": "上傳速度:",
|
||||
"leecherCount": "下載(活躍):",
|
||||
"seederCount": "種子(活躍):",
|
||||
"uploadedEver": "已上傳:",
|
||||
"uploadRatio": "分享率:",
|
||||
"creator": "建立者:",
|
||||
"dateCreated": "建立時間:",
|
||||
"comment": "描述:",
|
||||
"errorString": "錯誤資訊:",
|
||||
"downloadLimited": "啟用最大下載速度限制:",
|
||||
"uploadLimited": "啟用最大上傳速度限制:",
|
||||
"peer-limit": "最大連結數:",
|
||||
"seedRatioMode": "當種子的分享率達到這個數時,自動停止做種:",
|
||||
"seedIdleMode": "當種子超過這個時間沒有流量時,自動停止做種:",
|
||||
"doneDate": "完成時間:",
|
||||
"seedTime": "做種時間:"
|
||||
},
|
||||
"tip": {
|
||||
"button-allow": "下載已選擇的檔",
|
||||
"button-deny": "忽略已選擇的檔",
|
||||
"button-priority": "設置優先順序別",
|
||||
"button-tracker-add": "增加新的 Tracker",
|
||||
"button-tracker-edit": "修改已選中的 Tracker 地址",
|
||||
"button-tracker-remove": "刪除已選中的 Tracker 地址"
|
||||
},
|
||||
"other": {
|
||||
"tracker-remove-confim": "確認要刪除這個 Tracker 嗎?"
|
||||
}
|
||||
}
|
||||
},
|
||||
"torrent-head": {
|
||||
"buttons": {
|
||||
"autoExpandAttribute": "自動顯示種子屬性"
|
||||
}
|
||||
},
|
||||
"public": {
|
||||
"text-unknown": "未知",
|
||||
"text-drop-title": "將檔拖放在該區域內即可加到 Transmission。",
|
||||
"text-saved": "已儲存",
|
||||
"text-nochange": "參數未改變",
|
||||
"text-info": "資息",
|
||||
"text-confirm": "確認要這樣做嗎?",
|
||||
"text-browsers-not-support-features": "目前瀏覽器不支援該功能!",
|
||||
"text-download-update": "下載這個更新",
|
||||
"text-have-update": "有可用的更新",
|
||||
"text-on": "開",
|
||||
"text-off": "關",
|
||||
"text-how-to-update": "如何更新?",
|
||||
"text-ignore-this-version": "忽略這個版本"
|
||||
}
|
||||
}
|
||||
BIN
apps/transmission/web/tr-web-control/logo-white.png
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
apps/transmission/web/tr-web-control/logo.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
42
apps/transmission/web/tr-web-control/plugin.js
Normal file
@@ -0,0 +1,42 @@
|
||||
system.plugin = {
|
||||
exec: function(key)
|
||||
{
|
||||
switch (key)
|
||||
{
|
||||
// Replace Tracker
|
||||
case "replace-tracker":
|
||||
system.openDialogFromTemplate({
|
||||
id: "dialog-system-replaceTracker",
|
||||
options: {
|
||||
title: system.lang.dialog["system-replaceTracker"].title,
|
||||
width: 600,
|
||||
height: 220
|
||||
}
|
||||
});
|
||||
break;
|
||||
|
||||
// Automatically match the data directory
|
||||
case "auto-match-data-folder":
|
||||
var rows = system.control.torrentlist.datagrid("getChecked");
|
||||
var ids = new Array();
|
||||
for (var i in rows)
|
||||
{
|
||||
ids.push(rows[i].id);
|
||||
}
|
||||
if (ids.length==0) return;
|
||||
|
||||
system.openDialogFromTemplate({
|
||||
id: "dialog-auto-match-data-folder",
|
||||
options: {
|
||||
title: system.lang.dialog["auto-match-data-folder"].title,
|
||||
width: 530,
|
||||
height: 280
|
||||
},
|
||||
datas: {
|
||||
"ids": ids
|
||||
}
|
||||
});
|
||||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
220
apps/transmission/web/tr-web-control/script/FileSaver.js
Normal file
@@ -0,0 +1,220 @@
|
||||
/*
|
||||
Copyright (c) 2011 Eli Grey, http://eligrey.com
|
||||
This file is based on:
|
||||
https://github.com/eligrey/FileSaver.js/blob/master/FileSaver.js ,
|
||||
licensed under X11/MIT.
|
||||
See https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md
|
||||
|
||||
This file is part of SwitchySharp.
|
||||
SwitchySharp is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
SwitchySharp is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with SwitchySharp. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
var saveAs = saveAs || (function (view) {
|
||||
"use strict";
|
||||
var
|
||||
doc = view.document
|
||||
// only get URL when necessary in case BlobBuilder.js hasn't overridden it yet
|
||||
, get_URL = function () {
|
||||
return view.URL || view.webkitURL || view;
|
||||
}
|
||||
, URL = view.URL || view.webkitURL || view
|
||||
, save_link = doc.createElementNS("http://www.w3.org/1999/xhtml", "a")
|
||||
, can_use_save_link = "download" in save_link
|
||||
, click = function (node) {
|
||||
var event = doc.createEvent("MouseEvents");
|
||||
event.initMouseEvent(
|
||||
"click", true, false, view, 0, 0, 0, 0, 0
|
||||
, false, false, false, false, 0, null
|
||||
);
|
||||
return node.dispatchEvent(event); // false if event was cancelled
|
||||
}
|
||||
, webkit_req_fs = view.webkitRequestFileSystem
|
||||
, req_fs = view.requestFileSystem || webkit_req_fs || view.mozRequestFileSystem
|
||||
, throw_outside = function (ex) {
|
||||
(view.setImmediate || view.setTimeout)(function () {
|
||||
throw ex;
|
||||
}, 0);
|
||||
}
|
||||
, force_saveable_type = "application/octet-stream"
|
||||
, fs_min_size = 0
|
||||
, deletion_queue = []
|
||||
, process_deletion_queue = function () {
|
||||
var i = deletion_queue.length;
|
||||
while (i--) {
|
||||
var file = deletion_queue[i];
|
||||
if (typeof file === "string") { // file is an object URL
|
||||
URL.revokeObjectURL(file);
|
||||
} else { // file is a File
|
||||
file.remove();
|
||||
}
|
||||
}
|
||||
deletion_queue.length = 0; // clear queue
|
||||
}
|
||||
, dispatch = function (filesaver, event_types, event) {
|
||||
event_types = [].concat(event_types);
|
||||
var i = event_types.length;
|
||||
while (i--) {
|
||||
var listener = filesaver["on" + event_types[i]];
|
||||
if (typeof listener === "function") {
|
||||
try {
|
||||
listener.call(filesaver, event || filesaver);
|
||||
} catch (ex) {
|
||||
throw_outside(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
, FileSaver = function (blob, name) {
|
||||
// First try a.download, then web filesystem, then object URLs
|
||||
var
|
||||
filesaver = this
|
||||
, type = blob.type
|
||||
, blob_changed = false
|
||||
, object_url
|
||||
, target_view
|
||||
, get_object_url = function (blob) {
|
||||
var object_url = get_URL().createObjectURL(blob);
|
||||
deletion_queue.push(object_url);
|
||||
return object_url;
|
||||
}
|
||||
, dispatch_all = function () {
|
||||
dispatch(filesaver, "writestart progress write writeend".split(" "));
|
||||
}
|
||||
// on any filesys errors revert to saving with object URLs
|
||||
, fs_error = function () {
|
||||
// don't create more object URLs than needed
|
||||
if (blob_changed || !object_url) {
|
||||
object_url = get_object_url(blob);
|
||||
}
|
||||
target_view.location.href = object_url;
|
||||
filesaver.readyState = filesaver.DONE;
|
||||
dispatch_all();
|
||||
}
|
||||
, abortable = function (func) {
|
||||
return function () {
|
||||
if (filesaver.readyState !== filesaver.DONE) {
|
||||
return func.apply(this, arguments);
|
||||
}
|
||||
};
|
||||
}
|
||||
, create_if_not_found = {create:true, exclusive:false}
|
||||
, slice
|
||||
;
|
||||
filesaver.readyState = filesaver.INIT;
|
||||
if (!name) {
|
||||
name = "download";
|
||||
}
|
||||
if (can_use_save_link) {
|
||||
object_url = get_object_url(blob);
|
||||
save_link.href = object_url;
|
||||
save_link.download = name;
|
||||
if (click(save_link)) {
|
||||
filesaver.readyState = filesaver.DONE;
|
||||
dispatch_all();
|
||||
return;
|
||||
}
|
||||
}
|
||||
// Object and web filesystem URLs have a problem saving in Google Chrome when
|
||||
// viewed in a tab, so I force save with application/octet-stream
|
||||
// http://code.google.com/p/chromium/issues/detail?id=91158
|
||||
if (view.chrome && type && type !== force_saveable_type) {
|
||||
slice = blob.slice || blob.webkitSlice;
|
||||
blob = slice.call(blob, 0, blob.size, force_saveable_type);
|
||||
blob_changed = true;
|
||||
}
|
||||
// Since I can't be sure that the guessed media type will trigger a download
|
||||
// in WebKit, I append .download to the filename.
|
||||
// https://bugs.webkit.org/show_bug.cgi?id=65440
|
||||
//if (webkit_req_fs && name !== "download") {
|
||||
// name += ".download";
|
||||
//}
|
||||
if (type === force_saveable_type || webkit_req_fs) {
|
||||
target_view = view;
|
||||
} else {
|
||||
target_view = view.open();
|
||||
}
|
||||
if (!req_fs) {
|
||||
fs_error();
|
||||
return;
|
||||
}
|
||||
fs_min_size += blob.size;
|
||||
req_fs(view.TEMPORARY, fs_min_size, abortable(function (fs) {
|
||||
fs.root.getDirectory("saved", create_if_not_found, abortable(function (dir) {
|
||||
var save = function () {
|
||||
dir.getFile(name, create_if_not_found, abortable(function (file) {
|
||||
file.createWriter(abortable(function (writer) {
|
||||
writer.onwriteend = function (event) {
|
||||
target_view.location.href = file.toURL();
|
||||
deletion_queue.push(file);
|
||||
filesaver.readyState = filesaver.DONE;
|
||||
dispatch(filesaver, "writeend", event);
|
||||
};
|
||||
writer.onerror = function () {
|
||||
var error = writer.error;
|
||||
if (error.code !== error.ABORT_ERR) {
|
||||
fs_error();
|
||||
}
|
||||
};
|
||||
"writestart progress write abort".split(" ").forEach(function (event) {
|
||||
writer["on" + event] = filesaver["on" + event];
|
||||
});
|
||||
writer.write(blob);
|
||||
filesaver.abort = function () {
|
||||
writer.abort();
|
||||
filesaver.readyState = filesaver.DONE;
|
||||
};
|
||||
filesaver.readyState = filesaver.WRITING;
|
||||
}), fs_error);
|
||||
}), fs_error);
|
||||
};
|
||||
dir.getFile(name, {create:false}, abortable(function (file) {
|
||||
// delete file if it already exists
|
||||
file.remove();
|
||||
save();
|
||||
}), abortable(function (ex) {
|
||||
if (ex.code === ex.NOT_FOUND_ERR) {
|
||||
save();
|
||||
} else {
|
||||
fs_error();
|
||||
}
|
||||
}));
|
||||
}), fs_error);
|
||||
}), fs_error);
|
||||
}
|
||||
, FS_proto = FileSaver.prototype
|
||||
, saveAs = function (blob, name) {
|
||||
return new FileSaver(blob, name);
|
||||
}
|
||||
;
|
||||
FS_proto.abort = function () {
|
||||
var filesaver = this;
|
||||
filesaver.readyState = filesaver.DONE;
|
||||
dispatch(filesaver, "abort");
|
||||
};
|
||||
FS_proto.readyState = FS_proto.INIT = 0;
|
||||
FS_proto.WRITING = 1;
|
||||
FS_proto.DONE = 2;
|
||||
|
||||
FS_proto.error =
|
||||
FS_proto.onwritestart =
|
||||
FS_proto.onprogress =
|
||||
FS_proto.onwrite =
|
||||
FS_proto.onabort =
|
||||
FS_proto.onerror =
|
||||
FS_proto.onwriteend =
|
||||
null;
|
||||
|
||||
view.addEventListener("unload", process_deletion_queue, false);
|
||||
return saveAs;
|
||||
}(self));
|
||||
190
apps/transmission/web/tr-web-control/script/easyui/easyloader.js
Normal file
@@ -0,0 +1,190 @@
|
||||
/**
|
||||
* EasyUI for jQuery 1.5.4.5
|
||||
*
|
||||
* Copyright (c) 2009-2018 www.jeasyui.com. All rights reserved.
|
||||
*
|
||||
* Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php
|
||||
* To use it on other terms please contact us: info@jeasyui.com
|
||||
*
|
||||
*/
|
||||
(function(){
|
||||
var _1={draggable:{js:"jquery.draggable.js"},droppable:{js:"jquery.droppable.js"},resizable:{js:"jquery.resizable.js"},linkbutton:{js:"jquery.linkbutton.js",css:"linkbutton.css"},progressbar:{js:"jquery.progressbar.js",css:"progressbar.css"},tooltip:{js:"jquery.tooltip.js",css:"tooltip.css"},pagination:{js:"jquery.pagination.js",css:"pagination.css",dependencies:["linkbutton"]},datagrid:{js:"jquery.datagrid.js",css:"datagrid.css",dependencies:["panel","resizable","linkbutton","pagination"]},treegrid:{js:"jquery.treegrid.js",css:"tree.css",dependencies:["datagrid"]},propertygrid:{js:"jquery.propertygrid.js",css:"propertygrid.css",dependencies:["datagrid"]},datalist:{js:"jquery.datalist.js",css:"datalist.css",dependencies:["datagrid"]},panel:{js:"jquery.panel.js",css:"panel.css"},window:{js:"jquery.window.js",css:"window.css",dependencies:["resizable","draggable","panel"]},dialog:{js:"jquery.dialog.js",css:"dialog.css",dependencies:["linkbutton","window"]},messager:{js:"jquery.messager.js",css:"messager.css",dependencies:["linkbutton","dialog","progressbar"]},layout:{js:"jquery.layout.js",css:"layout.css",dependencies:["resizable","panel"]},form:{js:"jquery.form.js"},menu:{js:"jquery.menu.js",css:"menu.css"},tabs:{js:"jquery.tabs.js",css:"tabs.css",dependencies:["panel","linkbutton"]},menubutton:{js:"jquery.menubutton.js",css:"menubutton.css",dependencies:["linkbutton","menu"]},splitbutton:{js:"jquery.splitbutton.js",css:"splitbutton.css",dependencies:["menubutton"]},switchbutton:{js:"jquery.switchbutton.js",css:"switchbutton.css"},accordion:{js:"jquery.accordion.js",css:"accordion.css",dependencies:["panel"]},calendar:{js:"jquery.calendar.js",css:"calendar.css"},textbox:{js:"jquery.textbox.js",css:"textbox.css",dependencies:["validatebox","linkbutton"]},passwordbox:{js:"jquery.passwordbox.js",css:"passwordbox.css",dependencies:["textbox"]},filebox:{js:"jquery.filebox.js",css:"filebox.css",dependencies:["textbox"]},combo:{js:"jquery.combo.js",css:"combo.css",dependencies:["panel","textbox"]},combobox:{js:"jquery.combobox.js",css:"combobox.css",dependencies:["combo"]},combotree:{js:"jquery.combotree.js",dependencies:["combo","tree"]},combogrid:{js:"jquery.combogrid.js",dependencies:["combo","datagrid"]},combotreegrid:{js:"jquery.combotreegrid.js",dependencies:["combo","treegrid"]},tagbox:{js:"jquery.tagbox.js",dependencies:["combobox"]},validatebox:{js:"jquery.validatebox.js",css:"validatebox.css",dependencies:["tooltip"]},numberbox:{js:"jquery.numberbox.js",dependencies:["textbox"]},searchbox:{js:"jquery.searchbox.js",css:"searchbox.css",dependencies:["menubutton","textbox"]},spinner:{js:"jquery.spinner.js",css:"spinner.css",dependencies:["textbox"]},numberspinner:{js:"jquery.numberspinner.js",dependencies:["spinner","numberbox"]},timespinner:{js:"jquery.timespinner.js",dependencies:["spinner"]},tree:{js:"jquery.tree.js",css:"tree.css",dependencies:["draggable","droppable"]},datebox:{js:"jquery.datebox.js",css:"datebox.css",dependencies:["calendar","combo"]},datetimebox:{js:"jquery.datetimebox.js",dependencies:["datebox","timespinner"]},slider:{js:"jquery.slider.js",dependencies:["draggable"]},parser:{js:"jquery.parser.js"},mobile:{js:"jquery.mobile.js"}};
|
||||
var _2={"af":"easyui-lang-af.js","ar":"easyui-lang-ar.js","bg":"easyui-lang-bg.js","ca":"easyui-lang-ca.js","cs":"easyui-lang-cs.js","cz":"easyui-lang-cz.js","da":"easyui-lang-da.js","de":"easyui-lang-de.js","el":"easyui-lang-el.js","en":"easyui-lang-en.js","es":"easyui-lang-es.js","fr":"easyui-lang-fr.js","it":"easyui-lang-it.js","jp":"easyui-lang-jp.js","nl":"easyui-lang-nl.js","pl":"easyui-lang-pl.js","pt_BR":"easyui-lang-pt_BR.js","ru":"easyui-lang-ru.js","sv_SE":"easyui-lang-sv_SE.js","tr":"easyui-lang-tr.js","zh_CN":"easyui-lang-zh_CN.js","zh_TW":"easyui-lang-zh_TW.js"};
|
||||
var _3={};
|
||||
function _4(_5,_6){
|
||||
var _7=false;
|
||||
var _8=document.createElement("script");
|
||||
_8.type="text/javascript";
|
||||
_8.language="javascript";
|
||||
_8.src=_5;
|
||||
_8.onload=_8.onreadystatechange=function(){
|
||||
if(!_7&&(!_8.readyState||_8.readyState=="loaded"||_8.readyState=="complete")){
|
||||
_7=true;
|
||||
_8.onload=_8.onreadystatechange=null;
|
||||
if(_6){
|
||||
_6.call(_8);
|
||||
}
|
||||
}
|
||||
};
|
||||
document.getElementsByTagName("head")[0].appendChild(_8);
|
||||
};
|
||||
function _9(_a,_b){
|
||||
_4(_a,function(){
|
||||
document.getElementsByTagName("head")[0].removeChild(this);
|
||||
if(_b){
|
||||
_b();
|
||||
}
|
||||
});
|
||||
};
|
||||
function _c(_d,_e){
|
||||
var _f=document.createElement("link");
|
||||
_f.rel="stylesheet";
|
||||
_f.type="text/css";
|
||||
_f.media="screen";
|
||||
_f.href=_d;
|
||||
document.getElementsByTagName("head")[0].appendChild(_f);
|
||||
if(_e){
|
||||
_e.call(_f);
|
||||
}
|
||||
};
|
||||
function _10(_11,_12){
|
||||
_3[_11]="loading";
|
||||
var _13=_1[_11];
|
||||
var _14="loading";
|
||||
var _15=(easyloader.css&&_13["css"])?"loading":"loaded";
|
||||
if(easyloader.css&&_13["css"]){
|
||||
if(/^http/i.test(_13["css"])){
|
||||
var url=_13["css"];
|
||||
}else{
|
||||
var url=easyloader.base+"themes/"+easyloader.theme+"/"+_13["css"];
|
||||
}
|
||||
_c(url,function(){
|
||||
_15="loaded";
|
||||
if(_14=="loaded"&&_15=="loaded"){
|
||||
_16();
|
||||
}
|
||||
});
|
||||
}
|
||||
if(/^http/i.test(_13["js"])){
|
||||
var url=_13["js"];
|
||||
}else{
|
||||
var url=easyloader.base+"plugins/"+_13["js"];
|
||||
}
|
||||
_4(url,function(){
|
||||
_14="loaded";
|
||||
if(_14=="loaded"&&_15=="loaded"){
|
||||
_16();
|
||||
}
|
||||
});
|
||||
function _16(){
|
||||
_3[_11]="loaded";
|
||||
easyloader.onProgress(_11);
|
||||
if(_12){
|
||||
_12();
|
||||
}
|
||||
};
|
||||
};
|
||||
function _17(_18,_19){
|
||||
var mm=[];
|
||||
var _1a=false;
|
||||
if(typeof _18=="string"){
|
||||
add(_18);
|
||||
}else{
|
||||
for(var i=0;i<_18.length;i++){
|
||||
add(_18[i]);
|
||||
}
|
||||
}
|
||||
function add(_1b){
|
||||
if(!_1[_1b]){
|
||||
return;
|
||||
}
|
||||
var d=_1[_1b]["dependencies"];
|
||||
if(d){
|
||||
for(var i=0;i<d.length;i++){
|
||||
add(d[i]);
|
||||
}
|
||||
}
|
||||
mm.push(_1b);
|
||||
};
|
||||
function _1c(){
|
||||
if(_19){
|
||||
_19();
|
||||
}
|
||||
easyloader.onLoad(_18);
|
||||
};
|
||||
var _1d=0;
|
||||
function _1e(){
|
||||
if(mm.length){
|
||||
var m=mm[0];
|
||||
if(!_3[m]){
|
||||
_1a=true;
|
||||
_10(m,function(){
|
||||
mm.shift();
|
||||
_1e();
|
||||
});
|
||||
}else{
|
||||
if(_3[m]=="loaded"){
|
||||
mm.shift();
|
||||
_1e();
|
||||
}else{
|
||||
if(_1d<easyloader.timeout){
|
||||
_1d+=10;
|
||||
setTimeout(arguments.callee,10);
|
||||
}
|
||||
}
|
||||
}
|
||||
}else{
|
||||
if(easyloader.locale&&_1a==true&&_2[easyloader.locale]){
|
||||
var url=easyloader.base+"locale/"+_2[easyloader.locale];
|
||||
_9(url,function(){
|
||||
_1c();
|
||||
});
|
||||
}else{
|
||||
_1c();
|
||||
}
|
||||
}
|
||||
};
|
||||
_1e();
|
||||
};
|
||||
easyloader={modules:_1,locales:_2,base:".",theme:"default",css:true,locale:null,timeout:2000,load:function(_1f,_20){
|
||||
if(/\.css$/i.test(_1f)){
|
||||
if(/^http/i.test(_1f)){
|
||||
_c(_1f,_20);
|
||||
}else{
|
||||
_c(easyloader.base+_1f,_20);
|
||||
}
|
||||
}else{
|
||||
if(/\.js$/i.test(_1f)){
|
||||
if(/^http/i.test(_1f)){
|
||||
_4(_1f,_20);
|
||||
}else{
|
||||
_4(easyloader.base+_1f,_20);
|
||||
}
|
||||
}else{
|
||||
_17(_1f,_20);
|
||||
}
|
||||
}
|
||||
},onProgress:function(_21){
|
||||
},onLoad:function(_22){
|
||||
}};
|
||||
var _23=document.getElementsByTagName("script");
|
||||
for(var i=0;i<_23.length;i++){
|
||||
var src=_23[i].src;
|
||||
if(!src){
|
||||
continue;
|
||||
}
|
||||
var m=src.match(/easyloader\.js(\W|$)/i);
|
||||
if(m){
|
||||
easyloader.base=src.substring(0,m.index);
|
||||
}
|
||||
}
|
||||
window.using=easyloader.load;
|
||||
if(window.jQuery){
|
||||
jQuery(function(){
|
||||
easyloader.load("parser",function(){
|
||||
jQuery.parser.parse();
|
||||
});
|
||||
});
|
||||
}
|
||||
})();
|
||||
|
||||
16441
apps/transmission/web/tr-web-control/script/easyui/jquery.easyui.min.js
vendored
Normal file
@@ -0,0 +1,141 @@
|
||||
/**
|
||||
* EasyUI for jQuery 1.5.4.5
|
||||
*
|
||||
* Copyright (c) 2009-2018 www.jeasyui.com. All rights reserved.
|
||||
*
|
||||
* Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php
|
||||
* To use it on other terms please contact us: info@jeasyui.com
|
||||
*
|
||||
*/
|
||||
(function($){
|
||||
$.fn.navpanel=function(_1,_2){
|
||||
if(typeof _1=="string"){
|
||||
var _3=$.fn.navpanel.methods[_1];
|
||||
return _3?_3(this,_2):this.panel(_1,_2);
|
||||
}else{
|
||||
_1=_1||{};
|
||||
return this.each(function(){
|
||||
var _4=$.data(this,"navpanel");
|
||||
if(_4){
|
||||
$.extend(_4.options,_1);
|
||||
}else{
|
||||
_4=$.data(this,"navpanel",{options:$.extend({},$.fn.navpanel.defaults,$.fn.navpanel.parseOptions(this),_1)});
|
||||
}
|
||||
$(this).panel(_4.options);
|
||||
});
|
||||
}
|
||||
};
|
||||
$.fn.navpanel.methods={options:function(jq){
|
||||
return $.data(jq[0],"navpanel").options;
|
||||
}};
|
||||
$.fn.navpanel.parseOptions=function(_5){
|
||||
return $.extend({},$.fn.panel.parseOptions(_5),$.parser.parseOptions(_5,[]));
|
||||
};
|
||||
$.fn.navpanel.defaults=$.extend({},$.fn.panel.defaults,{fit:true,border:false,cls:"navpanel"});
|
||||
$.parser.plugins.push("navpanel");
|
||||
})(jQuery);
|
||||
(function($){
|
||||
$(function(){
|
||||
$.mobile.init();
|
||||
});
|
||||
$.mobile={defaults:{animation:"slide",direction:"left",reverseDirections:{up:"down",down:"up",left:"right",right:"left"}},panels:[],init:function(_6){
|
||||
$.mobile.panels=[];
|
||||
var _7=$(_6||"body").children(".navpanel:visible");
|
||||
if(_7.length){
|
||||
_7.not(":first").children(".panel-body").navpanel("close");
|
||||
var p=_7.eq(0).children(".panel-body");
|
||||
$.mobile.panels.push({panel:p,animation:$.mobile.defaults.animation,direction:$.mobile.defaults.direction});
|
||||
}
|
||||
$(document).unbind(".mobile").bind("click.mobile",function(e){
|
||||
var a=$(e.target).closest("a");
|
||||
if(a.length){
|
||||
var _8=$.parser.parseOptions(a[0],["animation","direction",{back:"boolean"}]);
|
||||
if(_8.back){
|
||||
$.mobile.back();
|
||||
e.preventDefault();
|
||||
}else{
|
||||
var _9=$.trim(a.attr("href"));
|
||||
if(/^#/.test(_9)){
|
||||
var to=$(_9);
|
||||
if(to.length&&to.hasClass("panel-body")){
|
||||
$.mobile.go(to,_8.animation,_8.direction);
|
||||
e.preventDefault();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
$(window).unbind(".mobile").bind("hashchange.mobile",function(){
|
||||
var _a=$.mobile.panels.length;
|
||||
if(_a>1){
|
||||
var _b=location.hash;
|
||||
var p=$.mobile.panels[_a-2];
|
||||
if(!_b||_b=="#&"+p.panel.attr("id")){
|
||||
$.mobile._back();
|
||||
}
|
||||
}
|
||||
});
|
||||
},nav:function(_c,to,_d,_e){
|
||||
if(window.WebKitAnimationEvent){
|
||||
_d=_d!=undefined?_d:$.mobile.defaults.animation;
|
||||
_e=_e!=undefined?_e:$.mobile.defaults.direction;
|
||||
var _f="m-"+_d+(_e?"-"+_e:"");
|
||||
var p1=$(_c).panel("open").panel("resize").panel("panel");
|
||||
var p2=$(to).panel("open").panel("resize").panel("panel");
|
||||
p1.add(p2).bind("webkitAnimationEnd",function(){
|
||||
$(this).unbind("webkitAnimationEnd");
|
||||
var p=$(this).children(".panel-body");
|
||||
if($(this).hasClass("m-in")){
|
||||
p.panel("open").panel("resize");
|
||||
}else{
|
||||
p.panel("close");
|
||||
}
|
||||
$(this).removeClass(_f+" m-in m-out");
|
||||
});
|
||||
p2.addClass(_f+" m-in");
|
||||
p1.addClass(_f+" m-out");
|
||||
}else{
|
||||
$(to).panel("open").panel("resize");
|
||||
$(_c).panel("close");
|
||||
}
|
||||
},_go:function(_10,_11,_12){
|
||||
_11=_11!=undefined?_11:$.mobile.defaults.animation;
|
||||
_12=_12!=undefined?_12:$.mobile.defaults.direction;
|
||||
var _13=$.mobile.panels[$.mobile.panels.length-1].panel;
|
||||
var to=$(_10);
|
||||
if(_13[0]!=to[0]){
|
||||
$.mobile.nav(_13,to,_11,_12);
|
||||
$.mobile.panels.push({panel:to,animation:_11,direction:_12});
|
||||
}
|
||||
},_back:function(){
|
||||
if($.mobile.panels.length<2){
|
||||
return;
|
||||
}
|
||||
var p1=$.mobile.panels.pop();
|
||||
var p2=$.mobile.panels[$.mobile.panels.length-1];
|
||||
var _14=p1.animation;
|
||||
var _15=$.mobile.defaults.reverseDirections[p1.direction]||"";
|
||||
$.mobile.nav(p1.panel,p2.panel,_14,_15);
|
||||
},go:function(_16,_17,_18){
|
||||
_17=_17!=undefined?_17:$.mobile.defaults.animation;
|
||||
_18=_18!=undefined?_18:$.mobile.defaults.direction;
|
||||
location.hash="#&"+$(_16).attr("id");
|
||||
$.mobile._go(_16,_17,_18);
|
||||
},back:function(){
|
||||
history.go(-1);
|
||||
}};
|
||||
$.map(["validatebox","textbox","passwordbox","filebox","searchbox","combo","combobox","combogrid","combotree","combotreegrid","datebox","datetimebox","numberbox","spinner","numberspinner","timespinner","datetimespinner"],function(_19){
|
||||
if($.fn[_19]){
|
||||
$.extend($.fn[_19].defaults,{iconWidth:28,tipPosition:"bottom"});
|
||||
}
|
||||
});
|
||||
$.map(["spinner","numberspinner","timespinner","datetimespinner"],function(_1a){
|
||||
if($.fn[_1a]){
|
||||
$.extend($.fn[_1a].defaults,{iconWidth:56,spinAlign:"horizontal"});
|
||||
}
|
||||
});
|
||||
if($.fn.menu){
|
||||
$.extend($.fn.menu.defaults,{itemHeight:30,noline:true});
|
||||
}
|
||||
})(jQuery);
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Bladsy';
|
||||
$.fn.pagination.defaults.afterPageText = 'Van {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Wys (from) tot (to) van (total) items';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Verwerking, wag asseblief ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Die styl';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Die veld is verpligtend.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = "Gee 'n geldige e-pos adres.";
|
||||
$.fn.validatebox.defaults.rules.url.message = "Gee 'n geldige URL nie.";
|
||||
$.fn.validatebox.defaults.rules.length.message = "Voer 'n waarde tussen {0} en {1}.";
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Vandag';
|
||||
$.fn.datebox.defaults.closeText = 'Sluit';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Էջ';
|
||||
$.fn.pagination.defaults.afterPageText = 'ից {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Դիտել {from}-ից {to}-ը {total} գրառումից';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Մշակվում է, խնդրում ենք սպասել ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Այո';
|
||||
$.messager.defaults.cancel = 'Փակել';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Այս դաշտը պարտադիր է.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Խնդրում ենք մուտքագրել գործող e-mail հասցե.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Խնդրում ենք մուտքագրել գործող URL.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Խնդրում ենք մուտքագրել արժեք {0} {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Խնդրում ենք ուղղել այս դաշտը.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.firstDay = 1;
|
||||
$.fn.calendar.defaults.weeks = ['Կ.','Ե.','Ե.','Չ.','Հ.','Ու.','Շ.'];
|
||||
$.fn.calendar.defaults.months = ['Հունվար', 'Փետրվար', 'Մարտ', 'Ապրիլ', 'Մայիս', 'Հունիս', 'Հուլիս', 'Օգոստոս', 'Սեպտեմբեր', 'Հոկտեմբեր', 'Նոյեմբեր', 'Դեկտեմբեր'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Այսօր';
|
||||
$.fn.datebox.defaults.closeText = 'Փակել';
|
||||
$.fn.datebox.defaults.okText = 'Այո';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'صفحة';
|
||||
$.fn.pagination.defaults.afterPageText = 'من {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'عرض {from} إلى {to} من {total} عنصر';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'معالجة, الرجاء الإنتظار ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'موافق';
|
||||
$.messager.defaults.cancel = 'إلغاء';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'هذا الحقل مطلوب.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'الرجاء إدخال بريد إلكتروني صحيح.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'الرجاء إدخال رابط صحيح.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'الرجاء إدخال قيمة بين {0} و {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'الرجاء التأكد من الحقل.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'اليوم';
|
||||
$.fn.datebox.defaults.closeText = 'إغلاق';
|
||||
$.fn.datebox.defaults.okText = 'موافق';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Страница';
|
||||
$.fn.pagination.defaults.afterPageText = 'от {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Показани {from} за {to} от {total} продукти';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Обработка, моля изчакайте ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Добре';
|
||||
$.messager.defaults.cancel = 'Задрасквам';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Това поле е задължително.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Моля, въведете валиден имейл адрес.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Моля въведете валиден URL.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Моля, въведете стойност между {0} и {1}.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Днес';
|
||||
$.fn.datebox.defaults.closeText = 'Близо';
|
||||
$.fn.datebox.defaults.okText = 'Добре';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Pàgina';
|
||||
$.fn.pagination.defaults.afterPageText = 'de {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = "Veient {from} a {to} de {total} d'articles";
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Elaboració, si us plau esperi ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Cancel';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Aquest camp és obligatori.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Introduïu una adreça de correu electrònic vàlida.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Si us plau, introduïu un URL vàlida.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Si us plau, introduïu un valor entre {0} i {1}.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Avui';
|
||||
$.fn.datebox.defaults.closeText = 'Tancar';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Strana';
|
||||
$.fn.pagination.defaults.afterPageText = 'z {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Zobrazuji {from} do {to} z {total} položky';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Zpracování, čekejte prosím ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Zrušit';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Toto pole je vyžadováno.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Zadejte prosím platnou e-mailovou adresu.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Zadejte prosím platnou adresu URL.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Prosím, zadejte hodnotu mezi {0} a {1}.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Dnes';
|
||||
$.fn.datebox.defaults.closeText = 'Zavřít';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Strana';
|
||||
$.fn.pagination.defaults.afterPageText = 'z {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Zobrazuji záznam {from} až {to} z {total}.';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Pracuji, čekejte prosím…';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Zrušit';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Toto pole je vyžadováno.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Zadejte, prosím, platnou e-mailovou adresu.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Zadejte, prosím, platnou adresu URL.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Zadejte, prosím, hodnotu mezi {0} a {1}.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['N','P','Ú','S','Č','P','S']; //neděle pondělí úterý středa čtvrtek pátek sobota
|
||||
$.fn.calendar.defaults.months = ['led', 'únr', 'bře', 'dub', 'kvě', 'čvn', 'čvc', 'srp', 'zář', 'říj', 'lis', 'pro']; //leden únor březen duben květen červen červenec srpen září říjen listopad prosinec
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Dnes';
|
||||
$.fn.datebox.defaults.closeText = 'Zavřít';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Page';
|
||||
$.fn.pagination.defaults.afterPageText = 'af {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Viser {from} til {to} af {total} poster';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Behandling, vent venligst ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Annuller';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Dette felt er påkrævet.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Angiv en gyldig e-mail-adresse.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Angiv en gyldig webadresse.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Angiv en værdi mellem {0} og {1}.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'I dag';
|
||||
$.fn.datebox.defaults.closeText = 'Luk';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Seite';
|
||||
$.fn.pagination.defaults.afterPageText = 'von {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = '{from} bis {to} von {total} Datensätzen';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Verarbeitung läuft, bitte warten ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'OK';
|
||||
$.messager.defaults.cancel = 'Abbruch';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Dieses Feld wird benötigt.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Bitte geben Sie eine gültige E-Mail-Adresse ein.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Bitte geben Sie eine gültige URL ein.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Bitte geben Sie einen Wert zwischen {0} und {1} ein.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.firstDay = 1;
|
||||
$.fn.calendar.defaults.weeks = ['S','M','D','M','D','F','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Heute';
|
||||
$.fn.datebox.defaults.closeText = 'Schließen';
|
||||
$.fn.datebox.defaults.okText = 'OK';
|
||||
$.fn.datebox.defaults.formatter = function(date){
|
||||
var y = date.getFullYear();
|
||||
var m = date.getMonth()+1;
|
||||
var d = date.getDate();
|
||||
return (d<10?('0'+d):d)+'.'+(m<10?('0'+m):m)+'.'+y;
|
||||
};
|
||||
$.fn.datebox.defaults.parser = function(s){
|
||||
if (!s) return new Date();
|
||||
var ss = s.split('.');
|
||||
var m = parseInt(ss[1],10);
|
||||
var d = parseInt(ss[0],10);
|
||||
var y = parseInt(ss[2],10);
|
||||
if (!isNaN(y) && !isNaN(m) && !isNaN(d)){
|
||||
return new Date(y,m-1,d);
|
||||
} else {
|
||||
return new Date();
|
||||
}
|
||||
};
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Σελίδα';
|
||||
$.fn.pagination.defaults.afterPageText = 'από {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Εμφάνιση {from} εώς {to} από {total} αντικείμενα';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Γίνεται Επεξεργασία, Παρακαλώ Περιμένετε ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Εντάξει';
|
||||
$.messager.defaults.cancel = 'Άκυρο';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Το πεδίο είναι υποχρεωτικό.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Παρακαλώ εισάγετε σωστή Ηλ.Διεύθυνση.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Παρακαλώ εισάγετε σωστό σύνδεσμο.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Παρακαλώ εισάγετε τιμή μεταξύ {0} και {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Παρακαλώ διορθώστε αυτό το πεδίο.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['Κυρ','Δευ','Τρι','Τετ','Πεμ','Παρ','Σαβ'];
|
||||
$.fn.calendar.defaults.months = ['Ιαν', 'Φεβ', 'Μαρ', 'Απρ', 'Μαϊ', 'Ιου', 'Ιου', 'Αυγ', 'Σεπ', 'Οκτ', 'Νοε', 'Δεκ'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Σήμερα';
|
||||
$.fn.datebox.defaults.closeText = 'Κλείσιμο';
|
||||
$.fn.datebox.defaults.okText = 'Εντάξει';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Page';
|
||||
$.fn.pagination.defaults.afterPageText = 'of {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Displaying {from} to {to} of {total} items';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Processing, please wait ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Cancel';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'This field is required.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Please enter a valid email address.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Please enter a valid URL.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Please enter a value between {0} and {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Please fix this field.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Today';
|
||||
$.fn.datebox.defaults.closeText = 'Close';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Página';
|
||||
$.fn.pagination.defaults.afterPageText = 'de {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Mostrando {from} a {to} de {total} elementos';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Procesando, por favor espere ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Aceptar';
|
||||
$.messager.defaults.cancel = 'Cancelar';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Este campo es obligatorio.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Por favor ingrese una dirección de correo válida.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Por favor ingrese una URL válida.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Por favor ingrese un valor entre {0} y {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Por favor corrija este campo.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['Do','Lu','Ma','Mi','Ju','Vi','Sá'];
|
||||
$.fn.calendar.defaults.months = ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Hoy';
|
||||
$.fn.datebox.defaults.closeText = 'Cerrar';
|
||||
$.fn.datebox.defaults.okText = 'Aceptar';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'صفحه';
|
||||
$.fn.pagination.defaults.afterPageText = 'از {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'نمایش {from} تا {to} از {total} مورد';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'درحال پردازش، لطفا صبر کنید...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'قبول';
|
||||
$.messager.defaults.cancel = 'انصراف';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'این فیلد اجباری می باشد.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'لطفا آدرس ایمیل را صحیح وارد کنید.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'لطفا آدرس سایت را صحیح وارد کنید.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'لطفا مقداری بین {0} و {1} وارد کنید.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'لطفا مقدار این فیلد را تصحیح کنید.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'امروز';
|
||||
$.fn.datebox.defaults.closeText = 'بستن';
|
||||
$.fn.datebox.defaults.okText = 'قبول';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Page';
|
||||
$.fn.pagination.defaults.afterPageText = 'de {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Affichage de {from} et {to} au {total} des articles';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = "Traitement, s'il vous plaît patienter ...";
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Annuler';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Ce champ est obligatoire.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = "S'il vous plaît entrer une adresse email valide.";
|
||||
$.fn.validatebox.defaults.rules.url.message = "S'il vous plaît entrer une URL valide.";
|
||||
$.fn.validatebox.defaults.rules.length.message = "S'il vous plaît entrez une valeur comprise entre {0} et {1}.";
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
|
||||
$.fn.calendar.defaults.months = ["Jan", "Fév", "Mar", "Avr", "Mai", "Juin", "Juil", "Aôu", "Sep", "Oct", "Nov", "Déc"];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = "Aujourd'hui";
|
||||
$.fn.datebox.defaults.closeText = 'Fermer';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
$.fn.datebox.defaults.formatter = function(date){
|
||||
var y = date.getFullYear();
|
||||
var m = date.getMonth()+1;
|
||||
var d = date.getDate();
|
||||
return (d<10?('0'+d):d)+'/'+(m<10?('0'+m):m)+'/'+y;
|
||||
};
|
||||
$.fn.datebox.defaults.parser = function(s){
|
||||
if (!s) return new Date();
|
||||
var ss = s.split('/');
|
||||
var d = parseInt(ss[0],10);
|
||||
var m = parseInt(ss[1],10);
|
||||
var y = parseInt(ss[2],10);
|
||||
if (!isNaN(y) && !isNaN(m) && !isNaN(d)){
|
||||
return new Date(y,m-1,d);
|
||||
} else {
|
||||
return new Date();
|
||||
}
|
||||
};
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Pagina';
|
||||
$.fn.pagination.defaults.afterPageText = 'di {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Visualizzazione {from} a {to} di {total} elementi';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'In lavorazione, attendere ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Annulla';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Questo campo è richiesto.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Inserisci un indirizzo email valido.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Inserisci un URL valido.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Inserisci un valore tra {0} e {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Correggere questo campo.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.firstDay = 1;
|
||||
$.fn.calendar.defaults.weeks = ['D','L','M','M','G','V','S'];
|
||||
$.fn.calendar.defaults.months = ['Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu', 'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Oggi';
|
||||
$.fn.datebox.defaults.closeText = 'Chiudi';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
$.fn.datebox.defaults.formatter = function(date){
|
||||
var y = date.getFullYear();
|
||||
var m = date.getMonth()+1;
|
||||
var d = date.getDate();
|
||||
return (d<10?('0'+d):d)+'/'+(m<10?('0'+m):m)+'/'+y;
|
||||
};
|
||||
$.fn.datebox.defaults.parser = function(s){
|
||||
if (!s) return new Date();
|
||||
var ss = s.split('/');
|
||||
var d = parseInt(ss[0],10);
|
||||
var m = parseInt(ss[1],10);
|
||||
var y = parseInt(ss[2],10);
|
||||
if (!isNaN(y) && !isNaN(m) && !isNaN(d)){
|
||||
return new Date(y,m-1,d);
|
||||
} else {
|
||||
return new Date();
|
||||
}
|
||||
};
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'ページ';
|
||||
$.fn.pagination.defaults.afterPageText = '{pages} 中';
|
||||
$.fn.pagination.defaults.displayMsg = '全 {total} アイテム中 {from} から {to} を表示中';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = '処理中です。少々お待ちください...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'OK';
|
||||
$.messager.defaults.cancel = 'キャンセル';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = '入力は必須です。';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = '正しいメールアドレスを入力してください。';
|
||||
$.fn.validatebox.defaults.rules.url.message = '正しいURLを入力してください。';
|
||||
$.fn.validatebox.defaults.rules.length.message = '{0} から {1} の範囲の正しい値を入力してください。';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'このフィールドを修正してください。';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['日','月','火','水','木','金','土'];
|
||||
$.fn.calendar.defaults.months = ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = '今日';
|
||||
$.fn.datebox.defaults.closeText = '閉じる';
|
||||
$.fn.datebox.defaults.okText = 'OK';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = '페이지';
|
||||
$.fn.pagination.defaults.afterPageText = '{pages} 중';
|
||||
$.fn.pagination.defaults.displayMsg = '전체 {total} 항목 중 {from}부터 {to}번째';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = '처리 중입니다. 잠시만 기다려 주세요...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = '확인';
|
||||
$.messager.defaults.cancel = '취소';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = '필수 항목입니다.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = '올바른 메일 주소를 입력해 주세요.';
|
||||
$.fn.validatebox.defaults.rules.url.message = '올바른 URL를 입력해 주세요.';
|
||||
$.fn.validatebox.defaults.rules.length.message = '{0}에서 {1} 사이의 값을 입력해 주세요.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = '이 필드를 수정해 주세요.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['일','월','화','수','목','금','토'];
|
||||
$.fn.calendar.defaults.months = ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = '오늘';
|
||||
$.fn.datebox.defaults.closeText = '닫기';
|
||||
$.fn.datebox.defaults.okText = '확인';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Pagina';
|
||||
$.fn.pagination.defaults.afterPageText = 'van {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Tonen van {from} tot {to} van de {total} items';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Verwerking, even geduld ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Annuleren';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Dit veld is verplicht.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Geef een geldig e-mailadres.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Vul een geldige URL.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Voer een waarde tussen {0} en {1}.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['S','M','T','W','T','F','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Vandaag';
|
||||
$.fn.datebox.defaults.closeText = 'Dicht';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Strona';
|
||||
$.fn.pagination.defaults.afterPageText = 'z {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Wyświetlono elementy od {from} do {to} z {total}';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Przetwarzanie, proszę czekać ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Cancel';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'To pole jest wymagane.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Wprowadź poprawny adres email.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Wprowadź poprawny adres URL.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Wprowadź wartość z zakresu od {0} do {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Proszę poprawić to pole.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['N','P','W','Ś','C','P','S'];
|
||||
$.fn.calendar.defaults.months = ['Sty', 'Lut', 'Mar', 'Kwi', 'Maj', 'Cze', 'Lip', 'Sie', 'Wrz', 'Paź', 'Lis', 'Gru'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Dzisiaj';
|
||||
$.fn.datebox.defaults.closeText = 'Zamknij';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Página';
|
||||
$.fn.pagination.defaults.afterPageText = 'de {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Mostrando {from} a {to} de {total} itens';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Processando, aguarde ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Cancelar';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Esse campo é requerido.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Insira um endereço de email válido.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Insira uma URL válida.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Insira uma valor entre {0} e {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Corrija esse campo.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['D','S','T','Q','Q','S','S'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Hoje';
|
||||
$.fn.datebox.defaults.closeText = 'Fechar';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Страница';
|
||||
$.fn.pagination.defaults.afterPageText = 'из {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Просмотр {from} до {to} из {total} записей';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Обрабатывается, пожалуйста ждите ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ок';
|
||||
$.messager.defaults.cancel = 'Закрыть';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Это поле необходимо.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Пожалуйста введите корректный e-mail адрес.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Пожалуйста введите корректный URL.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Пожалуйста введите зачение между {0} и {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Пожалуйста исправте это поле.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.firstDay = 1;
|
||||
$.fn.calendar.defaults.weeks = ['В','П','В','С','Ч','П','С'];
|
||||
$.fn.calendar.defaults.months = ['Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 'Июл', 'Авг', 'Сен', 'Окт', 'Ноя', 'Дек'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Сегодня';
|
||||
$.fn.datebox.defaults.closeText = 'Закрыть';
|
||||
$.fn.datebox.defaults.okText = 'Ок';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
if ($.fn.pagination) {
|
||||
$.fn.pagination.defaults.beforePageText = 'Sida';
|
||||
$.fn.pagination.defaults.afterPageText = 'av {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Visar {from} till {to} av {total} poster';
|
||||
}
|
||||
if ($.fn.datagrid) {
|
||||
$.fn.datagrid.defaults.loadMsg = 'Bearbetar, vänligen vänta ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid) {
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager) {
|
||||
$.messager.defaults.ok = 'Ok';
|
||||
$.messager.defaults.cancel = 'Avbryt';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Detta fält är obligatoriskt.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox) {
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Vänligen ange en korrekt e-post adress.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Vänligen ange en korrekt URL.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Vänligen ange ett nummer mellan {0} och {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Vänligen åtgärda detta fält.';
|
||||
}
|
||||
if ($.fn.calendar) {
|
||||
$.fn.calendar.defaults.weeks = ['Sön', 'Mån', 'Tis', 'Ons', 'Tors', 'Fre', 'Lör'];
|
||||
$.fn.calendar.defaults.months = ['Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dec'];
|
||||
}
|
||||
if ($.fn.datebox) {
|
||||
$.fn.datebox.defaults.currentText = 'I dag';
|
||||
$.fn.datebox.defaults.closeText = 'Stäng';
|
||||
$.fn.datebox.defaults.okText = 'Ok';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox) {
|
||||
$.extend($.fn.datetimebox.defaults, {
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Sayfa';
|
||||
$.fn.pagination.defaults.afterPageText = ' / {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = '{from} ile {to} arası gösteriliyor, toplam {total} kayıt';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.panel.defaults.loadingMessage = "Yükleniyor...";
|
||||
}
|
||||
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadingMessage = "Yükleniyor...";
|
||||
$.fn.datagrid.defaults.loadMsg = 'İşleminiz Yapılıyor, lütfen bekleyin ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Tamam';
|
||||
$.messager.defaults.cancel = 'İptal';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Bu alan zorunludur.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Lütfen geçerli bir email adresi giriniz.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Lütfen geçerli bir URL giriniz.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Lütfen {0} ile {1} arasında bir değer giriniz.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Lütfen bu alanı düzeltiniz.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'];
|
||||
$.fn.calendar.defaults.months = ['Oca', 'Şub', 'Mar', 'Nis', 'May', 'Haz', 'Tem', 'Ağu', 'Eyl', 'Eki', 'Kas', 'Ara'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Bugün';
|
||||
$.fn.datebox.defaults.closeText = 'Kapat';
|
||||
$.fn.datebox.defaults.okText = 'Tamam';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
|
||||
$.fn.datebox.defaults.formatter=function(date){
|
||||
var y=date.getFullYear();
|
||||
var m=date.getMonth()+1;
|
||||
var d=date.getDate();
|
||||
if(m<10){m="0"+m;}
|
||||
if(d<10){d="0"+d;}
|
||||
return d+"."+m+"."+y;
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = 'Сторінка';
|
||||
$.fn.pagination.defaults.afterPageText = 'з {pages}';
|
||||
$.fn.pagination.defaults.displayMsg = 'Перегляд {from} до {to} з {total} записів';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = 'Обробляється, зачекайте будь даска ...';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = 'Ок';
|
||||
$.messager.defaults.cancel = 'Закрити';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = 'Це поле необхідно.';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = 'Будь ласка, введіть коректну e-mail адресу.';
|
||||
$.fn.validatebox.defaults.rules.url.message = 'Будь ласка, введіть коректний URL.';
|
||||
$.fn.validatebox.defaults.rules.length.message = 'Будь ласка введіть значення між {0} і {1}.';
|
||||
$.fn.validatebox.defaults.rules.remote.message = 'Будь ласка виправте це поле.';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.firstDay = 1;
|
||||
$.fn.calendar.defaults.weeks = ['В','П','В','С','Ч','П','С'];
|
||||
$.fn.calendar.defaults.months = ['Січ', 'Лют', 'Бер', 'Квіт', 'Трав', 'Черв', 'Лип', 'Серп', 'Вер', 'Жовт', 'Лист', 'Груд'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = 'Сьогодні';
|
||||
$.fn.datebox.defaults.closeText = 'Закрити';
|
||||
$.fn.datebox.defaults.okText = 'Ок';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = '第';
|
||||
$.fn.pagination.defaults.afterPageText = '共{pages}页';
|
||||
$.fn.pagination.defaults.displayMsg = '显示{from}到{to},共{total}记录';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = '正在处理,请稍待。。。';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = '确定';
|
||||
$.messager.defaults.cancel = '取消';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = '该输入项为必输项';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = '请输入有效的电子邮件地址';
|
||||
$.fn.validatebox.defaults.rules.url.message = '请输入有效的URL地址';
|
||||
$.fn.validatebox.defaults.rules.length.message = '输入内容长度必须介于{0}和{1}之间';
|
||||
$.fn.validatebox.defaults.rules.remote.message = '请修正该字段';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['日','一','二','三','四','五','六'];
|
||||
$.fn.calendar.defaults.months = ['一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = '今天';
|
||||
$.fn.datebox.defaults.closeText = '关闭';
|
||||
$.fn.datebox.defaults.okText = '确定';
|
||||
$.fn.datebox.defaults.formatter = function(date){
|
||||
var y = date.getFullYear();
|
||||
var m = date.getMonth()+1;
|
||||
var d = date.getDate();
|
||||
return y+'-'+(m<10?('0'+m):m)+'-'+(d<10?('0'+d):d);
|
||||
};
|
||||
$.fn.datebox.defaults.parser = function(s){
|
||||
if (!s) return new Date();
|
||||
var ss = s.split('-');
|
||||
var y = parseInt(ss[0],10);
|
||||
var m = parseInt(ss[1],10);
|
||||
var d = parseInt(ss[2],10);
|
||||
if (!isNaN(y) && !isNaN(m) && !isNaN(d)){
|
||||
return new Date(y,m-1,d);
|
||||
} else {
|
||||
return new Date();
|
||||
}
|
||||
};
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
if ($.fn.datetimespinner){
|
||||
$.fn.datetimespinner.defaults.selections = [[0,4],[5,7],[8,10],[11,13],[14,16],[17,19]]
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
if ($.fn.pagination){
|
||||
$.fn.pagination.defaults.beforePageText = '第';
|
||||
$.fn.pagination.defaults.afterPageText = '共{pages}頁';
|
||||
$.fn.pagination.defaults.displayMsg = '顯示{from}到{to},共{total}記錄';
|
||||
}
|
||||
if ($.fn.datagrid){
|
||||
$.fn.datagrid.defaults.loadMsg = '正在處理,請稍待。。。';
|
||||
}
|
||||
if ($.fn.treegrid && $.fn.datagrid){
|
||||
$.fn.treegrid.defaults.loadMsg = $.fn.datagrid.defaults.loadMsg;
|
||||
}
|
||||
if ($.messager){
|
||||
$.messager.defaults.ok = '確定';
|
||||
$.messager.defaults.cancel = '取消';
|
||||
}
|
||||
$.map(['validatebox','textbox','passwordbox','filebox','searchbox',
|
||||
'combo','combobox','combogrid','combotree',
|
||||
'datebox','datetimebox','numberbox',
|
||||
'spinner','numberspinner','timespinner','datetimespinner'], function(plugin){
|
||||
if ($.fn[plugin]){
|
||||
$.fn[plugin].defaults.missingMessage = '該輸入項為必輸項';
|
||||
}
|
||||
});
|
||||
if ($.fn.validatebox){
|
||||
$.fn.validatebox.defaults.rules.email.message = '請輸入有效的電子郵件地址';
|
||||
$.fn.validatebox.defaults.rules.url.message = '請輸入有效的URL地址';
|
||||
$.fn.validatebox.defaults.rules.length.message = '輸入內容長度必須介於{0}和{1}之間';
|
||||
$.fn.validatebox.defaults.rules.remote.message = '請修正此欄位';
|
||||
}
|
||||
if ($.fn.calendar){
|
||||
$.fn.calendar.defaults.weeks = ['日','一','二','三','四','五','六'];
|
||||
$.fn.calendar.defaults.months = ['一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月'];
|
||||
}
|
||||
if ($.fn.datebox){
|
||||
$.fn.datebox.defaults.currentText = '今天';
|
||||
$.fn.datebox.defaults.closeText = '關閉';
|
||||
$.fn.datebox.defaults.okText = '確定';
|
||||
}
|
||||
if ($.fn.datetimebox && $.fn.datebox){
|
||||
$.extend($.fn.datetimebox.defaults,{
|
||||
currentText: $.fn.datebox.defaults.currentText,
|
||||
closeText: $.fn.datebox.defaults.closeText,
|
||||
okText: $.fn.datebox.defaults.okText
|
||||
});
|
||||
}
|
||||
if ($.fn.datetimespinner){
|
||||
$.fn.datetimespinner.defaults.selections = [[0,4],[5,7],[8,10],[11,13],[14,16],[17,19]]
|
||||
}
|
||||
@@ -0,0 +1,102 @@
|
||||
// 为 easyui.datagrid 增加表头拖放事件
|
||||
// 仅对单行表头的表格有效
|
||||
(function($) {
|
||||
$.extend($.fn.datagrid.defaults.view, {
|
||||
onBeforeRender: function(target, rows) {
|
||||
var datagrid = $.data(target, 'datagrid');
|
||||
var parent = datagrid.dc.view2;
|
||||
if (datagrid.options["drophead"]) {
|
||||
parent.find('.datagrid-header-inner .datagrid-header-row td .datagrid-cell').draggable({
|
||||
revert: true,
|
||||
proxy: function(source) {
|
||||
return ($(source).clone().addClass("drag-begin").appendTo($(source).parent()));
|
||||
},
|
||||
cursor: "",
|
||||
handle: ":first-child",
|
||||
axis: "h"
|
||||
}).droppable({
|
||||
accept: '.datagrid-header-inner .datagrid-header-row td .datagrid-cell',
|
||||
onDragEnter: function(e, source) {
|
||||
// 目标
|
||||
var _target = $(e.currentTarget).parent();
|
||||
// 源
|
||||
var _source = $(source).parent();
|
||||
|
||||
if (_target[0].cellIndex < _source[0].cellIndex) {
|
||||
$(this).addClass('drop-over-before');
|
||||
} else
|
||||
$(this).addClass('drop-over-after');
|
||||
},
|
||||
onDragLeave: function(e, source) {
|
||||
$(this).removeClass('drop-over-after drop-over-before');
|
||||
},
|
||||
|
||||
onDrop: function(e, source) {
|
||||
$(this).removeClass('drop-over-after drop-over-before');
|
||||
// 目标
|
||||
var _target = $(e.currentTarget).parent();
|
||||
// 源
|
||||
var _source = $(source).parent();
|
||||
var _targetField = _target.attr("field");
|
||||
var _sourceField = _source.attr("field");
|
||||
|
||||
var _targetCells = parent.find("table.datagrid-btable td[field='" + _targetField + "']");
|
||||
var _sourceCells = parent.find("table.datagrid-btable td[field='" + _sourceField + "']");
|
||||
|
||||
var _targetIndex = _target[0].cellIndex;
|
||||
var _sourceIndex = _source[0].cellIndex;
|
||||
|
||||
if (_targetIndex < _sourceIndex) {
|
||||
_target.before(_source);
|
||||
$.each(_targetCells, function(index, item) {
|
||||
$(item).before(_sourceCells[index]);
|
||||
});
|
||||
|
||||
} else {
|
||||
_target.after(_source);
|
||||
$.each(_targetCells, function(index, item) {
|
||||
$(item).after(_sourceCells[index]);
|
||||
});
|
||||
}
|
||||
|
||||
// 调整字段位置
|
||||
moveArrayIndex(datagrid.options.columns[0], _sourceIndex, _targetIndex);
|
||||
|
||||
// 执行拖放事件
|
||||
if (datagrid.options.onHeadDrop)
|
||||
{
|
||||
datagrid.options.onHeadDrop(_sourceField,_targetField);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
function moveArrayIndex(source, n, m) {
|
||||
n = n < 0 ? 0 : (n > source.length - 1 ? source.length - 1 : n);
|
||||
m = m < 0 ? 0 : (m > source.length - 1 ? source.length - 1 : m);
|
||||
|
||||
if (n === m) {
|
||||
return source;
|
||||
} else {
|
||||
if (n > m) //向前移动>对两个索引位置及其中间的元素重新赋值[顺推]
|
||||
{
|
||||
|
||||
var temp = [source[m], source[m] = source[n]][0]; //交换n和m的值并将m上的值赋给temp
|
||||
for (var i = m + 1; i <= n; i++) {
|
||||
temp = [source[i], source[i] = temp][0];
|
||||
}
|
||||
|
||||
} else { //向后移动>对两个索引位置及其中间的元素重新赋值[倒推]
|
||||
|
||||
var temp = [source[m], source[m] = source[n]][0]; //交换n和m的值并将m上的值赋给temp
|
||||
for (var i = m - 1; i >= n; i--) {
|
||||
temp = [source[i], source[i] = temp][0];
|
||||
}
|
||||
|
||||
}
|
||||
return source;
|
||||
}
|
||||
};
|
||||
})(jQuery);
|
||||
|
After Width: | Height: | Size: 122 B |
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 173 B |
|
After Width: | Height: | Size: 100 B |
|
After Width: | Height: | Size: 300 B |
|
After Width: | Height: | Size: 626 B |
|
After Width: | Height: | Size: 179 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 134 B |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 339 B |
|
After Width: | Height: | Size: 184 B |
|
After Width: | Height: | Size: 149 B |
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 813 B |
|
After Width: | Height: | Size: 863 B |
|
After Width: | Height: | Size: 140 B |
|
After Width: | Height: | Size: 144 B |
|
After Width: | Height: | Size: 133 B |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 921 B |
|
After Width: | Height: | Size: 184 B |
|
After Width: | Height: | Size: 43 B |
|
After Width: | Height: | Size: 173 B |
|
After Width: | Height: | Size: 117 B |
|
After Width: | Height: | Size: 307 B |
|
After Width: | Height: | Size: 626 B |
|
After Width: | Height: | Size: 319 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 160 B |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 628 B |
|
After Width: | Height: | Size: 194 B |
|
After Width: | Height: | Size: 159 B |
|
After Width: | Height: | Size: 165 B |
|
After Width: | Height: | Size: 813 B |
|
After Width: | Height: | Size: 863 B |
|
After Width: | Height: | Size: 149 B |
|
After Width: | Height: | Size: 150 B |
|
After Width: | Height: | Size: 134 B |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 921 B |
@@ -0,0 +1,210 @@
|
||||
.c1,.c1:hover,.c1>.panel-header{
|
||||
color: #fff;
|
||||
border-color: #3c8b3c;
|
||||
background: #4cae4c;
|
||||
background: -webkit-linear-gradient(top,#4cae4c 0,#449d44 100%);
|
||||
background: -moz-linear-gradient(top,#4cae4c 0,#449d44 100%);
|
||||
background: -o-linear-gradient(top,#4cae4c 0,#449d44 100%);
|
||||
background: linear-gradient(to bottom,#4cae4c 0,#449d44 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4cae4c,endColorstr=#449d44,GradientType=0);
|
||||
}
|
||||
a.c1:hover{
|
||||
background: #449d44;
|
||||
filter: none;
|
||||
}
|
||||
.c1>.panel-body{
|
||||
border-color: #3c8b3c;
|
||||
}
|
||||
.c1>.dialog-toolbar,.c1>.dialog-button{
|
||||
border-left-color: #3c8b3c;
|
||||
border-right-color: #3c8b3c;
|
||||
}
|
||||
.c1>.dialog-button{
|
||||
border-bottom-color: #3c8b3c;
|
||||
}
|
||||
.c2,.c2:hover,.c2>.panel-header{
|
||||
color: #fff;
|
||||
border-color: #5f5f5f;
|
||||
background: #747474;
|
||||
background: -webkit-linear-gradient(top,#747474 0,#676767 100%);
|
||||
background: -moz-linear-gradient(top,#747474 0,#676767 100%);
|
||||
background: -o-linear-gradient(top,#747474 0,#676767 100%);
|
||||
background: linear-gradient(to bottom,#747474 0,#676767 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#747474,endColorstr=#676767,GradientType=0);
|
||||
}
|
||||
a.c2:hover{
|
||||
background: #676767;
|
||||
filter: none;
|
||||
}
|
||||
.c2>.panel-body{
|
||||
border-color: #5f5f5f;
|
||||
}
|
||||
.c2>.dialog-toolbar,.c2>.dialog-button{
|
||||
border-left-color: #5f5f5f;
|
||||
border-right-color: #5f5f5f;
|
||||
}
|
||||
.c2>.dialog-button{
|
||||
border-bottom-color: #5f5f5f;
|
||||
}
|
||||
.c3,.c3:hover,.c3>.panel-header{
|
||||
color: #333;
|
||||
border-color: #ff8080;
|
||||
background: #ffb3b3;
|
||||
background: -webkit-linear-gradient(top,#ffb3b3 0,#ff9999 100%);
|
||||
background: -moz-linear-gradient(top,#ffb3b3 0,#ff9999 100%);
|
||||
background: -o-linear-gradient(top,#ffb3b3 0,#ff9999 100%);
|
||||
background: linear-gradient(to bottom,#ffb3b3 0,#ff9999 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffb3b3,endColorstr=#ff9999,GradientType=0);
|
||||
}
|
||||
a.c3:hover{
|
||||
background: #ff9999;
|
||||
filter: none;
|
||||
}
|
||||
.c3>.panel-body{
|
||||
border-color: #ff8080;
|
||||
}
|
||||
.c3>.dialog-toolbar,.c3>.dialog-button{
|
||||
border-left-color: #ff8080;
|
||||
border-right-color: #ff8080;
|
||||
}
|
||||
.c3>.dialog-button{
|
||||
border-bottom-color: #ff8080;
|
||||
}
|
||||
.c4,.c4:hover,.c4>.panel-header{
|
||||
color: #333;
|
||||
border-color: #52d689;
|
||||
background: #b8eecf;
|
||||
background: -webkit-linear-gradient(top,#b8eecf 0,#a4e9c1 100%);
|
||||
background: -moz-linear-gradient(top,#b8eecf 0,#a4e9c1 100%);
|
||||
background: -o-linear-gradient(top,#b8eecf 0,#a4e9c1 100%);
|
||||
background: linear-gradient(to bottom,#b8eecf 0,#a4e9c1 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b8eecf,endColorstr=#a4e9c1,GradientType=0);
|
||||
}
|
||||
a.c4:hover{
|
||||
background: #a4e9c1;
|
||||
filter: none;
|
||||
}
|
||||
.c4>.panel-body{
|
||||
border-color: #52d689;
|
||||
}
|
||||
.c4>.dialog-toolbar,.c4>.dialog-button{
|
||||
border-left-color: #52d689;
|
||||
border-right-color: #52d689;
|
||||
}
|
||||
.c4>.dialog-button{
|
||||
border-bottom-color: #52d689;
|
||||
}
|
||||
.c5,.c5:hover,.c5>.panel-header{
|
||||
color: #fff;
|
||||
border-color: #b52b27;
|
||||
background: #d84f4b;
|
||||
background: -webkit-linear-gradient(top,#d84f4b 0,#c9302c 100%);
|
||||
background: -moz-linear-gradient(top,#d84f4b 0,#c9302c 100%);
|
||||
background: -o-linear-gradient(top,#d84f4b 0,#c9302c 100%);
|
||||
background: linear-gradient(to bottom,#d84f4b 0,#c9302c 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#d84f4b,endColorstr=#c9302c,GradientType=0);
|
||||
}
|
||||
a.c5:hover{
|
||||
background: #c9302c;
|
||||
filter: none;
|
||||
}
|
||||
.c5>.panel-body{
|
||||
border-color: #b52b27;
|
||||
}
|
||||
.c5>.dialog-toolbar,.c5>.dialog-button{
|
||||
border-left-color: #b52b27;
|
||||
border-right-color: #b52b27;
|
||||
}
|
||||
.c5>.dialog-button{
|
||||
border-bottom-color: #b52b27;
|
||||
}
|
||||
.c6,.c6:hover,.c6>.panel-header{
|
||||
color: #fff;
|
||||
border-color: #1f637b;
|
||||
background: #2984a4;
|
||||
background: -webkit-linear-gradient(top,#2984a4 0,#24748f 100%);
|
||||
background: -moz-linear-gradient(top,#2984a4 0,#24748f 100%);
|
||||
background: -o-linear-gradient(top,#2984a4 0,#24748f 100%);
|
||||
background: linear-gradient(to bottom,#2984a4 0,#24748f 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#2984a4,endColorstr=#24748f,GradientType=0);
|
||||
}
|
||||
a.c6:hover{
|
||||
background: #24748f;
|
||||
filter: none;
|
||||
}
|
||||
.c6>.panel-body{
|
||||
border-color: #1f637b;
|
||||
}
|
||||
.c6>.dialog-toolbar,.c6>.dialog-button{
|
||||
border-left-color: #1f637b;
|
||||
border-right-color: #1f637b;
|
||||
}
|
||||
.c6>.dialog-button{
|
||||
border-bottom-color: #1f637b;
|
||||
}
|
||||
.c7,.c7:hover,.c7>.panel-header{
|
||||
color: #333;
|
||||
border-color: #e68900;
|
||||
background: #ffab2e;
|
||||
background: -webkit-linear-gradient(top,#ffab2e 0,#ff9900 100%);
|
||||
background: -moz-linear-gradient(top,#ffab2e 0,#ff9900 100%);
|
||||
background: -o-linear-gradient(top,#ffab2e 0,#ff9900 100%);
|
||||
background: linear-gradient(to bottom,#ffab2e 0,#ff9900 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffab2e,endColorstr=#ff9900,GradientType=0);
|
||||
}
|
||||
a.c7:hover{
|
||||
background: #ff9900;
|
||||
filter: none;
|
||||
}
|
||||
.c7>.panel-body{
|
||||
border-color: #e68900;
|
||||
}
|
||||
.c7>.dialog-toolbar,.c7>.dialog-button{
|
||||
border-left-color: #e68900;
|
||||
border-right-color: #e68900;
|
||||
}
|
||||
.c7>.dialog-button{
|
||||
border-bottom-color: #e68900;
|
||||
}
|
||||
.c8,.c8:hover,.c8>.panel-header{
|
||||
color: #fff;
|
||||
border-color: #4b72a4;
|
||||
background: #698cba;
|
||||
background: -webkit-linear-gradient(top,#698cba 0,#577eb2 100%);
|
||||
background: -moz-linear-gradient(top,#698cba 0,#577eb2 100%);
|
||||
background: -o-linear-gradient(top,#698cba 0,#577eb2 100%);
|
||||
background: linear-gradient(to bottom,#698cba 0,#577eb2 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#698cba,endColorstr=#577eb2,GradientType=0);
|
||||
}
|
||||
a.c8:hover{
|
||||
background: #577eb2;
|
||||
filter: none;
|
||||
}
|
||||
.c8>.panel-body{
|
||||
border-color: #4b72a4;
|
||||
}
|
||||
.c8>.dialog-toolbar,.c8>.dialog-button{
|
||||
border-left-color: #4b72a4;
|
||||
border-right-color: #4b72a4;
|
||||
}
|
||||
.c8>.dialog-button{
|
||||
border-bottom-color: #4b72a4;
|
||||
}
|
||||
.c1>.panel-header>.panel-title,.c2>.panel-header>.panel-title,
|
||||
.c5>.panel-header>.panel-title,.c6>.panel-header>.panel-title,.c8>.panel-header>.panel-title{
|
||||
color: #fff;
|
||||
}
|
||||
.c-plain{
|
||||
border-color: #fff;
|
||||
background: #fff;
|
||||
}
|
||||
.c-plain>.panel-header,
|
||||
.c-plain>.panel-body,
|
||||
.c-plain>.dialog-button,
|
||||
.c-plain>.dialog-toolbar{
|
||||
border-color: transparent;
|
||||
background: transparent;
|
||||
}
|
||||
.c-raised{
|
||||
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
After Width: | Height: | Size: 184 B |