code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
public class Rifle extends Weapon{
public function Rifle(){
var name: String = "Rifle";
var magCapacity: int = 5;
var power: int = 85;
var fireRate: double = 2.0;
var reloadTime: double = 1.0;
var oneHanded: boolean = false;
var range: int = 500;
var ammoPool:int =30;
super(name, magCapacity, po... | JavaScript |
#pragma strict
function OnCollisionEnter(collision : Collision) {
return false;
} | JavaScript |
#pragma strict
public static var isCrouching:boolean=false;
public static var isSprinting:boolean=false;
var player: Player;
var currentWeapon: Weapon;
var currentInteractable: Interactable;
function Start () {
player = gameObject.GetComponent("Player");
print(player);
}
function Update () {
if(Input.GetButto... | JavaScript |
#pragma strict
class Player extends Character{
var Difficulty = "Default";
public static var stamina: double = 100.0;
var count = 0;
var posX = 0;
var posZ = 0;
//variables for weapons
var pistolAmmo: int = 0; //amo type pistol
var pMax: int = 40;
var sniperAmmo: int = 0; //amo type sniper
var sMax: int... | JavaScript |
#pragma strict
#pragma implicit
#pragma downcast
// Does this script currently respond to input?
var canControl : boolean = true;
var useFixedUpdate : boolean = true;
// For the next variables, @System.NonSerialized tells Unity to not serialize the variable or show it in the inspector view.
// Very handy for organiz... | JavaScript |
private var motor : CharacterMotor;
public static var modifier:float=1.0;
// Use this for initialization
function Awake () {
motor = GetComponent(CharacterMotor);
}
// Update is called once per frame
function Update () {
// Get the input vector from keyboard or analog stick
var directionVector = new Vector3(Input... | JavaScript |
public var health = 100;
var maxArmor = 100;
var inventory = new Array();
public function healthUpdate(num: int){
health += num;
if(health >= 100){
health = 100;
}
else if(health <=0){
print("you died");
death();
}
}
function death(){
this.gameObject.SetActive(false);
}
functi... | JavaScript |
public class Interactable extends UnityEngine.MonoBehaviour{
var hasBeenUsed=false;
var ourGuy: GameObject;
function start(){
}
function OnTriggerEnter (other : Collider) {
ourGuy=GameObject.FindGameObjectWithTag("Player");
if(!hasBeenUsed){
print("Press E to use");
sendObject();}
}
function o... | JavaScript |
#pragma strict
var healthGiven:int = 10;
//var ifUsed:Boolean = false;
function Start () {
}
function Update () {
print("TEST");
}
function OnCollisionEnter(collision : Collision){
if(collision.gameObject.tag == "First Person Controller"){
print("HEALTH AQUIRED");
}
} | JavaScript |
#pragma strict
function Start () {
}
function Update () {
} | JavaScript |
#pragma strict
var prefab : Transform;
function Start () {
var objects = GameObject.FindGameObjectsWithTag("RadioSpawnPoint");
var place=Random.Range(0, objects.length);
var chosenOne : GameObject= objects[place];
Instantiate(prefab,chosenOne.transform.position,chosenOne.transform.rotation);
}
function Update ()... | JavaScript |
#pragma strict
public class RadioScript extends Interactable{
function activate(){
print("Successfully Activated THE RADIO!");
hasBeenUsed=true;
}
function Start () {
}
//function activate () {
// ObjectiveController.missions.get(0).prog++;
//}
} | JavaScript |
#pragma strict
function Start () {
}
var showMainMenu:boolean = true;
var showOptionsMenu:boolean = false;
var showCampaignMenu:boolean = false;
var showSoundOptions:boolean = false;
var showDifficultyModes:boolean = false;
var showSubtitles:boolean = false;
var showSetter:int = 0;
var saveDifficulty:int = 2;... | JavaScript |
#pragma strict
function Start () {
}
var showMain: boolean = false;
var showOptions: boolean = false;
function OnGUI() {
if(showMain){
Time.timeScale=0;
if (GUI.Button (new Rect (576,133, 288, 128), "Resume")){
Time.timeScale=1;
showMain=false;
}
if (GUI.Button (new Rect (576,266, 288, 128), "... | JavaScript |
#pragma strict
function Start () {
}
var hasSight:boolean = false;
var fwd = transform.TransformDirection (Vector3.forward);
if (Physics.Raycast (transform.position, fwd, 99999)) {
hasSight=false;
}
else
hasSight=true;
function Update () {
} | JavaScript |
#pragma strict
class Enemy extends Character{
var Difficulty = "Default";
var target : Transform; //the enemy's target
var moveSpeed = 3; //move speed
var rotationSpeed = 3; //speed of turning
var xcords= new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
var ycords= new Array(0,0... | JavaScript |
#pragma strict
var prefab : Transform;
function Start () {
var objects = GameObject.FindGameObjectsWithTag("PlayerSpawnPoint");
var place=Random.Range(0, objects.length);
var chosenOne : GameObject= objects[place];
Instantiate(prefab,chosenOne.transform.position,chosenOne.transform.rotation);
}
function Update (... | JavaScript |
#pragma strict
var xcords= new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
var ycords= new Array(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
var steps = 36;
var radius= 1;
// function(radius, steps, centerX, centerY){
//var xValues = [centerX];
... | JavaScript |
var addOptions={
top: 0, left: 0, width: 500,
addCaption: "Добавить запись",
bSubmit: "Сохранить",
bCancel: "Отменить",
closeAfterAdd: true,
closeOnEscape: true
};
jQuery("#list_post_users").jqGrid({
url:'controller/server/listpostusers.php',
dat... | JavaScript |
function LoadTable()
{
jQuery("#bp_xml").jqGrid({
url:'controller/server/bp_xml.php',
datatype: "json",
colNames:['Id','Дата','Заголовок','Статус','Создатель','Node','Схема',''],
colModel:[
{name:'id',index:'id',width:15,search: false},
{name:'dt',index:'id',width:40,search: ... | JavaScript |
jQuery("#list2").jqGrid({
url:'controller/server/libre_vendor.php',
datatype: "json",
colNames:[' ','Id','Имя','Комментарий','Действия'],
colModel:[
{name:'active',index:'active', width:20},
{name:'id',index:'id', width:55},
{name:'name',index:'name', width:200,editable:true},
{name:'co... | JavaScript |
jQuery("#list2").jqGrid({
url:'controller/server/libre_users.php?org_status=list',
datatype: "json",
colNames:[' ','Id','Организация','Логин','Пароль','E-mail','Админ',''],
colModel:[
{name:'active',index:'active', width:20,search: false},
{name:'users.id',index:'users.id', width:55},
{name:... | JavaScript |
function LoadTable()
{
jQuery("#bp_xml").jqGrid({
url:'controller/server/bp_xml_list.php?curuserid='+curuserid,
datatype: "json",
colNames:['Id','Дата','Заголовок','Создатель','Время'],
colModel:[
{name:'id',index:'id',width:15,search: false},
{name:'dt',index:'id',width:40,s... | JavaScript |
var addOptions={
top: 0, left: 0, width: 500,
addCaption: "Добавить запись",
bSubmit: "Сохранить",
bCancel: "Отменить",
closeAfterAdd: true,
closeOnEscape: true
};
jQuery("#bp_accept_filelist").GridUnload("#bp_accept_filelist");
jQuery("#bp_accept_userlist").GridUnload("#bp_accept_userlist");... | JavaScript |
// Получаем список ТМЦ в выбранной организации, в выбранном помещении
function GetListTmc(placesid){
//alert('S');
url="controller/server/getlisttmc.php?placesid="+placesid+"&addnone=false";
$("#sel_tmc").load(url);
};
// при выборе помещения
$("#splaces").click(function(){
GetListTmc($... | JavaScript |
$("#bexp").click(function(){
$.get("controller/server/import_knt.php", function(data){
$("#infoblock").html(data);
});
return false;
}); | JavaScript |
$("#test_ping").click(function(){
$("#ping_add").html("<img src=images/loading.gif>");
$("#ping_add").load('controller/server/ping.php?orgid='+$("#sel_orgid :selected").val(), function() {
});
}); | JavaScript |
GetGrid();
GetSubGrid();
function GetGrid()
{
jQuery("#list2").jqGrid({
url:'controller/server/libre_place.php?orgid='+$("#sel_orgid :selected").val(),
datatype: "json",
colNames:[' ','Id','Наименование','Комментарий','Действия'],
colModel:[
{name:'active',index:'active', width:20},
{name:'i... | JavaScript |
$("#addtask").click(function(){
$("#add_edit").load("controller/client/task_add_edit.php?mode=add");
});
$("#edittask").click(function(){
var gr = jQuery("#list2").jqGrid('getGridParam','selrow');
if( gr != null ){
$("#add_edit").load("controller/client/task_add_edit.php?mode=edit&id="+gr);
}
... | JavaScript |
var
pznews=1;
$("#newsprev").click(function() {
if (pznews>1) {
pznews--;
url="controller/server/getnews.php?num="+pznews;
$("#newslist").load(url);
};
});
$("#newsnext").click(function() {
pznews++;
url="controller/server/getnews.php?num="+pznews;
$prev=$("#newsnext")... | JavaScript |
jQuery.extend(jQuery.jgrid.defaults, {ajaxSelectOptions: { cache: false }});
jQuery("#list2").jqGrid({
url:'controller/server/libre_knt.php?org_status=list',
datatype: "json",
colNames:[' ','Id','Имя','Инн','Кпп','Пок','Прод','К.договор','ERPCode','Комментарий','Действия'],
colModel:[
{name:'active',i... | JavaScript |
$("#bdel").click(function(){
$("#infoblock").load("controller/server/delete.php");
return false;
}); | JavaScript |
jQuery.extend(jQuery.jgrid.defaults, {ajaxSelectOptions: { cache: false }});
jQuery("#list2").jqGrid({
url:'controller/server/libre_knt.php?org_status=list',
datatype: "json",
colNames:[' ','Id','Имя','Инн','Кпп','Пок','Прод','К.договор','ERPCode','Комментарий','Действия'],
colModel:[
{name:'active',i... | JavaScript |
$().ready(function () {
var url = 'http://xn--90acbu5aj5f.xn--p1ai/files/curverweborg.php';
$.get(url, function (data) {
$("#verc").html("Версия на сайте: "+data);
});
});
$("#form_cfg_theme_sl").click(function(){
$("#form_cfg_theme").val($("#form_cfg_theme_sl option:selected").html());
}); | JavaScript |
function ListEqByPlaces(oid,pid,plpid){
if ($("#gr").prop("checked")==false){
jQuery("#list2").jqGrid({
url:'controller/server/report.php?curuserid='+plpid+'&curorgid='+oid+'&curplid='+pid+'&tpo='+$("#sel_rep :selected").val()+'&os='+$("#os").prop("checked")+'&mode='+$("#mode").prop("checked")+'&repair='+$("#... | JavaScript |
var addOptions={
top: 0, left: 0, width: 500,
addCaption: "Добавить запись",
bSubmit: "Сохранить",
bCancel: "Отменить",
closeAfterAdd: true,
closeOnEscape: true
};
jQuery("#list2").jqGrid({
url:'controller/server/libre_group.php',
datatype: "json",
colNames:[' ','Id','Имя','Комментарий... | JavaScript |
// загружаем в таблицу #list2 список новостей
jQuery("#list2").jqGrid({
url:'controller/server/news.php',
datatype: "json",
colNames:['Id','Дата','Заголовок','Закреплено','Действия'],
colModel:[
{name:'id',index:'id', width:55,editable:false},
{name:'dt',index:'dt', width:60,editable:false},
... | JavaScript |
function parseGET(url)
{
if(!url || url == '') url = document.location.search;
if(url.indexOf('?') < 0) return Array();
url = url.split('?');
url = url[1];
var GET = [];
var params = [];
var keyval = [];
if(url.indexOf('#')!=-1)
{... | JavaScript |
function LoadTable()
{
jQuery("#bp_accept").jqGrid({
url:'controller/server/bp_accept.php',
datatype: "json",
colNames:['Id','Дата','Заголовок','Статус','Создатель',''],
colModel:[
{name:'id',index:'id',width:15,search: false},
{name:'dt',index:'id',width:40,search: false},
... | JavaScript |
$("#bexp").click(function(){
//$("#infoblock").load("controller/server/export_xml.php");
newWin=window.open('controller/server/export_xml.php');
return false;
}); | JavaScript |
var btnUpload=$('#uploadButton');
var upload_me=new AjaxUpload(btnUpload, {
action : 'controller/server/uploadimage.php',
name : 'myfile',
onComplete: function(file, response){
if(response=="error"){$('#status').text='ошибка..';} else {
$("#photoid").html('<img src=images/photo/'+response... | JavaScript |
function LoadTable_c()
{
jQuery("#bp_xml_c").jqGrid({
url:'controller/server/bp_xml_list_c.php',
datatype: "json",
colNames:['Id','Дата','Заголовок','Создатель','Время'],
colModel:[
{name:'id',index:'id',width:15,search: false},
{name:'dt',index:'id',width:40,search: false},
... | JavaScript |
function task_click($id)
{
$tmp=$("#task_info").html();
if ($tmp==""){
$("#task_info").load("controller/client/task_list.php?id="+$id);
} else {$("#task_info").html("");};
}; | JavaScript |
$("#bexp").click(function(){
$.get("controller/server/import_empl.php", function(data){
$("#infoblock").html(data);
});
return false;
}); | JavaScript |
// при выборе организации
$("#sel_orgid").click(function(){
GetMapByOrgId($("#sel_orgid :selected").val());
});
// получаем список ТМЦ на всем заводе
function GetArrayEq(orgid){
$.get('controller/server/getjsonlisteq.php',
{ orgid: orgid },
function(e) {
zx=JSON.parse(e);
... | JavaScript |
jQuery("#list_rep").jqGrid({
url:'controller/server/repair.php?step=list&eqid=1',
datatype: "json",
colNames:['Id','Контрагент','ТМЦ','Дата начала','Дата конца','Стоимость','Комментарий','Статус','Действия'],
colModel:[
{name:'rpid',index:'rpid', width:35},
{name:'namekont',index:'name... | JavaScript |
jQuery("#list2").jqGrid({
url:'controller/server/libre_org.php?org_status=list',
datatype: "json",
colNames:[' ','Id','Имя организации','Действия'],
colModel:[
{name:'active',index:'active', width:20},
{name:'id',index:'id', width:55},
{name:'name',index:'name', width:400,editable:true},
{... | JavaScript |
jQuery("#list2").jqGrid({
url:'controller/server/libre_nome.php',
datatype: "json",
colNames:[' ','Id','Группа','Производитель','Наименование',''],
colModel:[
{name:'active',index:'active', width:20,search: false},
{name:'nomeid',index:'nomeid', width:55},
{name:'group_nome.name',... | JavaScript |
jQuery.extend(jQuery.jgrid.defaults, {ajaxSelectOptions: { cache: false }});
function LoadTable()
{
jQuery("#tbl_equpment").jqGrid({
url:'controller/server/equipment.php?sorgider='+$("#orgs :selected").val(),
datatype: "json",
colNames:[' ','Id','Помещение','Номенклатура','Группа','Производитель','Имя по бух... | JavaScript |
jQuery("#bp_list").jqGrid({
url:'controller/server/bp_list.php?curuserid='+curuserid,
datatype: "json",
colNames:['Id','Дата','Заголовок'],
colModel:[
{name:'id',index:'id', width:15},
{name:'dt',index:'dt', width:40,editable:false},
{name:'title',index:'title', width:1... | JavaScript |
$("#dt").datepicker({
format: 'dd.mm.yyyy hh:ii:ss',
weekStart: 1,
days: ["Вс","По","Вт","Ср","Чт","Пт","Сб"],
months: ["Январь","Февраль","Март","Апрель","Мая","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"]
});
$("#maxdate").datepicker({
format: 'dd.mm.yyyy hh:ii:ss',
weekStar... | JavaScript |
tinyMCE.init({
// General options
mode : "textareas",
theme : "advanced",
plugins : "jbimages,autolink,pagebreak,lists,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,preview,media,contextmenu,paste,directionality,noneditable,visualchars,nonbreaking,advlist,visualblocks",
// Them... | JavaScript |
$('#myTab a:first').click(function (e) {
jQuery("#list2").GridUnload("#list2");
ListEqByPlaces("#list2","pager2");
});
$('#myTab a:last').click(function (e) {
jQuery("#list2").GridUnload("#list2");
ListEqByMat("#list2","pager2");
});
$('#myTab a:first').tab('show'); // Выбор первой вкладки
var btnUpload=$('#... | JavaScript |
var btnUpload=$('#uploadButton');
var upload_me=new AjaxUpload(btnUpload, {
action : 'controller/server/uploadanyfiles.php',
name : 'myfile',
onComplete: function(file, response){
if(response!=""){
//$('#status').text='ошибка..';
alert("Ошибка загрузки:"+response)... | JavaScript |
/* =========================================================
* bootstrap-datepicker.js
* original by Stefan Petre
* tweaked by gus
* ========================================================= */
!function( $ ) {
// Picker object
var Datepicker = function(element, options){
this.element = $(element);
this.d... | JavaScript |
//This file should be used if you want to debug and develop
function jqGridInclude()
{
var pathtojsfiles = "js/"; // need to be ajusted
// set include to false if you do not want some modules to be included
var modules = [
{ include: true, incfile:'i18n/grid.locale-en.js'}, // jqGrid translati... | JavaScript |
/*jshint eqeqeq:false, eqnull:true, devel:true */
/*global jQuery */
(function($){
/**
* jqGrid extension for manipulating Grid Data
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.... | JavaScript |
/*jshint eqeqeq:false */
/*global jQuery */
(function($){
/*
**
* jqGrid extension for cellediting Grid Data
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl-2.... | JavaScript |
/**
* jqGrid extension - Tree Grid
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
/*jshint eqeqeq:false */
/*global jQuery */
(function($) {
"use s... | JavaScript |
/*
Transform a table to a jqGrid.
Peter Romianowski <peter.romianowski@optivo.de>
If the first column of the table contains checkboxes or
radiobuttons then the jqGrid is made selectable.
*/
// Addition - selector can be a class or id
function tableToGrid(selector, options) {
jQuery(selector).each(function(... | JavaScript |
/*jshint evil:true, eqeqeq:false, eqnull:true, devel:true */
/*global jQuery */
(function($){
/*
**
* jqGrid addons using jQuery UI
* Author: Mark Williams
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl-2.0.html
* d... | JavaScript |
/*jshint eqeqeq:false */
/*global jQuery */
(function($){
/**
* jqGrid extension for SubGrid Data
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl-2.0.html
**/
... | JavaScript |
/*jshint eqeqeq:false, eqnull:true, devel:true */
/*global jQuery, xmlJsonClass */
(function($){
/*
* jqGrid extension for constructing Grid Data from external file
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses... | JavaScript |
/*jshint eqeqeq:false, eqnull:true */
/*global jQuery */
// Grouping module
(function($){
"use strict";
$.extend($.jgrid,{
template : function(format){ //jqgformat
var args = $.makeArray(arguments).slice(1), j, al = args.length;
if(format==null) { format = ""; }
return format.replace(/\{([\w\-]+)(?:\:([... | JavaScript |
/*jshint eqeqeq:false, eqnull:true, devel:true */
/*global xmlJsonClass, jQuery */
(function($){
/**
* jqGrid extension for form editing Grid Data
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
... | JavaScript |
/*jshint eqeqeq:false */
/*global jQuery */
(function($){
/**
* jqGrid extension for custom methods
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
*
* Wildraid wildraid@mail.ru
* Oleg Kiriljuk oleg.kiriljuk@ok-soft-gmbh.com
* Dual licensed under the MIT and GPL licenses:
* http://www.open... | JavaScript |
/*
* jqFilter jQuery jqGrid filter addon.
* Copyright (c) 2011, Tony Tomov, tony@trirand.com
* Dual licensed under the MIT and GPL licenses
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl-2.0.html
*
* The work is inspired from this Stefan Pirvu
* http://www.codep... | JavaScript |
// ==ClosureCompiler==
// @compilation_level SIMPLE_OPTIMIZATIONS
/**
* @license jqGrid 4.4.4 - jQuery Grid
* Copyright (c) 2008, Tony Tomov, tony@trirand.com
* Dual licensed under the MIT and GPL licenses
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl-2.0.html
... | JavaScript |
// ==ClosureCompiler==
// @compilation_level SIMPLE_OPTIMIZATIONS
/**
* @license jqGrid 4.4.5 - jQuery Grid
* Copyright (c) 2008, Tony Tomov, tony@trirand.com
* Dual licensed under the MIT and GPL licenses
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl-2.0.html
... | JavaScript |
/*
**
* formatter for values but most of the values if for jqGrid
* Some of this was inspired and based on how YUI does the table datagrid but in jQuery fashion
* we are trying to keep it as light as possible
* Joshua Burnett josh@9ci.com
* http://www.greenbill.com
*
* Changes from Tony Tomov tony@trira... | JavaScript |
/*jshint eqeqeq:false */
/*global jQuery */
(function($){
/*
* jqGrid common function
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl-2.0.html
*/
"use strict"... | JavaScript |
;(function($){
/**
* jqGrid Danish Translation
* Aesiras A/S
* http://www.aesiras.dk
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defaults : {
recordtext: "... | JavaScript |
;(function($){
/**
* jqGrid Hungarian Translation
* Őrszigety Ádám udx6bs@freemail.hu
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
... | JavaScript |
;(function($){
/**
* jqGrid Russian Translation v1.0 02.07.2009 (based on translation by Alexey Kanaev v1.1 21.01.2009, http://softcore.com.ru)
* Sergey Dyagovchenko
* http://d.sumy.ua
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/... | JavaScript |
;(function($){
/**
* jqGrid Turkish Translation
* Erhan Gündoğan (erhan@trposta.net)
* http://blog.zakkum.com
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defa... | JavaScript |
;(function($){
/**
* jqGrid Czech Translation
* Pavel Jirak pavel.jirak@jipas.cz
* doplnil Thomas Wagner xwagne01@stud.fit.vutbr.cz
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
... | JavaScript |
;(function($){
/**
* jqGrid Greek (el) Translation
* Alex Cicovic
* http://www.alexcicovic.com
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defaults : {
rec... | JavaScript |
;(function($){
/**
* jqGrid Portuguese Translation
* Tradu��o da jqGrid em Portugues por Frederico Carvalho, http://www.eyeviewdesign.pt
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$... | JavaScript |
(function(a) {
a.jgrid = a.jgrid || {};
a.extend(a.jgrid,{
defaults:
{
recordtext: "regels {0} - {1} van {2}",
emptyrecords: "Geen data gevonden.",
loadtext: "laden...",
pgtext: "pagina {0} van {1}"
},
search:
{
... | JavaScript |
;(function($){
/**
* jqGrid Chinese Translation for v4.2
* henryyan 2011.11.30
* http://www.wsria.com
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
* update 2011.11.30
* add double u3000 SPACE for search... | JavaScript |
;(function($){
/**
* jqGrid Croatian Translation
* Version 1.0.1 (developed for jQuery Grid 4.4)
* msajko@gmail.com
*
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgr... | JavaScript |
;(function ($) {
/**
* jqGrid Persian Translation
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defaults: {
recordtext: "نمابش {0} - {1} از {2... | JavaScript |
;(function($){
/**
* jqGrid Serbian latin Translation
* Bild Studio info@bild-studio.net
* http://www.bild-studio.com
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,... | JavaScript |
;(function($){
/**
* jqGrid English Translation
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defaults... | JavaScript |
;(function($){
/**
* jqGrid Galician Translation
* Translated by Jorge Barreiro <yortx.barry@gmail.com>
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defaults : {... | JavaScript |
;(function($){
/**
* jqGrid Arabic Translation
*
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defaults : {
recordtext: "تسجيل {... | JavaScript |
;(function($){
/**
* jqGrid Swedish Translation
* Harald Normann harald.normann@wts.se, harald.normann@gmail.com
* http://www.worldteamsoftware.com
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.... | JavaScript |
;(function($){
/**
* jqGrid Danish Translation
* Kaare Rasmussen kjs@jasonic.dk
* http://jasonic.dk/blog
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = {
defaults : {
recordtext: "View {0} - {1} of {2}",... | JavaScript |
;(function($){
/**
* jqGrid Icelandic Translation
* jtm@hi.is Univercity of Iceland
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defaults : {
recordtext: "Sko... | JavaScript |
;(function($){
/**
* jqGrid Lithuanian Translation
* aur1mas aur1mas@devnet.lt
* http://aur1mas.devnet.lt
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defaults... | JavaScript |
;(function($){
/**
* jqGrid Catalan Translation
* Traducció jqGrid en Catatà per Faserline, S.L.
* http://www.faserline.com
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.... | JavaScript |
;(function($){
/**
* jqGrid Ukrainian Translation v1.0 02.07.2009
* Sergey Dyagovchenko
* http://d.sumy.ua
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
default... | JavaScript |
;(function($){
/**
* jqGrid Vietnamese Translation
* Lê Đình Dũng dungtdc@gmail.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
de... | JavaScript |
;(function($){
/**
* jqGrid Montenegrian Translation
* Bild Studio info@bild-studio.net
* http://www.bild-studio.com
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{... | JavaScript |
;(function($){
/**
* jqGrid Bulgarian Translation
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defau... | JavaScript |
;(function($){
/**
* jqGrid Romanian Translation
* Alexandru Emil Lupu contact@alecslupu.ro
* http://www.alecslupu.ro/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgri... | JavaScript |
;(function($){
/**
* jqGrid Japanese Translation
* OKADA Yoshitada okada.dev@sth.jp
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
de... | JavaScript |
;(function($){
/**
* jqGrid (fi) Finnish Translation
* Jukka Inkeri awot.fi 2010-05-19
* Alex Grönholm alex.gronholm@nextday.fi 2011-05-18
* http://awot.fi
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
... | JavaScript |
;(function($){
/**
* jqGrid Serbian Translation
* Александар Миловац(Aleksandar Milovac) aleksandar.milovac@gmail.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgr... | JavaScript |
;(function($){
/**
* jqGrid English Translation
* Tony Tomov tony@trirand.com
* http://trirand.com/blog/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
**/
$.jgrid = $.jgrid || {};
$.extend($.jgrid,{
defaults... | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.