summaryrefslogtreecommitdiffstats
path: root/apps/files/l10n/fa.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/l10n/fa.js')
-rw-r--r--apps/files/l10n/fa.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/files/l10n/fa.js b/apps/files/l10n/fa.js
index a026287c102..de4759cf17c 100644
--- a/apps/files/l10n/fa.js
+++ b/apps/files/l10n/fa.js
@@ -133,14 +133,9 @@ OC.L10N.register(
"Text file" : "فایل متنی",
"New text file.txt" : "پروندهٔ متنی جدید با پسوند txt",
"Storage invalid" : "فضای ذخیره‌سازی نامعتبر",
- "Select" : "انتخاب",
- "You don’t have permission to upload or create files here" : "شما دسترسی مجاز برای آپلود یا ایجاد فایل در اینجا را ندارید",
- "New" : "جدید",
- "Copied!" : "کپی انجام شد!",
"Unlimited" : "نامحدود",
"Cancel" : "لغو",
"%1$s of %2$s used" : "%1$s از %2$s استفاده شده ",
- "Settings" : "تنظیمات",
"Deleted files" : "پرونده‌های حذف شده"
},
"nplurals=2; plural=(n > 1);");
.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php
/**
* ownCloud
*
* @author Robin Appelman
* @copyright 2012 Robin Appelman icewind@owncloud.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
*
*/

require_once '../lib/base.php';
require_once 'simpletest/unit_tester.php';
require_once 'simpletest/mock_objects.php';
require_once 'simpletest/collector.php';
require_once 'simpletest/default_reporter.php';

//load core test cases
loadTests(dirname(__FILE__));

//load app test cases
$apps=OC_Appconfig::getApps();
foreach($apps as $app){
	if(is_dir(OC::$SERVERROOT.'/apps/'.$app.'/tests')){
		loadTests(OC::$SERVERROOT.'/apps/'.$app.'/tests');
	}
}

function loadTests($dir=''){
	if($dh=opendir($dir)){
		while($name=readdir($dh)){
			if(substr($name,0,1)!='.'){//no hidden files, '.' or '..'
				$file=$dir.'/'.$name;
				if(is_dir($file)){
					loadTests($file);
				}elseif(substr($file,-4)=='.php' and $file!=__FILE__){
					$testCase=new TestSuite(getTestName($file));
					$testCase->addFile($file);
					if($testCase->getSize()>0){
						$testCase->run(new HtmlReporter());
					}
				}
			}
		}
	}
}

function getTestName($file){
// 	//TODO: get better test names
	$file=substr($file,strlen(OC::$SERVERROOT));
	return substr($file,0,-4);//strip .php
}