Completed
Push — master ( 10ff09...c7ef41 )
by Andreas
33:56
created

static/org.openpsa.core/jquery-ui-multiselect-widget-3.0.0/i18n/jquery.multiselect.zh-cn.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 12
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 1
mnd 0
bc 0
fnc 1
bpm 0
cpm 1
noi 0
1
/* Simplified Chinese initialisation for the jQuery UI multiselect plugin. */
2
/* Written by Ben ([email protected]). */
3
4
(function ( $ ) {
5
6
$.extend($.ech.multiselect.prototype.options, {
7
	linkInfo: {
8
		checkAll: {text: '全选', title: '全选'}, 
9
		uncheckAll: {text: '清空', title: '清空'}
10
	},
11
	noneSelectedText: '请选择',
12
	selectedText: '# 已选择'
13
});
14
15
})( jQuery );
16