forked from extern/egroupware
85 lines
4.7 KiB
PHP
85 lines
4.7 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare - tinymce Filemanger plugin - translations *
|
|
* http://www.egroupware.org *
|
|
* Written and (c) by Ralf Becker <RalfBecker@outdoor-training.de> *
|
|
* -------------------------------------------- *
|
|
* This program 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 2 of the License, or (at your *
|
|
* option) any later version. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id: lang.php 19345 2005-10-10 23:20:11Z ralfbecker $ */
|
|
|
|
$GLOBALS['egw']->translation->add_app('tinymce');
|
|
|
|
/***********************************************************************
|
|
** Title.........: Insert File Dialog, File Manager
|
|
** Version.......: 1.1
|
|
** Author........: Al Rashid <alrashid@klokan.sk>
|
|
** Filename......: lang-en.php (english language file)
|
|
** URL...........: http://alrashid.klokan.sk/insFile/
|
|
** Last changed..: 8 Jun 2004
|
|
***********************************************************************/
|
|
$MY_MESSAGES = array();
|
|
$MY_MESSAGES['extmissing'] = lang('Only files with extensions are permited, e.g. "imagefile.jpg".');
|
|
$MY_MESSAGES['loading'] = lang('Loading files');
|
|
$MY_MESSAGES['uploading'] = lang('Uploading...');
|
|
$MY_MESSAGES['nopermtodelete'] = lang('No permission to delete file.');
|
|
$MY_MESSAGES['filenotfound'] = lang('File not found.');
|
|
$MY_MESSAGES['unlinkfailed'] = lang('Unlink failed.');
|
|
$MY_MESSAGES['rmdirfailed'] = lang('Rmdir failed.');
|
|
$MY_MESSAGES['foldernotfound'] = lang('Folder not found.');
|
|
$MY_MESSAGES['nopermtocreatefolder'] = lang('No permission to create folder.');
|
|
$MY_MESSAGES['pathnotfound'] = lang('Path not found.');
|
|
$MY_MESSAGES['foldernamemissing'] = lang('Folder name missing.');
|
|
$MY_MESSAGES['folderalreadyexists'] = lang('Folder already exists.');
|
|
$MY_MESSAGES['mkdirfailed'] = lang('Mkdir failed.');
|
|
$MY_MESSAGES['nopermtoupload'] = lang('No permission to upload.');
|
|
$MY_MESSAGES['extnotallowed'] = lang('Files with this extension are not allowed.');
|
|
$MY_MESSAGES['filesizeexceedlimit'] = lang('File exceeds the size limit');
|
|
$MY_MESSAGES['filenotuploaded'] = lang('File was not uploaded.');
|
|
$MY_MESSAGES['nofiles'] = lang('No files...');
|
|
$MY_MESSAGES['configproblem'] = lang('Configuration problem ');
|
|
$MY_MESSAGES['delete'] = lang('Delete');
|
|
$MY_MESSAGES['folders'] = lang('folder(s)');
|
|
$MY_MESSAGES['files'] = lang('file(s)');
|
|
$MY_MESSAGES['refresh'] = lang('Refresh');
|
|
$MY_MESSAGES['folder'] = lang('Folder');
|
|
$MY_MESSAGES['type'] = lang('Type');
|
|
$MY_MESSAGES['name'] = lang('Name');
|
|
$MY_MESSAGES['size'] = lang('Size');
|
|
$MY_MESSAGES['datemodified'] = lang('Date Modified');
|
|
$MY_MESSAGES['url'] = lang('URL');
|
|
$MY_MESSAGES['comment'] = lang('Comment');
|
|
$MY_MESSAGES['caption'] = lang('Caption');
|
|
$MY_MESSAGES['upload'] = lang('Upload');
|
|
$MY_MESSAGES['insertfile'] = "Insert File";
|
|
$MY_MESSAGES['filemanager'] = "File manager";
|
|
$MY_MESSAGES['directory'] = "Directory";
|
|
$MY_MESSAGES['enterurl'] = "You must enter the URL";
|
|
$MY_MESSAGES['entercaption'] = lang('Please enter the caption text');
|
|
$MY_MESSAGES['newfolder'] = lang('New folder');
|
|
$MY_MESSAGES['newfoldernamemissing'] = lang('New folder name missing!');
|
|
$MY_MESSAGES['renamefolder'] = lang('New folder name:');
|
|
$MY_MESSAGES['renamewarning'] = lang('Warning!\n Renaming or moving folders and files will break existing links in your documents. Continue?');
|
|
$MY_MESSAGES['renamefile'] = lang('New file name:');
|
|
$MY_MESSAGES['nopermtorename'] = lang('No permission to rename files and folders.');
|
|
$MY_MESSAGES['newfilenamemissing'] = lang('New file name missing!');
|
|
$MY_MESSAGES['filealreadyexists'] = lang('File with specified new name already exists. File was not renamed/moved.');
|
|
$MY_MESSAGES['folderalreadyexists'] = lang('Folder with specified new name already exists. Folder was not renamed/moved.');
|
|
$MY_MESSAGES['uploadfilealreadyexists'] = lang('File already exists. File was not uploaded.');
|
|
$MY_MESSAGES['cancel'] = lang('Cancel');
|
|
$MY_MESSAGES['ok'] = lang('OK');
|
|
$MY_MESSAGES['openfile'] = lang('Open file in new window');
|
|
$MY_MESSAGES['up'] = lang('Up');
|
|
$MY_MESSAGES['rename'] = lang('Rename');
|
|
$MY_MESSAGES['renamefailed'] = lang('Rename failed');
|
|
$MY_MESSAGES['move'] = lang('Move');
|
|
$MY_MESSAGES['nopermtomove'] = lang('No permission to move files and folders.');
|
|
$MY_MESSAGES['selectfolder'] = lang('Choose directory to move selected folders and files to.');
|
|
$MY_MESSAGES['ctrlshift'] = lang('Use Ctrl and/or Shift to select multiple items.');
|
|
$MY_MESSAGES['filename'] = lang('File:');
|
|
?>
|