├── plugins ├── ace │ └── mode-text.js ├── luminous │ ├── .htaccess │ ├── src │ │ ├── .htaccess │ │ ├── debug.php │ │ ├── formatters │ │ │ └── identityformatter.class.php │ │ ├── doxygen.php │ │ └── cache │ │ │ └── sql │ │ │ └── cache.mysql │ ├── client │ │ └── .htaccess │ ├── style │ │ ├── .htaccess │ │ └── icons │ │ │ ├── chevron-left.png │ │ │ └── chevron-right.png │ ├── languages │ │ ├── .htaccess │ │ ├── include │ │ │ └── ecma.php │ │ └── identity.php │ └── luminous.php ├── jscalendar │ ├── img.gif │ ├── menuarrow.gif │ ├── menuarrow2.gif │ ├── lang │ │ ├── calendar-es.js │ │ ├── calendar-fr.js │ │ ├── calendar-jp.js │ │ ├── calendar-sv.js │ │ ├── calendar-tr.js │ │ ├── calendar-zh.js │ │ ├── calendar-big5.js │ │ └── calendar-cs-win.js │ └── skins │ │ └── aqua │ │ ├── dark-bg.gif │ │ ├── active-bg.gif │ │ ├── hover-bg.gif │ │ ├── menuarrow.gif │ │ ├── normal-bg.gif │ │ ├── status-bg.gif │ │ ├── title-bg.gif │ │ ├── today-bg.gif │ │ └── rowhover-bg.gif ├── ckeditor │ ├── plugins │ │ ├── icons.png │ │ ├── image │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ └── images │ │ │ │ └── anchor.png │ │ ├── magicline │ │ │ └── images │ │ │ │ └── icon.png │ │ ├── fakeobjects │ │ │ └── images │ │ │ │ └── spacer.gif │ │ ├── about │ │ │ └── dialogs │ │ │ │ └── logo_ckeditor.png │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ └── specialchar │ │ │ └── dialogs │ │ │ └── lang │ │ │ └── _translationstatus.txt │ └── skins │ │ └── moono │ │ ├── icons.png │ │ └── images │ │ ├── mini.png │ │ ├── arrow.png │ │ └── close.png ├── jupload │ └── wjhk.jupload.jar └── tinymce │ ├── plugins │ ├── example │ │ ├── langs │ │ │ ├── en.js │ │ │ └── en_dlg.js │ │ ├── img │ │ │ └── example.gif │ │ ├── js │ │ │ └── dialog.js │ │ └── editor_plugin.js │ ├── media │ │ └── moxieplayer.swf │ ├── advimage │ │ ├── img │ │ │ └── sample.gif │ │ ├── css │ │ │ └── advimage.css │ │ └── editor_plugin.js │ ├── emotions │ │ ├── img │ │ │ ├── smiley-cry.gif │ │ │ ├── smiley-cool.gif │ │ │ ├── smiley-frown.gif │ │ │ ├── smiley-kiss.gif │ │ │ ├── smiley-sealed.gif │ │ │ ├── smiley-smile.gif │ │ │ ├── smiley-wink.gif │ │ │ ├── smiley-yell.gif │ │ │ ├── smiley-innocent.gif │ │ │ ├── smiley-laughing.gif │ │ │ ├── smiley-embarassed.gif │ │ │ ├── smiley-money-mouth.gif │ │ │ ├── smiley-surprised.gif │ │ │ ├── smiley-tongue-out.gif │ │ │ ├── smiley-undecided.gif │ │ │ └── smiley-foot-in-mouth.gif │ │ ├── langs │ │ │ ├── en_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── vi_dlg.js │ │ │ └── ja_dlg.js │ │ └── editor_plugin.js │ ├── spellchecker │ │ ├── img │ │ │ └── wline.gif │ │ ├── css │ │ │ └── content.css │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── advhr │ │ ├── langs │ │ │ ├── en_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── ar_dlg.js │ │ │ ├── ru_dlg.js │ │ │ └── uk_dlg.js │ │ ├── css │ │ │ └── advhr.css │ │ └── editor_plugin.js │ ├── inlinepopups │ │ └── skins │ │ │ └── clearlooks2 │ │ │ └── img │ │ │ ├── alert.gif │ │ │ ├── button.gif │ │ │ ├── buttons.gif │ │ │ ├── confirm.gif │ │ │ ├── corners.gif │ │ │ ├── vertical.gif │ │ │ └── horizontal.gif │ ├── paste │ │ └── langs │ │ │ ├── pt_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── ar_dlg.js │ │ │ └── uk_dlg.js │ ├── searchreplace │ │ ├── css │ │ │ └── searchreplace.css │ │ └── langs │ │ │ ├── en_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── vi_dlg.js │ │ │ └── ja_dlg.js │ ├── table │ │ ├── css │ │ │ ├── table.css │ │ │ ├── cell.css │ │ │ └── row.css │ │ └── js │ │ │ └── merge_cells.js │ ├── xhtmlxtras │ │ ├── css │ │ │ ├── attributes.css │ │ │ └── popup.css │ │ └── js │ │ │ ├── abbr.js │ │ │ ├── cite.js │ │ │ └── acronym.js │ ├── template │ │ ├── blank.htm │ │ ├── css │ │ │ └── template.css │ │ └── langs │ │ │ ├── en_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── hu_dlg.js │ │ │ └── cs_dlg.js │ ├── example_dependency │ │ └── editor_plugin.js │ ├── print │ │ └── editor_plugin.js │ ├── advlink │ │ └── css │ │ │ └── advlink.css │ └── preview │ │ ├── preview.html │ │ └── example.html │ └── themes │ ├── simple │ ├── img │ │ └── icons.gif │ ├── skins │ │ ├── o2k7 │ │ │ ├── img │ │ │ │ └── button_bg.png │ │ │ └── content.css │ │ └── default │ │ │ └── content.css │ └── langs │ │ ├── nl.js │ │ ├── en.js │ │ ├── it.js │ │ ├── sv.js │ │ ├── fr.js │ │ ├── pt.js │ │ ├── de.js │ │ ├── da.js │ │ ├── fi.js │ │ ├── pl.js │ │ ├── tr.js │ │ ├── cs.js │ │ ├── zh-cn.js │ │ ├── zh-tw.js │ │ ├── vi.js │ │ ├── ja.js │ │ ├── hu.js │ │ ├── he.js │ │ └── ar.js │ └── advanced │ ├── img │ ├── flash.gif │ ├── icons.gif │ ├── iframe.gif │ ├── trans.gif │ ├── video.gif │ ├── pagebreak.gif │ ├── quicktime.gif │ ├── realmedia.gif │ ├── shockwave.gif │ ├── colorpicker.jpg │ └── windowsmedia.gif │ └── skins │ ├── default │ └── img │ │ ├── items.gif │ │ ├── tabs.gif │ │ ├── buttons.png │ │ ├── menu_arrow.gif │ │ ├── menu_check.gif │ │ └── progress.gif │ └── o2k7 │ └── img │ ├── button_bg.png │ ├── button_bg_black.png │ └── button_bg_silver.png ├── skins ├── iphone │ ├── header.template.php │ ├── status │ │ ├── status.template.php │ │ └── license.txt │ ├── footer_versioncheck.template.php │ ├── images │ │ ├── footer.png │ │ ├── header.png │ │ └── license.txt │ ├── raw1.template.php │ ├── zip2.template.php │ ├── chmod2.template.php │ ├── unzip2.template.php │ ├── install2.template.php │ ├── rename2.template.php │ ├── unzip1.template.php │ ├── findstring1.template.php │ ├── findstring2.template.php │ ├── install1.template.php │ ├── newdir1.template.php │ ├── newdir2.template.php │ ├── rename1.template.php │ ├── calculatesize1.template.php │ ├── copymovedelete2.template.php │ ├── advanced_ftpserver1.template.php │ ├── advanced_ftpserver2.template.php │ ├── advanced_parsing1.template.php │ ├── advanced_webserver1.template.php │ ├── zip1.template.php │ ├── footer.template.php │ └── logout.template.php └── shinra │ ├── css │ └── ie8-hacks.css │ ├── img │ ├── logo.png │ ├── balloon.png │ ├── loading.gif │ ├── to-top.png │ ├── next-arrow.png │ ├── plus-sign.png │ ├── prev-arrow.png │ ├── shadow-1-3.png │ ├── shadow-1-4.png │ ├── bottom-shadow.png │ ├── bullets │ │ ├── arrow.png │ │ ├── check.png │ │ ├── heart.png │ │ ├── plus.png │ │ └── star.png │ ├── front-divider.png │ ├── post-divider.png │ ├── search-submit.png │ ├── shadow-blog.png │ ├── slider-arrows.png │ ├── slider-shadow.png │ ├── shadow-project.png │ ├── twitter-border.png │ ├── breadcrumb-slash.png │ ├── mono-icons │ │ ├── arrow32.png │ │ ├── bag32.png │ │ ├── block32.png │ │ ├── box32.png │ │ ├── check32.png │ │ ├── clock32.png │ │ ├── cup32.png │ │ ├── gear32.png │ │ ├── heart32.png │ │ ├── home32.png │ │ ├── lock32.png │ │ ├── mail32.png │ │ ├── minus32.png │ │ ├── mouse32.png │ │ ├── note32.png │ │ ├── paper32.png │ │ ├── phone32.png │ │ ├── plug32.png │ │ ├── plus32.png │ │ ├── radio32.png │ │ ├── rss32.png │ │ ├── sleep32.png │ │ ├── slide32.png │ │ ├── smile32.png │ │ ├── star32.png │ │ ├── stop32.png │ │ ├── user32.png │ │ ├── users32.png │ │ ├── wand32.png │ │ ├── article32.png │ │ ├── camera32.png │ │ ├── comment32.png │ │ ├── folder32.png │ │ ├── glitter32.png │ │ ├── melody32.png │ │ ├── monitor32.png │ │ ├── pencil32.png │ │ ├── printer32.png │ │ ├── recycle32.png │ │ ├── search32.png │ │ ├── shield32.png │ │ ├── spanner32.png │ │ ├── speaker32.png │ │ ├── unlock32.png │ │ ├── upload32.png │ │ ├── warning32.png │ │ ├── wrench32.png │ │ ├── arrowright32.png │ │ ├── bargraph32.png │ │ ├── boxupload32.png │ │ ├── cameraplus32.png │ │ ├── camerastar32.png │ │ ├── cardgame32.png │ │ ├── circleleft32.png │ │ ├── download32.png │ │ ├── exchange32.png │ │ ├── folderplus32.png │ │ ├── leftarrow32.png │ │ ├── lightbulb32.png │ │ ├── linedpaper32.png │ │ ├── mailblock32.png │ │ ├── mailminus32.png │ │ ├── mailopened32.png │ │ ├── mailplus32.png │ │ ├── mailstar32.png │ │ ├── mapleleaf32.png │ │ ├── notecheck32.png │ │ ├── notepencil32.png │ │ ├── papercheck32.png │ │ ├── paperheart32.png │ │ ├── paperlock32.png │ │ ├── paperminus32.png │ │ ├── papermusic32.png │ │ ├── paperphoto32.png │ │ ├── paperplus32.png │ │ ├── paperstar32.png │ │ ├── pencilplus32.png │ │ ├── phonebook32.png │ │ ├── risegraph32.png │ │ ├── scissors32.png │ │ ├── turnright32.png │ │ ├── userblock32.png │ │ ├── userminus32.png │ │ ├── userplus32.png │ │ ├── usersblock32.png │ │ ├── usersminus32.png │ │ ├── usersplus32.png │ │ ├── wordpress32.png │ │ ├── boxdownload32.png │ │ ├── cameraminus32.png │ │ ├── circleright32.png │ │ ├── commentblack32.png │ │ ├── contactbook32.png │ │ ├── contactcard32.png │ │ ├── folderblock32.png │ │ ├── folderminus32.png │ │ ├── moneyreceipt32.png │ │ ├── paperpencil32.png │ │ ├── questionbook32.png │ │ ├── shieldcross32.png │ │ ├── shoppingcart32.png │ │ ├── speakermute32.png │ │ ├── leftturnarrow32.png │ │ ├── linedpapercheck32.png │ │ ├── linedpaperlock32.png │ │ ├── linedpaperminus32.png │ │ ├── linedpaperplus32.png │ │ ├── linedpaperpencil32.png │ │ └── license.rtf │ ├── slider-nav-buttons.png │ ├── bg │ │ └── patterns │ │ │ └── obl-1x1.png │ ├── knobs-icons │ │ ├── Knob Add.png │ │ ├── Knob Red.png │ │ ├── Knob Blue.png │ │ ├── Knob Cancel.png │ │ ├── Knob Green.png │ │ ├── Knob Grey.png │ │ ├── Knob Help.png │ │ ├── Knob Info.png │ │ ├── Knob Left.png │ │ ├── Knob Orange.png │ │ ├── Knob Pause.png │ │ ├── Knob Play.png │ │ ├── Knob Purple.png │ │ ├── Knob Remove.png │ │ ├── Knob Search.png │ │ ├── Knob Smart.png │ │ ├── Knob Stop.png │ │ ├── Knob Upload.png │ │ ├── Knob Download.png │ │ ├── Knob Favorite.png │ │ ├── Knob Forward.png │ │ ├── Knob Graphite.png │ │ ├── Knob Loop Off.png │ │ ├── Knob Loop On.png │ │ ├── Knob Message.png │ │ ├── Knob Refresh.png │ │ ├── Knob Snapback.png │ │ ├── Knob Attention.png │ │ ├── Knob Fast Rewind.png │ │ ├── Knob Play Green.png │ │ ├── Knob Record Off.png │ │ ├── Knob Record On.png │ │ ├── Knob Remove Red.png │ │ ├── Knob Shuffle Off.png │ │ ├── Knob Shuffle On.png │ │ ├── Knob Snapforward.png │ │ ├── Knob Valid Blue.png │ │ ├── Knob Valid Green.png │ │ ├── Knob Fast Forward.png │ │ └── license.rtf │ ├── post-divider-inverted.png │ └── social-icons │ │ ├── circular │ │ ├── addthis_32.png │ │ ├── twitter_32.png │ │ └── youtube_32.png │ │ └── rounded │ │ ├── addthis_32.png │ │ ├── twitter_32.png │ │ └── youtube_32.png │ ├── js │ ├── easing.js │ ├── poshytip-1.0 │ │ ├── README.txt │ │ └── src │ │ │ ├── tip-twitter │ │ │ └── tip-twitter_arrows.gif │ │ │ └── tip-yellowsimple │ │ │ └── tip-yellowsimple_arrows.gif │ └── superfish-1.4.8 │ │ └── images │ │ ├── shadow.png │ │ └── arrows-ffffff.png │ ├── footer.template.php │ ├── images │ ├── actions │ │ ├── up.png │ │ ├── back.png │ │ ├── exit.png │ │ ├── info.png │ │ ├── forward.png │ │ ├── reload.png │ │ ├── spacer.gif │ │ ├── bookmark.png │ │ ├── button_ok.png │ │ ├── filesave.png │ │ ├── view_icon.png │ │ ├── view_tree.png │ │ ├── button_cancel.png │ │ └── view_detailed.png │ ├── mime │ │ ├── ark.png │ │ ├── arts.png │ │ ├── exec.png │ │ ├── fonts.png │ │ ├── gimp.png │ │ ├── html.png │ │ ├── java.png │ │ ├── mime.png │ │ ├── php.png │ │ ├── rpm.png │ │ ├── sound.png │ │ ├── tar.png │ │ ├── tgz.png │ │ ├── video.png │ │ ├── www.png │ │ ├── aktion.png │ │ ├── ascend.png │ │ ├── browser.png │ │ ├── colors.png │ │ ├── cookie.png │ │ ├── descend.png │ │ ├── folder.png │ │ ├── spacer.gif │ │ ├── acroread.png │ │ ├── document.png │ │ ├── java_jar.png │ │ ├── kservices.png │ │ ├── ooo_gulls.png │ │ ├── openoffice.png │ │ ├── quicktime.png │ │ ├── realplayer.png │ │ ├── stylesheet.png │ │ ├── terminal.png │ │ ├── folder_grey.png │ │ └── package_graphics.png │ ├── titles │ │ ├── ark.png │ │ ├── cache.png │ │ ├── misc.png │ │ ├── aktion.png │ │ ├── bookmark.png │ │ ├── colorize.png │ │ ├── editcopy.png │ │ ├── editcut.png │ │ ├── kcontrol.png │ │ ├── konquest.png │ │ ├── openterm.png │ │ ├── spacer.gif │ │ ├── terminal.png │ │ ├── viewmag.png │ │ ├── edittrash.png │ │ ├── folder_new.png │ │ ├── folder_txt.png │ │ ├── kgpg_info.png │ │ ├── thumbnail.png │ │ ├── kgpg_identity.png │ │ ├── package_editors.png │ │ ├── view_left_right.png │ │ └── messagebox_warning.png │ ├── settings │ │ └── spacer.gif │ └── license.txt │ ├── skins │ └── glossy │ │ ├── gloss.png │ │ ├── to-top.png │ │ ├── balloon.png │ │ └── glossy-bottom.png │ ├── status │ ├── status.template.php │ └── license.txt │ ├── jupload2.template.php │ ├── newdir2.template.php │ ├── zip2.template.php │ ├── rename2.template.php │ ├── advanced_parsing1.template.php │ ├── calculatesize1.template.php │ ├── unzip2.template.php │ ├── chmod2.template.php │ ├── install2.template.php │ ├── browse_main.template.php │ ├── login.template.php │ ├── copymovedelete2.template.php │ ├── admin_emptylogs1.template.php │ ├── rename1.template.php │ ├── admin_viewlogs1.template.php │ ├── raw1.template.php │ ├── google_ad_top.template.php │ └── google_ad_bottom.template.php ├── modules ├── edit │ ├── template.txt │ └── edit.js └── findstring │ └── findstring.js ├── favicon.ico ├── favicon.png ├── languages ├── ar.inc.php ├── cs.inc.php ├── de.inc.php ├── en.inc.php ├── es.inc.php ├── fi.inc.php ├── fr.inc.php ├── hu.inc.php ├── it.inc.php ├── ja.inc.php ├── nl.inc.php ├── pl.inc.php ├── pt.inc.php ├── ru.inc.php ├── sv.inc.php ├── tc.inc.php ├── tr.inc.php ├── ua.inc.php ├── vi.inc.php ├── zh.inc.php ├── ar-utf.inc.php ├── da-utf.inc.php ├── en-utf.inc.php ├── he-utf.inc.php └── hu-utf.inc.php ├── includes ├── pcltar.lib.php ├── pclerror.lib.php ├── filesystem.inc.php └── StonePhpSafeCrypt_testconfig.php ├── htaccess.txt ├── version.js ├── robots.txt ├── composer.json └── help.html /plugins/ace/mode-text.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skins/iphone/header.template.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skins/iphone/status/status.template.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/luminous/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /plugins/luminous/src/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all 2 | -------------------------------------------------------------------------------- /skins/iphone/footer_versioncheck.template.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/luminous/client/.htaccess: -------------------------------------------------------------------------------- 1 | allow from all 2 | -------------------------------------------------------------------------------- /plugins/luminous/style/.htaccess: -------------------------------------------------------------------------------- 1 | allow from all 2 | -------------------------------------------------------------------------------- /plugins/luminous/languages/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from All 2 | -------------------------------------------------------------------------------- /modules/edit/template.txt: -------------------------------------------------------------------------------- 1 | 2 | [Enter code here] 3 | 4 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-MSCP/net2ftp/HEAD/favicon.ico -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/i-MSCP/net2ftp/HEAD/favicon.png -------------------------------------------------------------------------------- /plugins/luminous/src/debug.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /skins/iphone/zip2.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /skins/iphone/chmod2.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /skins/iphone/unzip2.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /skins/iphone/install2.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /skins/iphone/rename2.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /skins/iphone/unzip1.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/advhr/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.advhr_dlg',{size:"Magass\u00e1g",noshade:"Nincs \u00e1rny\u00e9k",width:"Sz\u00e9less\u00e9g",normal:"Norm\u00e1l",widthunits:"M\u00e9rt\u00e9kegys\u00e9gek"}); -------------------------------------------------------------------------------- /skins/iphone/findstring1.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /skins/iphone/findstring2.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /skins/iphone/install1.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /skins/iphone/newdir1.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /skins/iphone/newdir2.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /skins/iphone/rename1.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /skins/iphone/calculatesize1.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.paste_dlg',{"word_title":"Use CTRL+V para colar o texto na janela.","text_linebreaks":"Manter quebras de linha","text_title":"Use CTRL+V para colar o texto na janela."}); -------------------------------------------------------------------------------- /skins/iphone/copymovedelete2.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/luminous/languages/include/ecma.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /skins/iphone/advanced_ftpserver2.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /skins/iphone/advanced_parsing1.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /skins/iphone/advanced_webserver1.template.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.paste_dlg',{"word_title":"Gebruik Ctrl+V om tekst in het venster te plakken.","text_linebreaks":"Regelafbreking bewaren","text_title":"Gebruik Ctrl+V om tekst in het venster te plakken."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /skins/shinra/status/status.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/advhr/langs/he_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('he.advhr_dlg',{size:"\u05d2\u05d5\u05d1\u05d4",noshade:"\u05dc\u05dc\u05d0 \u05e6\u05dc",width:"\u05e8\u05d5\u05d7\u05d1",normal:"\u05e8\u05d2\u05d9\u05dc",widthunits:"\u05d9\u05d7\u05d9\u05d3\u05d5\u05ea"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.paste_dlg',{"word_title":"Anvend CTRL+V p\u00e5 tastaturet for at inds\u00e6tte teksten.","text_linebreaks":"Bevar linieskift","text_title":"Anvend CTRL+V p\u00e5 tastaturet for at inds\u00e6tte teksten."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /skins/iphone/zip1.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.paste_dlg',{"word_title":"Paina Ctrl+V liitt\u00e4\u00e4ksesi sis\u00e4ll\u00f6n ikkunaan.","text_linebreaks":"S\u00e4ilyt\u00e4 rivinvaihdot","text_title":"Paina Ctrl+V liitt\u00e4\u00e4ksesi sis\u00e4ll\u00f6n ikkunaan."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.paste_dlg',{"word_title":"Pou\u017eijte CTRL+V pro vlo\u017een\u00ed textu do okna.","text_linebreaks":"Zachovat zalamov\u00e1n\u00ed \u0159\u00e1dk\u016f","text_title":"Pou\u017eijte CTRL+V pro vlo\u017een\u00ed textu do okna."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.paste_dlg',{"word_title":"Strg V auf der Tastatur dr\u00fccken, um den Text einzuf\u00fcgen.","text_linebreaks":"Zeilenumbr\u00fcche beibehalten","text_title":"Strg V auf der Tastatur dr\u00fccken, um den Text einzuf\u00fcgen."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.paste_dlg',{"word_title":"Premere CTRL+V sulla tastiera per incollare il testo nella finestra.","text_linebreaks":"Mantieni interruzioni di riga","text_title":"Premere CTRL+V sulla tastiera per incollare il testo nella finestra."}); -------------------------------------------------------------------------------- /plugins/luminous/languages/identity.php: -------------------------------------------------------------------------------- 1 | record($this->string(), null); 9 | } 10 | } -------------------------------------------------------------------------------- /plugins/tinymce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- 1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;} 2 | .panel_wrapper div.current {height:80px;} 3 | #width {width:50px; vertical-align:middle;} 4 | #width2 {width:50px; vertical-align:middle;} 5 | #size {width:100px;} 6 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/pl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.paste_dlg',{"word_title":"U\u017cyj CTRL+V na swojej klawiaturze \u017ceby wklei\u0107 tekst do okna.","text_linebreaks":"Zachowaj ko\u0144ce linii.","text_title":"U\u017cyj CTRL+V na swojej klawiaturze \u017ceby wklei\u0107 tekst do okna."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.paste_dlg',{"word_title":"\u4f7f\u7528CTRL V\u7c98\u8d34\u6587\u672c\u5230\u7a97\u53e3\u4e2d\u3002","text_linebreaks":"\u4fdd\u7559\u65ad\u884c","text_title":"\u4f7f\u7528CTRL V\u7c98\u8d34\u6587\u672c\u5230\u7a97\u53e3\u4e2d\u3002"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper div.current { 2 | height: 290px; 3 | } 4 | 5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { 6 | width: 200px; 7 | } 8 | 9 | #events_panel input { 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/advhr/langs/ar_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ar.advhr_dlg',{size:"\u0627\u0644\u0627\u0631\u062a\u0641\u0627\u0639",noshade:"\u0644\u0627 \u0638\u0644",width:"\u0627\u0644\u0639\u0631\u0636",normal:"\u0627\u0644\u0637\u0628\u064a\u0639\u064a",widthunits:"\u0627\u0644\u0648\u062d\u062f\u0627\u062a"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.paste_dlg',{"word_title":"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00eatre.","text_linebreaks":"Conserver les retours \u00e0 la ligne","text_title":"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00eatre."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- 1 | /* CSS file for cell dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #class { 16 | width: 150px; 17 | } -------------------------------------------------------------------------------- /includes/StonePhpSafeCrypt_testconfig.php: -------------------------------------------------------------------------------- 1 | false, 'Reason' => ''); 4 | if (DEFAULT_MD5_SALT === '') { 5 | $forcefail['Apply'] = true; 6 | $forcefail['Reason'] = 'You must set the default MD5 salt on line 83 before this library will function.'; 7 | } 8 | 9 | ?> -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.paste_dlg',{"word_title":"Anv\u00e4nd ctrl-v p\u00e5 ditt tangentbord f\u00f6r att klistra in i detta f\u00f6nster.","text_linebreaks":"Spara radbrytningar","text_title":"Anv\u00e4nd ctrl-v p\u00e5 ditt tangentbord f\u00f6r att klistra in i detta f\u00f6nster."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.paste_dlg',{"word_title":"Pencereye metin yap\u0131\u015ft\u0131rmak i\u00e7in klavyeden CTRL+V i kullan\u0131n.","text_linebreaks":"Sat\u0131r kesmelerini tut","text_title":"Pencereye metin yap\u0131\u015ft\u0131rmak i\u00e7in klavyeden CTRL+V i kullan\u0131n."}); -------------------------------------------------------------------------------- /htaccess.txt: -------------------------------------------------------------------------------- 1 | 2 | # Rename this file to .htaccess if you want to allow large file uploads 3 | # Note that this file is not always taken into account, depending on your server configuration 4 | 5 | php_value max_execution_time 1200 6 | php_value memory_limit 200M 7 | php_value post_max_size 200M 8 | php_value upload_max_filesize 200M -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.paste_dlg',{"word_title":"Haszn\u00e1lja a Ctrl V-t a billenty\u0171zet\u00e9n a sz\u00f6veg beilleszt\u00e9shez.","text_linebreaks":"Sort\u00f6r\u00e9sek megtart\u00e1sa","text_title":"Haszn\u00e1lja a Ctrl V-t a billenty\u0171zet\u00e9n a sz\u00f6veg beilleszt\u00e9shez."}); -------------------------------------------------------------------------------- /version.js: -------------------------------------------------------------------------------- 1 | var latest_stable_build = 47; 2 | var latest_stable_version = '1.0'; 3 | var latest_stable_url = 'http://www.net2ftp.com/download/net2ftp_v1.0.zip'; 4 | 5 | var latest_beta_build = 47; 6 | var latest_beta_version = '1.0'; 7 | var latest_beta_url = 'http://www.net2ftp.com/download/net2ftp_v1.0.zip'; 8 | -------------------------------------------------------------------------------- /plugins/luminous/src/formatters/identityformatter.class.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/advhr/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.advhr_dlg',{size:"\u0412\u044b\u0441\u043e\u0442\u0430",noshade:"\u0411\u0435\u0437 \u0442\u0435\u043d\u0438",width:"\u0428\u0438\u0440\u0438\u043d\u0430",normal:"\u041e\u0431\u044b\u0447\u043d\u0430\u044f",widthunits:"\u0415\u0434\u0438\u043d\u0438\u0446\u044b \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0438\u044f"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/advhr/langs/uk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.advhr_dlg',{size:"\u0412\u0438\u0441\u043e\u0442\u0430",noshade:"\u0411\u0435\u0437 \u0442\u0456\u043d\u0456",width:"\u0428\u0438\u0440\u0438\u043d\u0430",normal:"\u041d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u0438\u0439",widthunits:"\u041e\u0434\u0438\u043d\u0438\u0446\u0456 \u0432\u0438\u043c\u0456\u0440\u0443"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.simple',{"cleanup_desc":"Cleanup Messy Code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Insert/Remove Numbered List","bullist_desc":"Insert/Remove Bulleted List","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/it.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.simple',{"cleanup_desc":"Pulisci codice disordinato","redo_desc":"Ripristina (Ctrl+Y)","undo_desc":"Annulla (Ctrl+Z)","numlist_desc":"Lista ordinata","bullist_desc":"Lista non ordinata","striketrough_desc":"Barrato","underline_desc":"Sottolineato (Ctrl+U)","italic_desc":"Corsivo (Ctrl+I)","bold_desc":"Grassetto (Ctrl+B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/sv.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.simple',{"cleanup_desc":"St\u00e4da upp i k\u00e4llkoden","redo_desc":"G\u00f6r om (Ctrl+Y)","undo_desc":"\u00c5\u0085ngra (Ctrl+Z)","numlist_desc":"Nummerlista","bullist_desc":"Punktlista","striketrough_desc":"Genomstruken","underline_desc":"Understruken (Ctrl+U)","italic_desc":"Kursiv (Ctrl+I)","bold_desc":"Fet (Ctrl+B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/fr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.simple',{"cleanup_desc":"Nettoyer le code","redo_desc":"R\u00e9tablir (Ctrl+Y)","undo_desc":"Annuler (Ctrl+Z)","numlist_desc":"Liste num\u00e9rot\u00e9e","bullist_desc":"Liste \u00e0 puces","striketrough_desc":"Barr\u00e9","underline_desc":"Soulign\u00e9 (Ctrl+U)","italic_desc":"Italique (Ctrl+I)","bold_desc":"Gras (Ctrl+B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/pt.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.simple',{"cleanup_desc":"Limpar c\u00f3digo incorreto","redo_desc":"Refazer (Ctrl+Y)","undo_desc":"Desfazer (Ctrl+Z)","numlist_desc":"Lista ordenada","bullist_desc":"Lista n\u00e3o-ordenada","striketrough_desc":"Riscado","underline_desc":"Sublinhado (Ctrl+U)","italic_desc":"It\u00e1lico (Ctrl+I)","bold_desc":"Negrito (Ctrl+B)"}); -------------------------------------------------------------------------------- /skins/shinra/newdir2.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | \n"; 5 | } // end for ?> 6 | 7 | -------------------------------------------------------------------------------- /skins/shinra/zip2.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/de.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.simple',{"cleanup_desc":"Quellcode aufr\u00e4umen","redo_desc":"Wiederholen (Strg+Y)","undo_desc":"R\u00fcckg\u00e4ngig (Strg+Z)","numlist_desc":"Nummerierung","bullist_desc":"Aufz\u00e4hlung","striketrough_desc":"Durchgestrichen","underline_desc":"Unterstrichen (Strg+U)","italic_desc":"Kursiv (Strg+I)","bold_desc":"Fett (Strg+B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/vi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.paste_dlg',{"word_title":"S\u1eed d\u1ee5ng CTRL+V tr\u00ean b\u00e0n ph\u00edm \u0111\u1ec3 d\u00e1n v\u0103n b\u1ea3n v\u00e0o c\u1eeda s\u1ed5.","text_linebreaks":"Gi\u1eef ng\u1eaft d\u00f2ng","text_title":"S\u1eed d\u1ee5ng CTRL+V tr\u00ean b\u00e0n ph\u00edm \u0111\u1ec3 d\u00e1n v\u0103n b\u1ea3n v\u00e0o c\u1eeda s\u1ed5."}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/da.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.simple',{"cleanup_desc":"Ryd op i uordentlig kode","redo_desc":"Gendan (Ctrl+Y)","undo_desc":"Fortryd (Ctrl+Z)","numlist_desc":"Nummereret punktopstilling","bullist_desc":"Unummereret punktopstilling","striketrough_desc":"Gennemstreget","underline_desc":"Understreget (Ctrl+U)","italic_desc":"Kursiv (Ctrl+I)","bold_desc":"Fed (Ctrl+B)"}); -------------------------------------------------------------------------------- /skins/shinra/rename2.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/fi.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.simple',{"cleanup_desc":"Siisti sekainen koodi","redo_desc":"Tee uudestaan (Ctrl+Y)","undo_desc":"Peru (Ctrl+Z)","numlist_desc":"J\u00e4rjestetty lista","bullist_desc":"J\u00e4rjest\u00e4m\u00e4t\u00f6n lista","striketrough_desc":"Yliviivaus","underline_desc":"Alleviivaus (Ctrl+U)","italic_desc":"Kursivointi (Ctrl+I)","bold_desc":"Lihavointi (Ctrl+B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/pl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.simple',{"cleanup_desc":"Wyczy\u015b\u0107 nieuporz\u0105dkowany kod","redo_desc":"Pon\u00f3w (Ctrl+Y)","undo_desc":"Cofnij (Ctrl+Z)","numlist_desc":"Lista numerowana","bullist_desc":"Lista nienumerowana","striketrough_desc":"Przekre\u015blenie","underline_desc":"Podkre\u015blenie (Ctrl+U)","italic_desc":"Kursywa (Ctrl+I)","bold_desc":"Pogrubienie (Ctrl+B)"}); -------------------------------------------------------------------------------- /skins/iphone/footer.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | "> 5 | |
6 | 7 | -------------------------------------------------------------------------------- /skins/shinra/advanced_parsing1.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/blank.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | blank_page 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/tr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.simple',{"cleanup_desc":"Da\u011f\u0131n\u0131k kodu temizle","redo_desc":"Yinele (Ctrl+Y)","undo_desc":"Geri al (Ctrl+Z)","numlist_desc":"S\u0131ral\u0131 liste","bullist_desc":"S\u0131ras\u0131z liste","striketrough_desc":"\u00dcst\u00fc \u00e7izili","underline_desc":"Alt\u0131 \u00e7izili (Ctrl+U)","italic_desc":"\u0130talik (Ctrl+I)","bold_desc":"Kal\u0131n (Ctrl+B)"}); -------------------------------------------------------------------------------- /skins/shinra/calculatesize1.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name":"imscp/net2ftp", 3 | "description":"iMSCP tools - Net2Ftp filemanager", 4 | "version":"1.0", 5 | "authors":[ 6 | { 7 | "name":"Net2ftp Team", 8 | "homepage":"http://http://www.net2ftp.com/" 9 | } 10 | ], 11 | "license":"GPL-2.0", 12 | "keywords":[ 13 | "imscp", 14 | "net2ftp", 15 | "filemanager", 16 | "tools" 17 | ], 18 | "require":{ 19 | "PHP":">=5.1" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/css/template.css: -------------------------------------------------------------------------------- 1 | #frmbody { 2 | padding: 10px; 3 | background-color: #FFF; 4 | border: 1px solid #CCC; 5 | } 6 | 7 | .frmRow { 8 | margin-bottom: 10px; 9 | } 10 | 11 | #templatesrc { 12 | border: none; 13 | width: 320px; 14 | height: 240px; 15 | } 16 | 17 | .title { 18 | padding-bottom: 5px; 19 | } 20 | 21 | .mceActionPanel { 22 | padding-top: 5px; 23 | } 24 | -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/cs.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.simple',{"cleanup_desc":"Vy\u010distit k\u00f3d","redo_desc":"Znovu (Ctrl+Y)","undo_desc":"Zp\u011bt (Ctrl+Z)","numlist_desc":"\u010c\u00edslovan\u00fd seznam","bullist_desc":"Seznam s odr\u00e1\u017ekami","striketrough_desc":"P\u0159e\u0161krtnut\u00e9","underline_desc":"Podtr\u017een\u00e9 (Ctrl+U)","italic_desc":"Kurz\u00edva (Ctrl+I)","bold_desc":"Tu\u010dn\u00e9 (Ctrl+B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/zh-cn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.simple',{"cleanup_desc":"\u6e05\u9664\u65e0\u7528\u4ee3\u7801","redo_desc":"\u6062\u590d(Ctrl Y)","undo_desc":"\u64a4\u9500(Ctrl Z)","numlist_desc":"\u7f16\u53f7\u5217\u8868","bullist_desc":"\u9879\u76ee\u5217\u8868","striketrough_desc":"\u5220\u9664\u7ebf","underline_desc":"\u4e0b\u5212\u7ebf(Ctrl U)","italic_desc":"\u659c\u4f53(Ctrl I)","bold_desc":"\u7c97\u4f53(Ctrl B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/zh-tw.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-tw.simple',{"cleanup_desc":"\u6574\u7406\u8cc7\u6599","redo_desc":"\u91cd\u4f86 (Ctrl Y)","undo_desc":"\u5fa9\u539f (Ctrl Z)","numlist_desc":"\u9805\u76ee\u7b26\u865f (\u6709\u6578\u5b57\u7684)","bullist_desc":"\u9805\u76ee\u7b26\u865f","striketrough_desc":"\u522a\u9664\u7dda","underline_desc":"\u5e95\u7dda (Ctrl U)","italic_desc":"\u659c\u7dda (Ctrl I)","bold_desc":"\u52a0\u7c97 (Ctrl B)"}); -------------------------------------------------------------------------------- /modules/findstring/findstring.js: -------------------------------------------------------------------------------- 1 | 2 | function submitFindstringForm(directory, entry, state, state2, screen) { 3 | document.forms['FindstringForm'].directory.value=directory; 4 | document.forms['FindstringForm'].entry.value=entry; 5 | document.forms['FindstringForm'].state.value=state; 6 | document.forms['FindstringForm'].state2.value=state2; 7 | document.forms['FindstringForm'].screen.value=screen; 8 | document.forms['FindstringForm'].submit(); 9 | } -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"Insert Emotion",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue Out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money Mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in Mouth",embarassed:"Embarassed",usage:"Use left and right arrows to navigate."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/table/css/row.css: -------------------------------------------------------------------------------- 1 | /* CSS file for row dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #rowtype,#align,#valign,#class,#height { 16 | width: 150px; 17 | } 18 | 19 | #height { 20 | width: 50px; 21 | } 22 | 23 | .col2 { 24 | padding-left: 20px; 25 | } 26 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/example_dependency/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.ExampleDependencyPlugin",{init:function(a,b){},getInfo:function(){return{longname:"Example Dependency plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example_dependency",version:"1.0"}}});tinymce.PluginManager.add("example_dependency",tinymce.plugins.ExampleDependencyPlugin,["example"])})(); -------------------------------------------------------------------------------- /skins/shinra/images/license.txt: -------------------------------------------------------------------------------- 1 | 2 | The images within this directory are released under the LGPL license. 3 | They come from 2 different iconsets, originally developed for KDE. 4 | 5 | For more information, refer to the links below. 6 | 7 | Noia for KDE 1.00: 8 | http://www.kde-look.org/content/show.php?content=3883 9 | http://www.carlitus.net/ 10 | 11 | Nuvola 1.0: 12 | http://www.kde-look.org/content/show.php?content=5358 13 | http://www.icon-king.com/ 14 | -------------------------------------------------------------------------------- /skins/iphone/images/license.txt: -------------------------------------------------------------------------------- 1 | 2 | The images within this directory are released under the LGPL license. 3 | They come from 2 different iconsets, originally developed for KDE. 4 | 5 | For more information, refer to the links below. 6 | 7 | Noia for KDE 1.00: 8 | http://www.kde-look.org/content/show.php?content=3883 9 | http://www.carlitus.net/ 10 | 11 | Nuvola 1.0: 12 | http://www.kde-look.org/content/show.php?content=5358 13 | http://www.icon-king.com/ 14 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.searchreplace_dlg',{findwhat:"Find What",replacewith:"Replace with",direction:"Direction",up:"Up",down:"Down",mcase:"Match Case",findnext:"Find Next",allreplaced:"All occurrences of the search string were replaced.","searchnext_desc":"Find Again",notfound:"The search has been completed. The search string could not be found.","search_title":"Find","replace_title":"Find/Replace",replaceall:"Replace All",replace:"Replace"}); -------------------------------------------------------------------------------- /help.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net2ftp help 5 | 6 | 7 | 8 | 9 | 10 | 11 | <body> 12 | Your browser can not handle frames. Please use a more recent browser to view this install guide. 13 | </body> 14 | 15 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.emotions_dlg',{cry:"Huilen",cool:"Stoer",desc:"Emoties",title:"Emotie invoegen",yell:"Roepen",wink:"Knipogen",undecided:"Onbeslist","tongue_out":"Tong uitsteken",surprised:"Verrast",smile:"Lachen",sealed:"Afgesloten","money_mouth":"Hebberig",laughing:"Lachen",kiss:"Zoenen",innocent:"Onschuldig",frown:"Wenkbrauw ophalen","foot_in_mouth":"Verstomd",embarassed:"Schamen",usage:"Gebruik linker en rechter pijltjestoetsen om te navigeren."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.emotions_dlg',{cry:"Gr\u00e6de",cool:"Cool",desc:"Hum\u00f8rikoner",title:"Inds\u00e6t hum\u00f8rikon",yell:"R\u00e5be",wink:"Vink",undecided:"Ubeslutsom","tongue_out":"Tunge ud",surprised:"Overrasket",smile:"Smil",sealed:"Lukket","money_mouth":"Pengemund",laughing:"Grine",kiss:"Kys",innocent:"Uskyldig",frown:"Forskr\u00e6kket","foot_in_mouth":"Fod i munden",embarassed:"Flov",usage:"Brug venstre og h\u00f8jre piletaster til at navigere"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/vi.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.simple',{"cleanup_desc":"D\u1ecdn d\u1eb9p m\u00e3 l\u1ed9n x\u1ed9n","redo_desc":"Ti\u1ebfn t\u1edbi (Ctrl+Y)","undo_desc":"Tr\u1edf v\u1ec1 (Ctrl+Z)","numlist_desc":"Danh s\u00e1ch theo th\u1ee9 t\u1ef1","bullist_desc":"Danh s\u00e1ch kh\u00f4ng theo th\u1ee9 t\u1ef1","striketrough_desc":"G\u1ea1ch ngang","underline_desc":"G\u1ea1ch ch\u00e2n (Ctrl+U)","italic_desc":"Ch\u1eef nghi\u00eang (Ctrl+I)","bold_desc":"Ch\u1eef \u0111\u1eadm (Ctrl+B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.emotions_dlg',{cry:"Chor\u00e3o",cool:"Fixe",desc:"Emoticons",title:"Inserir emoticon",yell:"Irado",wink:"Piscadela",undecided:"Indeciso","tongue_out":"L\u00edngua de fora",surprised:"Surpresa",smile:"Sorriso",sealed:"Boca Fechada","money_mouth":"Avarez",laughing:"Riso",kiss:"Beijo",innocent:"Inocente",frown:"Decep\u00e7\u00e3o","foot_in_mouth":"Disse asneira",embarassed:"Embara\u00e7ado",usage:"Use as setas esquerda e direita para navegar."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.searchreplace_dlg',{findwhat:"S\u00f8g efter",replacewith:"Erstat med",direction:"Retning",up:"Op",down:"Ned",mcase:"Forskel p\u00e5 store og sm\u00e5 bogstaver",findnext:"Find n\u00e6ste",allreplaced:"Alle forekomster af s\u00f8gestrengen er erstattet.","searchnext_desc":"S\u00f8g igen",notfound:"S\u00f8gningen gav intet resultat.","search_title":"S\u00f8g","replace_title":"S\u00f8g / erstat",replaceall:"Erstat alle",replace:"Erstat"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.emotions_dlg',{cry:"Piango",cool:"Fico",desc:"Faccina",title:"Inserisci faccina",yell:"Arrabbiato",wink:"Occhiolino",undecided:"Indeciso","tongue_out":"Linguaccia",surprised:"Sorpreso",smile:"Sorridente",sealed:"Bocca sigillata","money_mouth":"Bocca danarosa",laughing:"Risatona",kiss:"Bacio",innocent:"Santarellino",frown:"Triste","foot_in_mouth":"Piede in bocca",embarassed:"Imbarazzato",usage:"Utilizza le freccie sinistra e destra per navigare."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.searchreplace_dlg',{findwhat:"Etsit\u00e4\u00e4n",replacewith:"Korvataan",direction:"Suunta",up:"Yl\u00f6s",down:"Alas",mcase:"Huomioi isot ja pienet kirjaimet",findnext:"Etsi seuraavaa",allreplaced:"Kaikki l\u00f6ydetyt merkkijonot korvattiin.","searchnext_desc":"Etsi uudestaan",notfound:"Haku on valmis. Haettua teksti\u00e4 ei l\u00f6ytynyt.","search_title":"Haku","replace_title":"Etsi ja korvaa",replaceall:"Korvaa kaikki",replace:"Korvaa"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.emotions_dlg',{cry:"Weinend",cool:"Cool",desc:"Smileys",title:"Smiley einf\u00fcgen",yell:"Br\u00fcllend",wink:"Zwinkernd",undecided:"Unentschlossen","tongue_out":"Zunge raus",surprised:"\u00dcberrascht",smile:"L\u00e4chelnd",sealed:"Verschlossen","money_mouth":"Geld",laughing:"Lachend",kiss:"K\u00fcssend",innocent:"Unschuldig",frown:"Stirnrunzelnd","foot_in_mouth":"Reingefallen",embarassed:"Verlegen",usage:"Navigation mit linken und rechten Pfeilen."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.searchreplace_dlg',{findwhat:"Trova:",replacewith:"Sostituisci con:",direction:"Direzione",up:"Avanti",down:"Indietro",mcase:"Maiuscole/minuscole",findnext:"Trova succ.",allreplaced:"Tutte le occorrenze del criterio di ricerca sono state sostituite.","searchnext_desc":"Trova successivo",notfound:"Ricerca completata. Nessun risultato trovato.","search_title":"Trova","replace_title":"Trova/Sostituisci",replaceall:"Sost. tutto",replace:"Sostituisci"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/ja.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.simple',{"cleanup_desc":"\u4e71\u96d1\u306a\u30b3\u30fc\u30c9\u3092\u6574\u5f62","redo_desc":"\u3084\u308a\u76f4\u3059 (Ctrl+Y)","undo_desc":"\u5143\u306b\u623b\u3059 (Ctrl+Z)","numlist_desc":"\u756a\u53f7\u3064\u304d\u30ea\u30b9\u30c8","bullist_desc":"\u756a\u53f7\u306a\u3057\u30ea\u30b9\u30c8","striketrough_desc":"\u53d6\u308a\u6d88\u3057\u7dda","underline_desc":"\u4e0b\u7dda (Ctrl+U)","italic_desc":"\u659c\u4f53 (Ctrl+I)","bold_desc":"\u592a\u5b57 (Ctrl+B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/print/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.Print",{init:function(a,b){a.addCommand("mcePrint",function(){a.getWin().print()});a.addButton("print",{title:"print.print_desc",cmd:"mcePrint"})},getInfo:function(){return{longname:"Print",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("print",tinymce.plugins.Print)})(); -------------------------------------------------------------------------------- /plugins/luminous/luminous.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | " || $net2ftp_output["unzip"][$i] == "") { echo $net2ftp_output["unzip"][$i] . "\n"; } 5 | else { echo "
  • " . $net2ftp_output["unzip"][$i] . "
  • \n"; } 6 | } // end for ?> 7 | 8 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.emotions_dlg',{cry:"Gr\u00e5ter",cool:"Cool",desc:"Smileys",title:"Infoga smiley",yell:"Skrikandes",wink:"Fl\u00f6rt",undecided:"Obest\u00e4md","tongue_out":"Tungan ute",surprised:"F\u00f6rv\u00e5nad",smile:"Glad",sealed:"Tyst","money_mouth":"Guld i mun",laughing:"Skrattande",kiss:"Kyss",innocent:"Oskyldig",frown:"Rynkar p\u00e5 n\u00e4san","foot_in_mouth":"Foten i munnen",embarassed:"Sk\u00e4ms",usage:"Anv\u00e4nd v\u00e4nster och h\u00f6ger pil f\u00f6r att navigera"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.emotions_dlg',{cry:"\u54ed",cool:"\u9177",desc:"\u8868\u60c5",title:"\u63d2\u5165\u8868\u60c5",yell:"\u53eb\u558a",wink:"\u7728\u773c",undecided:"\u72b9\u8c6b","tongue_out":"\u5410\u820c\u5934",surprised:"\u60ca\u8bb6",smile:"\u5fae\u7b11",sealed:"\u4fdd\u5bc6","money_mouth":"\u53d1\u8d22",laughing:"\u5927\u7b11",kiss:"\u543b",innocent:"\u5929\u771f",frown:"\u76b1\u7709","foot_in_mouth":"\u8822\u8bdd",embarassed:"\u5c34\u5c2c",usage:"Use left and right arrows to navigate."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/advlink/css/advlink.css: -------------------------------------------------------------------------------- 1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .panel_wrapper div.current {height:320px;} 4 | #classlist, #title, #href {width:280px;} 5 | #popupurl, #popupname {width:200px;} 6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} 7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} 8 | #events_panel input {width:200px;} 9 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.emotions_dlg',{cry:"En pleurs",cool:"Cool",desc:"\u00c9motic\u00f4nes",title:"Ins\u00e9rer une \u00e9motic\u00f4ne",yell:"Criant",wink:"Clin d\'\u0153il",undecided:"Incertain","tongue_out":"Langue tir\u00e9e",surprised:"Surpris",smile:"Sourire",sealed:"Bouche cousue","money_mouth":"Avare",laughing:"Rigolant",kiss:"Bisou",innocent:"Innocent",frown:"D\u00e9\u00e7u","foot_in_mouth":"Pied de nez",embarassed:"Embarrass\u00e9",usage:"Utilisez les fl\u00e8ches gauche et droite pour naviguer."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.paste_dlg',{"word_title":"Ctrl V(\u30ad\u30fc\u30dc\u30fc\u30c9)\u3092\u4f7f\u7528\u3057\u3066\u3001\u30c6\u30ad\u30b9\u30c8\u3092\u30a6\u30a3\u30f3\u30c9\u30a6\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002","text_linebreaks":"\u6539\u884c\u3092\u4fdd\u6301","text_title":"Ctrl V(\u30ad\u30fc\u30dc\u30fc\u30c9)\u3092\u4f7f\u7528\u3057\u3066\u3001\u30c6\u30ad\u30b9\u30c8\u3092\u30a6\u30a3\u30f3\u30c9\u30a6\u306b\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002"}); -------------------------------------------------------------------------------- /skins/shinra/chmod2.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | " || $net2ftp_output["ftp_chmod2"][$i] == "") { echo $net2ftp_output["ftp_chmod2"][$i] . "\n"; } 5 | else { echo "
  • " . $net2ftp_output["ftp_chmod2"][$i] . "
  • \n"; } 6 | } // end for ?> 7 | 8 | -------------------------------------------------------------------------------- /skins/shinra/install2.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | " || $net2ftp_output["ftp_chmod2"][$i] == "") { echo $net2ftp_output["ftp_chmod2"][$i] . "\n"; } 5 | else { echo "
  • " . $net2ftp_output["ftp_chmod2"][$i] . "
  • \n"; } 6 | } // end for ?> 7 | 8 | -------------------------------------------------------------------------------- /skins/shinra/status/license.txt: -------------------------------------------------------------------------------- 1 | 2 | All the code within this directory originates from the PHP Pear package called 3 | HTML_Progress written by Laurent Laville. 4 | 5 | http://pear.laurent-laville.org/HTML_Progress/examples/index.html 6 | http://pear.laurent-laville.org/HTML_Progress/examples/horizontal/string.php 7 | 8 | ------------------------------------------------------------------------------- 9 | 10 | The license of this code is: PHP License 3.0 11 | For more information on this license, go to http://www.php.net/license/3_0.txt 12 | 13 | -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/hu.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.simple',{"cleanup_desc":"Minden form\u00e1z\u00e1s elt\u00e1vol\u00edt\u00e1sa","redo_desc":"M\u00e9gis v\u00e9grehajt (Ctrl+Y)","undo_desc":"Visszavon\u00e1s (Ctrl+Z)","numlist_desc":"Sz\u00e1mozott lista besz\u00far\u00e1sa/elt\u00e1vol\u00edt\u00e1sa","bullist_desc":"Felsorol\u00e1s besz\u00far\u00e1sa/elt\u00e1vol\u00edt\u00e1sa","striketrough_desc":"\u00c1th\u00fazott","underline_desc":"Al\u00e1h\u00fazott (Ctrl+U)","italic_desc":"D\u0151lt (Ctrl+I)","bold_desc":"F\u00e9lk\u00f6v\u00e9r (Ctrl+B)"}); -------------------------------------------------------------------------------- /skins/shinra/img/mono-icons/license.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf350 2 | {\fonttbl\f0\froman\fcharset0 Times-Roman;} 3 | {\colortbl;\red255\green255\blue255;} 4 | \paperw11900\paperh16840\margl1440\margr1440\vieww9000\viewh8400\viewkind0 5 | \deftab720 6 | \pard\pardeftab720\ql\qnatural 7 | 8 | \f0\fs24 \cf0 This Free Icon Pack is for use in your personal and commercial projects, and can be used without attribution. It may not be redistributed.\ 9 | \ 10 | http://www.tutorial9.net/downloads/108-mono-icons-huge-set-of-minimal-icons/} -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/pl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.emotions_dlg',{cry:"P\u0142acz",cool:"Wyluzowany",desc:"Emotikony",title:"Wstaw emotikon\u0119",yell:"Krzyk",wink:"Mrugni\u0119cie",undecided:"Niezdecydowany","tongue_out":"Wystawiony j\u0119zyk",surprised:"Zaskoczony",smile:"U\u015bmiech",sealed:"Zaklepany","money_mouth":"Zaanga\u017cowany",laughing:"\u015amiech",kiss:"Poca\u0142unek",innocent:"Niewinny",frown:"Dezaprobata","foot_in_mouth":"Niewyparzona g\u0119ba",embarassed:"Zmieszany",usage:"U\u017cywaj strza\u0142ek w lewo i w prawo do nawigacji."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.searchreplace_dlg',{findwhat:"Co hledat",replacewith:"\u010c\u00edm nahradit",direction:"Sm\u011br",up:"Nahoru",down:"Dol\u016f",mcase:"Rozli\u0161ovat velikost",findnext:"Naj\u00edt dal\u0161\u00ed",allreplaced:"V\u0161echny v\u00fdskyty byly nahrazeny.","searchnext_desc":"Naj\u00edt dal\u0161\u00ed",notfound:"Hled\u00e1n\u00ed bylo dokon\u010deno. Hledan\u00fd text nebyl nalezen.","search_title":"Naj\u00edt","replace_title":"Naj\u00edt/nahradit",replaceall:"Nahradit v\u0161e",replace:"Nahradit"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.searchreplace_dlg',{findwhat:"Zu suchender Text",replacewith:"Ersetzen durch",direction:"Suchrichtung",up:"Aufw\u00e4rts",down:"Abw\u00e4rts",mcase:"Gro\u00df-/Kleinschreibung beachten",findnext:"Weitersuchen",allreplaced:"Alle Vorkommen der Zeichenkette wurden ersetzt.","searchnext_desc":"Weitersuchen",notfound:"Die Suche ist am Ende angelangt. Die Zeichenkette konnte nicht gefunden werden.","search_title":"Suchen","replace_title":"Suchen/Ersetzen",replaceall:"Alle ersetzen",replace:"Ersetzen"}); -------------------------------------------------------------------------------- /skins/iphone/status/license.txt: -------------------------------------------------------------------------------- 1 | 2 | All the code within this directory originates from the PHP Pear package called 3 | HTML_Progress written by Laurent Laville. 4 | 5 | http://pear.laurent-laville.org/HTML_Progress/examples/index.html 6 | http://pear.laurent-laville.org/HTML_Progress/examples/horizontal/string.php 7 | 8 | ------------------------------------------------------------------------------- 9 | 10 | The license of this code is: PHP License 3.0 11 | For more information on this license, go to http://www.php.net/license/3_0.txt 12 | 13 | -------------------------------------------------------------------------------- /skins/shinra/browse_main.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.emotions_dlg',{cry:"Itku",cool:"Cool",desc:"Hymi\u00f6t",title:"Lis\u00e4\u00e4 hymi\u00f6",yell:"Huuto",wink:"Silm\u00e4nisku",undecided:"P\u00e4\u00e4tt\u00e4m\u00e4t\u00f6n","tongue_out":"Kieli ulkona",surprised:"Yll\u00e4ttynyt",smile:"Hymy",sealed:"Tukittu","money_mouth":"Klink Klink (raha)",laughing:"Nauru",kiss:"Pusu",innocent:"Viaton",frown:"Otsan rypistys","foot_in_mouth":"Jalka suussa",embarassed:"Nolostunut",usage:"K\u00e4yt\u00e4 vasenta ja oikeata nuolin\u00e4pp\u00e4int\u00e4 navigointiin."}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/he.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('he.simple',{"cleanup_desc":"\u05e0\u05e7\u05d4 \u05e7\u05d5\u05d3","redo_desc":" (Ctrl+Y)","undo_desc":"\u05d1\u05d9\u05d8\u05d5\u05dc \u05e4\u05e2\u05d5\u05dc\u05d4 (Ctrl+Z)","numlist_desc":"\u05de\u05e1\u05e4\u05d5\u05e8","bullist_desc":"\u05ea\u05d1\u05dc\u05d9\u05d8\u05d9\u05dd","striketrough_desc":"\u05e7\u05d5 \u05d7\u05d5\u05e6\u05d4","underline_desc":"\u05e7\u05d5 \u05ea\u05d7\u05ea\u05d5\u05df (Ctrl+U)","italic_desc":"\u05e0\u05d8\u05d5\u05d9 (Ctrl+I)","bold_desc":"\u05de\u05d5\u05d3\u05d2\u05e9 (Ctrl+B)"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.searchreplace_dlg',{findwhat:"Hitta vad",replacewith:"Ers\u00e4tt med",direction:"Riktning",up:"Upp\u00e5t",down:"Ner\u00e5t",mcase:"Matcha gemener/versaler",findnext:"Hitta n\u00e4sta",allreplaced:"Alla st\u00e4llen d\u00e4r s\u00f6kstr\u00e4ngen kunde hittas har ersatts.","searchnext_desc":"S\u00f6k igen",notfound:"S\u00f6kningen har slutf\u00f6rts. S\u00f6kstr\u00e4ngen kunde inte hittas.","search_title":"S\u00f6k","replace_title":"S\u00f6k/ers\u00e4tt",replaceall:"Ers\u00e4tt alla",replace:"Ers\u00e4tt"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/skins/o2k7/content.css: -------------------------------------------------------------------------------- 1 | body, td, pre {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} 2 | 3 | body {background: #FFF;} 4 | .mceVisualAid {border: 1px dashed #BBB;} 5 | 6 | /* IE */ 7 | 8 | * html body { 9 | scrollbar-3dlight-color: #F0F0EE; 10 | scrollbar-arrow-color: #676662; 11 | scrollbar-base-color: #F0F0EE; 12 | scrollbar-darkshadow-color: #DDDDDD; 13 | scrollbar-face-color: #E0E0DD; 14 | scrollbar-highlight-color: #F0F0EE; 15 | scrollbar-shadow-color: #F0F0EE; 16 | scrollbar-track-color: #F5F5F5; 17 | } 18 | -------------------------------------------------------------------------------- /skins/shinra/img/knobs-icons/license.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\mac\ansicpg10000\cocoartf824\cocoasubrtf480 2 | {\fonttbl\f0\froman\fcharset77 Times-Bold;\f1\froman\fcharset77 Times-Roman;} 3 | {\colortbl;\red255\green255\blue255;\red0\green0\blue241;} 4 | \margl1440\margr1440\vieww9000\viewh8400\viewkind0 5 | \deftab720 6 | \pard\pardeftab720\ql\qnatural 7 | 8 | \f0\b\fs24 \cf0 icon link: 9 | \f1\b0 {\field{\*\fldinst{HYPERLINK "http://itweek.deviantart.com/art/Knob-Buttons-Toolbar-icons-73463960"}}{\fldrslt \cf2 \ul \ulc2 http://itweek.deviantart.com/art/Knob-Buttons-Toolbar-icons-73463960}}\ 10 | } -------------------------------------------------------------------------------- /skins/shinra/login.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.searchreplace_dlg',{findwhat:"Aranan",replacewith:"Yeni de\u011fer",direction:"Y\u00f6n",up:"Yukar\u0131",down:"A\u015fa\u011f\u0131",mcase:"B\u00fcy\u00fck/k\u00fc\u00e7\u00fck duyarl\u0131",findnext:"Sonrakini bul",allreplaced:"Aranan metin bulundu\u011fu yerlede de\u011fi\u015ftirildi.","searchnext_desc":"Tekrar ara",notfound:"Arama tamamland\u0131. Aranan metin bulunamad\u0131.","search_title":"Bul","replace_title":"Bul/De\u011fi\u015ftir",replaceall:"T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir",replace:"De\u011fi\u015ftir"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/xhtmlxtras/css/popup.css: -------------------------------------------------------------------------------- 1 | input.field, select.field {width:200px;} 2 | input.picker {width:179px; margin-left: 5px;} 3 | input.disabled {border-color:#F2F2F2;} 4 | img.picker {vertical-align:text-bottom; cursor:pointer;} 5 | h1 {padding: 0 0 5px 0;} 6 | .panel_wrapper div.current {height:160px;} 7 | #xhtmlxtrasdel .panel_wrapper div.current, #xhtmlxtrasins .panel_wrapper div.current {height: 230px;} 8 | a.browse span {display:block; width:20px; height:20px; background:url('../../../themes/advanced/img/icons.gif') -140px -20px;} 9 | #datetime {width:180px;} 10 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.emotions_dlg',{cry:"A\u011flayan",cool:"Sakin",desc:"\u0130fadeler",title:"\u0130fade ekle",yell:"Ba\u011f\u0131rma",wink:"G\u00f6z k\u0131rpma",undecided:"Karars\u0131z","tongue_out":"Dil \u00e7\u0131karma",surprised:"\u015ea\u015f\u0131rma",smile:"G\u00fcl\u00fcmseme",sealed:"Gizli","money_mouth":"Para g\u00f6z",laughing:"Kahkaha",kiss:"\u00d6p\u00fcc\u00fck",innocent:"Masum",frown:"As\u0131k","foot_in_mouth":"Pot k\u0131rm\u0131\u015f",embarassed:"Utanga\u00e7",usage:"Gezinmek i\u00e7in sa\u011f ve sol oklar\u0131 kullan\u0131n."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/zh-tw_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-tw.searchreplace_dlg',{findwhat:"\u5c0b\u627e",replacewith:"\u53d6\u4ee3\u6210",direction:"\u5c0b\u627e\u7684\u65b9\u5411",up:"\u5f80\u4e0a\u627e",down:"\u5f80\u4e0b\u627e",mcase:"\u5927\u5c0f\u5beb\u5340\u5206\u958b\u4f86",findnext:"\u627e\u4e0b\u4e00\u500b",allreplaced:"\u53d6\u4ee3\u5b8c\u6210","searchnext_desc":"\u518d\u627e\u4e00\u6b21",notfound:"\u627e\u4e0d\u5230\u7b26\u5408\u7684\u8cc7\u6599","search_title":"\u5c0b\u627e","replace_title":"\u5c0b\u627e / \u53d6\u4ee3",replaceall:"\u5168\u90e8\u53d6\u4ee3",replace:"\u53d6\u4ee3"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.searchreplace_dlg',{findwhat:"Rechercher ceci",replacewith:"Remplacer par",direction:"Direction",up:"Vers le haut",down:"Vers le bas",mcase:"Sensible \u00e0 la casse",findnext:"Rechercher le suivant",allreplaced:"Toutes les occurrences de la cha\u00eene recherch\u00e9e ont \u00e9t\u00e9 remplac\u00e9es.","searchnext_desc":"Suivant",notfound:"La recherche est termin\u00e9e. La cha\u00eene recherch\u00e9e n\'a pas \u00e9t\u00e9 trouv\u00e9e.","search_title":"Rechercher","replace_title":"Rechercher / remplacer",replaceall:"Tout remplacer",replace:"Remplacer"}); -------------------------------------------------------------------------------- /skins/shinra/copymovedelete2.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | " || $net2ftp_output["ftp_copymovedelete"][$i] == "") { echo $net2ftp_output["ftp_copymovedelete"][$i] . "\n"; } 5 | else { echo "
  • " . $net2ftp_output["ftp_copymovedelete"][$i] . "
  • \n"; } 6 | } // end for ?> 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/luminous/src/doxygen.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | \n"; 9 | } // end for ?> 10 | 11 | 12 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.searchreplace_dlg',{findwhat:"Mit keres",replacewith:"Mire cser\u00e9l",direction:"Ir\u00e1ny",up:"Fel",down:"Le",mcase:"Kis- \u00e9s nagybet\u0171k megk\u00fcl\u00f6nb\u00f6ztet\u00e9se",findnext:"K\u00f6vetkez\u0151 keres\u00e9se",allreplaced:"A keresett r\u00e9szsz\u00f6veg minden el\u0151fordul\u00e1sa cser\u00e9lve lett.","searchnext_desc":"Keres\u00e9s megint",notfound:"A keres\u00e9s v\u00e9get \u00e9rt. A keresett sz\u00f6vegr\u00e9sz nem tal\u00e1lhat\u00f3.","search_title":"Keres\u00e9s","replace_title":"Keres\u00e9s/Csere",replaceall:"\u00d6sszes cser\u00e9je",replace:"Csere"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.paste_dlg',{"word_title":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0430 \u0432 \u043e\u043a\u043d\u043e.","text_linebreaks":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044b \u0441\u0442\u0440\u043e\u043a","text_title":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0430 \u0432 \u043e\u043a\u043d\u043e."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.template_dlg',{title:"Templates",label:"Template","desc_label":"Description",desc:"Insert Predefined Template Content",select:"Select a Template",preview:"Preview",warning:"Warning: Updating a template with a different one may cause data loss.","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"January,February,March,April,May,June,July,August,September,October,November,December","months_short":"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec","day_long":"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday","day_short":"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"}); -------------------------------------------------------------------------------- /skins/shinra/rename1.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    6 | " />

    7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.searchreplace_dlg',{findwhat:"\u67e5\u627e\u76ee\u6807",replacewith:"\u66ff\u6362\u4e3a",direction:"\u67e5\u627e\u65b9\u5411",up:"\u5411\u4e0a",down:"\u5411\u4e0b",mcase:"\u533a\u5206\u5927\u5c0f\u5199",findnext:"\u67e5\u627e\u4e0b\u4e00\u4e2a",allreplaced:"\u6240\u6709\u51fa\u73b0\u7684\u5b57\u7b26\u5747\u5df2\u66ff\u6362\u3002","searchnext_desc":"\u7ee7\u7eed\u67e5\u627e",notfound:"\u67e5\u627e\u5b8c\u6210\uff0c\u672a\u627e\u5230\u7b26\u5408\u7684\u6587\u5b57\u3002","search_title":"\u67e5\u627e","replace_title":"\u67e5\u627e/\u66ff\u6362",replaceall:"\u5168\u90e8\u66ff\u6362",replace:"\u66ff\u6362"}); -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/skins/default/content.css: -------------------------------------------------------------------------------- 1 | body, td, pre { 2 | font-family: Verdana, Arial, Helvetica, sans-serif; 3 | font-size: 10px; 4 | } 5 | 6 | body { 7 | background-color: #FFFFFF; 8 | } 9 | 10 | .mceVisualAid { 11 | border: 1px dashed #BBBBBB; 12 | } 13 | 14 | /* MSIE specific */ 15 | 16 | * html body { 17 | scrollbar-3dlight-color: #F0F0EE; 18 | scrollbar-arrow-color: #676662; 19 | scrollbar-base-color: #F0F0EE; 20 | scrollbar-darkshadow-color: #DDDDDD; 21 | scrollbar-face-color: #E0E0DD; 22 | scrollbar-highlight-color: #F0F0EE; 23 | scrollbar-shadow-color: #F0F0EE; 24 | scrollbar-track-color: #F5F5F5; 25 | } 26 | -------------------------------------------------------------------------------- /plugins/tinymce/themes/simple/langs/ar.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ar.simple',{"cleanup_desc":"\u0631\u0645\u0632 \u062a\u0646\u0638\u064a\u0641 \u0627\u0644\u0641\u0648\u0636\u0649","redo_desc":"\u0627\u0644\u0625\u0639\u0627\u062f\u0629 (Ctrl+Y)","undo_desc":"\u062a\u0631\u0627\u062c\u0639 (Ctrl+Z)","numlist_desc":"\u0642\u0627\u0626\u0645\u0629 \u0645\u0631\u062a\u0628\u0629","bullist_desc":"\u0642\u0627\u0626\u0645\u0629 \u063a\u064a\u0631 \u0645\u0631\u062a\u0628\u0629","striketrough_desc":"\u062a\u0648\u0633\u064a\u0637 \u0628\u062e\u0637","underline_desc":"\u062a\u0633\u0637\u064a\u0631 (Ctrl+U)","italic_desc":"\u0645\u0627\u0626\u0644 (Ctrl+I)","bold_desc":"\u0639\u0631\u064a\u0636 (Ctrl+B)"}); -------------------------------------------------------------------------------- /skins/shinra/admin_viewlogs1.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |

    9 | 10 | 11 |

    12 | 13 | 14 |

    15 | 16 | 17 |

    18 | 19 | 20 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.emotions_dlg',{cry:"Pla\u010d\u00edc\u00ed",cool:"\u00da\u017easn\u00fd",desc:"Emotikony",title:"Vlo\u017eit emotikonu",yell:"K\u0159i\u010d\u00edc\u00ed",wink:"Mrkaj\u00edc\u00ed",undecided:"Nerozhodn\u00fd","tongue_out":"S vyplazen\u00fdm jazykem",surprised:"P\u0159ekvapen\u00fd",smile:"Usm\u00edvaj\u00edc\u00ed se",sealed:"Ml\u010d\u00edc\u00ed","money_mouth":"Je na prachy",laughing:"Sm\u011bj\u00edc\u00ed se",kiss:"L\u00edbaj\u00edc\u00ed",innocent:"Nevinn\u00fd",frown:"Zamra\u010den\u00fd","foot_in_mouth":"\u0160l\u00e1pnul vedle",embarassed:"Rozpa\u010dit\u00fd",usage:"Pro navigaci pou\u017eijte \u0161ipky vlevo a vpravo."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.template_dlg',{title:"Vorlagen",label:"Vorlage","desc_label":"Beschreibung",desc:"Inhalt aus Vorlage einf\u00fcgen",select:"Vorlage ausw\u00e4hlen",preview:"Vorschau",warning:"Warnung: Eine Vorlage mit einer anderen zu aktualisieren kann zu einem Datenverlust f\u00fchren!","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"Januar,Februar,M\u00e4rz,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember","months_short":"Jan,Feb,M\u00e4r,Apr,Mai,Juni,Juli,Aug,Sept,Okt,Nov,Dez","day_long":"Sonntag,Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag","day_short":"So,Mo,Di,Mi,Do,Fr,Sa,So"}); -------------------------------------------------------------------------------- /skins/shinra/raw1.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | 7 | 8 |

    9 | 10 |
    11 | 16 | 17 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.template_dlg',{title:"Skabeloner",label:"Skabelon","desc_label":"Beskrivelse",desc:"Inds\u00e6t pr\u00e6defineret skabelonindhold",select:"V\u00e6lg en skabelon",preview:"Vis udskrift",warning:"Advarsel: Opdatering af en skabelon med en anden kan betyde datatab.","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"Januar,Februar,Marts,April,Maj,Juni,Juli,August,September,Oktober,November,December","months_short":"Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec","day_long":"S\u00f8ndag,Mandag,Tirsdag,Onsdag,Torsdag,Fredag,L\u00f8rdag,S\u00f8ndag","day_short":"S\u00f8n,Man,Tirs,Ons,Tors,Fre,L\u00f8r,S\u00f8n"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.template_dlg',{title:"Sjablonen",label:"Sjabloon","desc_label":"Beschrijving",desc:"Voorgedefinieerd sjabloon invoegen",select:"Selecteer een sjabloon",preview:"Voorbeeld",warning:"Waarschuwing: het bijwerken van een sjabloon met een andere kan het verlies van informatie tot gevolg hebben.","mdate_format":"%d-%m-%Y %H:%M:%S","cdate_format":"%d-%m-%Y %H:%M:%S","months_long":"Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December","months_short":"Jan,Feb,Mar,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec","day_long":"Zondag,Maandag,Dinsdag,Woensdag,Donderdag,Vrijdag,Zaterdag,Zondag","day_short":"zo,ma,di,wo,do,vr,za,zo"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.template_dlg',{title:"Mallar",label:"Mall","desc_label":"Beskrivning",desc:"Infoga en f\u00e4rdig mall",select:"V\u00e4lj en mall",preview:"F\u00f6rhandsgranska",warning:"Varning: Uppdaterar en mall med en ny kan inneb\u00e4ra att data f\u00f6rsvinner.","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"Januari,Februari,Mars,April,Maj,Juni,Juli,Augusti,September,Oktober,November,December","months_short":"Jan,Feb,Mar,Apr,Maj,Jun,Jul,Aug,Sep,Okt,Nov,Dec","day_long":"S\u00f6ndag,M\u00e5ndag,Tisdag,Onsdag,Torsdag,Fredag,L\u00f6rdag,S\u00f6ndag","day_short":"S\u00f6n,M\u00e5n,Tis,Ons,Tors,Fre,L\u00f6r,S\u00f6n"}); -------------------------------------------------------------------------------- /skins/iphone/logout.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
    4 | net2ftp for the iphone 5 |
    6 |
    7 | follow this link.", $url); ?>

    8 |
    9 | 10 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(a){a.create("tinymce.plugins.EmotionsPlugin",{init:function(b,c){b.addCommand("mceEmotion",function(){b.windowManager.open({file:c+"/emotions.htm",width:250+parseInt(b.getLang("emotions.delta_width",0)),height:160+parseInt(b.getLang("emotions.delta_height",0)),inline:1},{plugin_url:c})});b.addButton("emotions",{title:"emotions.emotions_desc",cmd:"mceEmotion"})},getInfo:function(){return{longname:"Emotions",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions",version:a.majorVersion+"."+a.minorVersion}}});a.PluginManager.add("emotions",a.plugins.EmotionsPlugin)})(tinymce); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/xhtmlxtras/js/abbr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * abbr.js 3 | * 4 | * Copyright 2009, Moxiecode Systems AB 5 | * Released under LGPL License. 6 | * 7 | * License: http://tinymce.moxiecode.com/license 8 | * Contributing: http://tinymce.moxiecode.com/contributing 9 | */ 10 | 11 | function init() { 12 | SXE.initElementDialog('abbr'); 13 | if (SXE.currentAction == "update") { 14 | SXE.showRemoveButton(); 15 | } 16 | } 17 | 18 | function insertAbbr() { 19 | SXE.insertElement('abbr'); 20 | tinyMCEPopup.close(); 21 | } 22 | 23 | function removeAbbr() { 24 | SXE.removeElement('abbr'); 25 | tinyMCEPopup.close(); 26 | } 27 | 28 | tinyMCEPopup.onInit.add(init); 29 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/xhtmlxtras/js/cite.js: -------------------------------------------------------------------------------- 1 | /** 2 | * cite.js 3 | * 4 | * Copyright 2009, Moxiecode Systems AB 5 | * Released under LGPL License. 6 | * 7 | * License: http://tinymce.moxiecode.com/license 8 | * Contributing: http://tinymce.moxiecode.com/contributing 9 | */ 10 | 11 | function init() { 12 | SXE.initElementDialog('cite'); 13 | if (SXE.currentAction == "update") { 14 | SXE.showRemoveButton(); 15 | } 16 | } 17 | 18 | function insertCite() { 19 | SXE.insertElement('cite'); 20 | tinyMCEPopup.close(); 21 | } 22 | 23 | function removeCite() { 24 | SXE.removeElement('cite'); 25 | tinyMCEPopup.close(); 26 | } 27 | 28 | tinyMCEPopup.onInit.add(init); 29 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/ar_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ar.paste_dlg',{"word_title":"\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0639\u0644\u0649 \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d \u0644\u0644\u0635\u0642 \u0627\u0644\u0646\u0635 \u0641\u064a \u0627\u0644\u0625\u0637\u0627\u0631.( CTRL V )","text_linebreaks":"\u0627\u062d\u062a\u0641\u0638 \u0628\u0641\u0648\u0627\u0635\u0644 \u0627\u0644\u0623\u0633\u0637\u0631","text_title":"\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0639\u0644\u0649 \u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d \u0644\u0644\u0635\u0642 \u0627\u0644\u0646\u0635 \u0641\u064a \u0627\u0644\u0625\u0637\u0627\u0631.( CTRL+V )"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/paste/langs/uk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.paste_dlg',{"word_title":"\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0443 \u0443 \u0432\u0456\u043a\u043d\u043e.","text_linebreaks":"\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0438 \u0440\u044f\u0434\u043a\u0456\u0432","text_title":"\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0443 \u0443 \u0432\u0456\u043a\u043d\u043e."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/pl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.template_dlg',{title:"Szablony",label:"Szablon","desc_label":"Opis",desc:"Wstaw tre\u015b\u0107 szablonu",select:"Wybierz szablon",preview:"Podgl\u0105d",warning:"Uwaga: Aktualizacja szablon\u00f3w mo\u017ce spowodowa\u0107 utrat\u0119 danych.","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"Stycze\u0144,Luty,Marzec.Kwiecie\u0144,Maj,Czerwiec,Lipiec,Sierpie\u0144,Wrzesie\u0144,Pa\u017adziernik,Listopad,Grudzie\u0144","months_short":"Sty,Lut,Mar,Kwi,Maj,Cze,Lip,Sie,Wrz,Pa\u017a,Lis,Gru","day_long":"Niedziela,Poniedzia\u0142ek,Wtorek,\u015aroda,Czwartek,Pi\u0105tek,Sobota,Niedziela","day_short":"N,Pn,Wt,\u015ar,Cz,Pt,So,N"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/vi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.emotions_dlg',{cry:"Kh\u00f3c",cool:"Kh\u00f4ng bi\u1ebft ng\u01b0\u1ee3ng",desc:"Bi\u1ec3u T\u01b0\u1ee3ng C\u1ea3m X\u00fac",title:"Bi\u1ec3u T\u01b0\u1ee3ng C\u1ea3m X\u00fac",yell:"La h\u00e9t",wink:"Nh\u00e1y m\u1eaft",undecided:"L\u01b0\u1ee1ng l\u1ef1","tongue_out":"L\u00e8 l\u01b0\u1ee1i",surprised:"Ng\u1ea1c nhi\u00ean",smile:"M\u1ec9m c\u01b0\u1eddi",sealed:"K\u00edn mi\u1ec7ng","money_mouth":"S\u00e1ng m\u1eaft v\u00ec $",laughing:"C\u01b0\u1eddi nh\u0103n r\u0103ng",kiss:"N\u1ee5 h\u00f4n",innocent:"Ng\u00e2y th\u01a1",frown:"Cau m\u00e0y","foot_in_mouth":"L\u1ee1 l\u1eddi",embarassed:"X\u1ea5u h\u1ed5",usage:"Use left and right arrows to navigate."}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.template_dlg',{title:"Modelli",label:"Modello","desc_label":"Descrizione",desc:"Inserisci contenuto da modello predefinito",select:"Seleziona un modello",preview:"Anteprima",warning:"Attenzione: Aggiornare un modello con un altro differente pu\u00f2 causare perdite di dati.","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre","months_short":"Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic","day_long":"Domenica,Luned\u00ec,Marted\u00ec,Mercoled\u00ec,Gioved\u00ec,Venerd\u00ec,Sabato,Domenica","day_short":"Dom,Lun,Mar,Mer,Gio,Ven,Sab,Dom"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.template_dlg',{title:"Templates",label:"Template","desc_label":"Descri\u00e7\u00e3o",desc:"Inserir template",select:"Selecionar template",preview:"Pr\u00e9-Visualiza\u00e7\u00e3o",warning:"Aten\u00e7\u00e3o: Atualizar um template com outro pode causar a perda de dados.","mdate_format":"%d-%m-%Y %H:%M:%S","cdate_format":"%d-%m-%Y %H:%M:%S","months_long":"Janeiro,Fevereiro,Mar\u00e7o,Abril,Maio,Junho,Julho,Agosto,Setembro,Outubro,Novembro,Dezembro","months_short":"Jan,Fev,Mar,Abr,Mai,Jun,Jul,Ago,Set,Out,Nov,Dez","day_long":"Domingo,Segunda-feira,Ter\u00e7a-feira,Quarta-feira,Quinta-feira,Sexta-feira,S\u00e1bado,Domingo","day_short":"Dom,Seg,Ter,Qua,Qui,Sex,Sab,Dom"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/xhtmlxtras/js/acronym.js: -------------------------------------------------------------------------------- 1 | /** 2 | * acronym.js 3 | * 4 | * Copyright 2009, Moxiecode Systems AB 5 | * Released under LGPL License. 6 | * 7 | * License: http://tinymce.moxiecode.com/license 8 | * Contributing: http://tinymce.moxiecode.com/contributing 9 | */ 10 | 11 | function init() { 12 | SXE.initElementDialog('acronym'); 13 | if (SXE.currentAction == "update") { 14 | SXE.showRemoveButton(); 15 | } 16 | } 17 | 18 | function insertAcronym() { 19 | SXE.insertElement('acronym'); 20 | tinyMCEPopup.close(); 21 | } 22 | 23 | function removeAcronym() { 24 | SXE.removeElement('acronym'); 25 | tinyMCEPopup.close(); 26 | } 27 | 28 | tinyMCEPopup.onInit.add(init); 29 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/example/js/dialog.js: -------------------------------------------------------------------------------- 1 | tinyMCEPopup.requireLangPack(); 2 | 3 | var ExampleDialog = { 4 | init : function() { 5 | var f = document.forms[0]; 6 | 7 | // Get the selected contents as text and place it in the input 8 | f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'}); 9 | f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_arg'); 10 | }, 11 | 12 | insert : function() { 13 | // Insert the contents from the input into the document 14 | tinyMCEPopup.editor.execCommand('mceInsertContent', false, document.forms[0].someval.value); 15 | tinyMCEPopup.close(); 16 | } 17 | }; 18 | 19 | tinyMCEPopup.onInit.add(ExampleDialog.init, ExampleDialog); 20 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/table/js/merge_cells.js: -------------------------------------------------------------------------------- 1 | tinyMCEPopup.requireLangPack(); 2 | 3 | var MergeCellsDialog = { 4 | init : function() { 5 | var f = document.forms[0]; 6 | 7 | f.numcols.value = tinyMCEPopup.getWindowArg('cols', 1); 8 | f.numrows.value = tinyMCEPopup.getWindowArg('rows', 1); 9 | }, 10 | 11 | merge : function() { 12 | var func, f = document.forms[0]; 13 | 14 | tinyMCEPopup.restoreSelection(); 15 | 16 | func = tinyMCEPopup.getWindowArg('onaction'); 17 | 18 | func({ 19 | cols : f.numcols.value, 20 | rows : f.numrows.value 21 | }); 22 | 23 | tinyMCEPopup.close(); 24 | } 25 | }; 26 | 27 | tinyMCEPopup.onInit.add(MergeCellsDialog.init, MergeCellsDialog); 28 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | {#preview.preview_desc} 11 | 12 | 13 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.template_dlg',{title:"Mod\u00e8les",label:"Mod\u00e8le","desc_label":"Description",desc:"Ins\u00e9rer un mod\u00e8le pr\u00e9d\u00e9fini",select:"Choisir un mod\u00e8le",preview:"Pr\u00e9visualisation",warning:"Attention : Mettre \u00e0 jour un mod\u00e8le pour un autre peut entra\u00eener une perte de donn\u00e9es !","mdate_format":"%d/%m/%Y %H:%M:%S","cdate_format":"%d/%m/%Y %H:%M:%S","months_long":"Janvier,F\u00e9vrier,Mars,Avril,Mai,Juin,Juillet,Ao\u00fbt,Septembre,Octobre,Novembre,D\u00e9cembre","months_short":"Jan,F\u00e9v,Mar,Avr,Mai,Juin,Juil,Ao\u00fbt,Sep,Oct,Nov,D\u00e9c","day_long":"Dimanche,Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche","day_short":"Dim,Lun,Mar,Mer,Jeu,Ven,Sam,Dim"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/advimage/css/advimage.css: -------------------------------------------------------------------------------- 1 | #src_list, #over_list, #out_list {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .alignPreview {border:1px solid #000; width:140px; height:140px; overflow:hidden; padding:5px;} 4 | .checkbox {border:0;} 5 | .panel_wrapper div.current {height:305px;} 6 | #prev {margin:0; border:1px solid #000; width:428px; height:150px; overflow:auto;} 7 | #align, #classlist {width:150px;} 8 | #width, #height {vertical-align:middle; width:50px; text-align:center;} 9 | #vspace, #hspace, #border {vertical-align:middle; width:30px; text-align:center;} 10 | #class_list {width:180px;} 11 | input {width: 280px;} 12 | #constrain, #onmousemovecheck {width:auto;} 13 | #id, #dir, #lang, #usemap, #longdesc {width:200px;} 14 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/emotions/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.emotions_dlg',{cry:"\u6ce3\u304d\u9854",cool:"\u30af\u30fc\u30eb",desc:"\u8868\u60c5\u30a2\u30a4\u30b3\u30f3",title:"\u8868\u60c5\u30a2\u30a4\u30b3\u30f3\u306e\u633f\u5165",yell:"\u30a8\u30fc\u30eb",wink:"\u30a6\u30a3\u30f3\u30af",undecided:"\u672a\u6c7a\u5b9a","tongue_out":"\u30a2\u30c3\u30ab\u30f3\u30d9\u30fc",surprised:"\u9a5a\u304d",smile:"\u7b11\u9854",sealed:"\u5c01\u5370","money_mouth":"\u53e3\u306b\u304a\u91d1",laughing:"\u7b11\u3044",kiss:"\u30ad\u30b9",innocent:"\u7d14\u771f\u7121\u57a2",frown:"\u6e0b\u9762","foot_in_mouth":"\u53e3\u306b\u8db3",embarassed:"\u56f0\u60d1",usage:"\u5de6\u3068\u53f3\u306e\u30ab\u30fc\u30bd\u30eb\u30ad\u30fc\u3067\u79fb\u52d5\u3057\u3066\u304f\u3060\u3055\u3044\u3002"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/vi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.searchreplace_dlg',{findwhat:"T\u00ecm ki\u1ebfm g\u00ec",replacewith:"Thay th\u1ebf v\u1edbi",direction:"H\u01b0\u1edbng",up:"L\u00ean",down:"Xu\u1ed1ng",mcase:"Theo c\u1ea3 ch\u1eef hoa",findnext:"T\u00ecm k\u1ebf ti\u1ebfp",allreplaced:"T\u1ea5t c\u1ea3 c\u00e1c l\u1ea7n xu\u1ea5t hi\u1ec7n c\u1ee7a c\u00e1c chu\u1ed7i t\u00ecm ki\u1ebfm \u0111\u01b0\u1ee3c thay th\u1ebf.","searchnext_desc":"T\u00ecm l\u1ea1i",notfound:"Vi\u1ec7c t\u00ecm ki\u1ebfm \u0111\u00e3 ho\u00e0n th\u00e0nh. Chu\u1ed7i t\u00ecm ki\u1ebfm kh\u00f4ng \u0111\u01b0\u1ee3c t\u00ecm th\u1ea5y.","search_title":"T\u00ecm ki\u1ebfm","replace_title":"T\u00ecm/Thay th\u1ebf",replaceall:"Thay th\u1ebf t\u1ea5t",replace:"Thay th\u1ebf"}); -------------------------------------------------------------------------------- /skins/shinra/google_ad_top.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    5 | 13 | 16 |
    17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.template_dlg',{title:"\u015eablonlar",label:"\u015eablon","desc_label":"A\u00e7\u0131klama",desc:"\u00d6ntan\u0131ml\u0131 i\u00e7erik \u015fablonu kullan",select:"\u015eablonu se\u00e7",preview:"\u00d6nizleme",warning:"Uyar\u0131: Bir \u015fablonu bir di\u011feriyle g\u00fcncellemek veri kayb\u0131na yol a\u00e7abilir.","mdate_format":"%d-%m-%Y %H:%M:%S","cdate_format":"%d-%m-%Y %H:%M:%S","months_long":"Ocak,\u015eubat,Mart,Nisan,May\u0131s,Haziran,Temmuz,A\u011fustos,Eyl\u00fcl,Ekim,Kas\u0131m,Aral\u0131k","months_short":"Oca,\u015eub,Mar,Nis,May,Haz,Tem,A\u011fu,Eyl,Eki,Kas,Ara","day_long":"Pazar,Pazartesi,Sal\u0131,\u00c7ar\u015famba,Per\u015fembe,Cuma,Cumartesi","day_short":"Paz,Pzt,Sal,\u00c7r\u015f,Per,Cum,Cts"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/searchreplace/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.searchreplace_dlg',{findwhat:"\u691c\u7d22\u3059\u308b\u6587\u5b57\u5217",replacewith:"\u7f6e\u63db\u5f8c\u306e\u6587\u5b57\u5217",direction:"\u65b9\u5411",up:"\u4e0a\u3078",down:"\u4e0b\u3078",mcase:"\u5927\u6587\u5b57\u30fb\u5c0f\u6587\u5b57\u306e\u533a\u5225",findnext:"\u6b21\u3092\u691c\u7d22",allreplaced:"\u3059\u3079\u3066\u7f6e\u63db\u3057\u307e\u3057\u305f\u3002","searchnext_desc":"\u518d\u691c\u7d22",notfound:"\u691c\u7d22\u3092\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002\u691c\u7d22\u6587\u5b57\u5217\u306f\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002","search_title":"\u691c\u7d22","replace_title":"\u691c\u7d22\u3068\u7f6e\u63db",replaceall:"\u3059\u3079\u3066\u7f6e\u63db",replace:"\u7f6e\u63db"}); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.template_dlg',{title:"Sivupohjat",label:"Sivupohja","desc_label":"Kuvaus",desc:"Lis\u00e4\u00e4 esim\u00e4\u00e4ritetty\u00e4 sivupohjasis\u00e4lt\u00f6\u00e4",select:"Valitse sivupohja",preview:"Esikatselu",warning:"Varoitus: Sivupohjan p\u00e4ivitt\u00e4minen toisella saattaa aiheuttaa tiedon menetyksen.","mdate_format":"%d.%m.%Y %H:%M:%S","cdate_format":"%d.%m.%Y %H:%M:%S","months_long":"Tammikuu,Helmikuu,Maaliskuu,Huhtikuu,Toukokuu,Kes\u00e4kuu,Hein\u00e4kuu,Elokuu,Syyskuu,Lokakuu,Marraskuu,Joulukuu","months_short":"Tammi,Helmi,Maalis,Huhti,Touko,Kes\u00e4,Hein\u00e4,Elo,Syys,Loka,Marras,Joulu","day_long":"sunnuntai,maanantai,tiistai,keskiviikko,torstai,perjantai,lauantai,sunnuntai","day_short":"su,ma,ti,ke,to,pe,la,su"}); -------------------------------------------------------------------------------- /skins/shinra/google_ad_bottom.template.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
    5 | 13 | 16 |
    17 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/advimage/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.AdvancedImagePlugin",{init:function(a,b){a.addCommand("mceAdvImage",function(){if(a.dom.getAttrib(a.selection.getNode(),"class","").indexOf("mceItem")!=-1){return}a.windowManager.open({file:b+"/image.htm",width:480+parseInt(a.getLang("advimage.delta_width",0)),height:385+parseInt(a.getLang("advimage.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("image",{title:"advimage.image_desc",cmd:"mceAdvImage"})},getInfo:function(){return{longname:"Advanced image",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advimage",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advimage",tinymce.plugins.AdvancedImagePlugin)})(); -------------------------------------------------------------------------------- /modules/edit/edit.js: -------------------------------------------------------------------------------- 1 | function toggleTextarea(name) { 2 | var name_shown = name + '_shown'; 3 | var name_hidden = name + '_hidden'; 4 | 5 | if (document.getElementById) { 6 | var element_shown = document.getElementById(name_shown); 7 | var element_hidden = document.getElementById(name_hidden); 8 | } 9 | else if (document.all) { 10 | var element_shown = document.all[name_shown]; 11 | var element_hidden = document.all[name_hidden]; 12 | } 13 | 14 | if(element_shown.style.display == "none" || element_shown.style.display == false) { 15 | element_shown.style.display = "block"; 16 | element_hidden.style.display = "none"; 17 | } 18 | else if(element_shown.style.display == "block") { 19 | element_shown.style.display = "none"; 20 | element_hidden.style.display = "block"; 21 | } 22 | } -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.template_dlg',{title:"Sablon beilleszt\u00e9se",label:"Sablon","desc_label":"Le\u00edr\u00e1s",desc:"Sablon beilleszt\u00e9se",select:"Sablon v\u00e1laszt\u00e1sa",preview:"El\u0151n\u00e9zet",warning:"Figyelem: Egy m\u00e1r alkalmazott sablon friss\u00edt\u00e9se m\u00e1sikkal adatveszt\u00e9ssel j\u00e1rhat.","mdate_format":"%Y.%m.%d. %H:%M:%S","cdate_format":"%Y.%m.%d. %H:%M:%S","months_long":"janu\u00e1r,febru\u00e1r,m\u00e1rcius,\u00e1prilis,m\u00e1jus,j\u00fanius,j\u00falius,augusztus,szeptember,okt\u00f3ber,november,december","months_short":"Jan,Feb,M\u00e1r,\u00c1pr,M\u00e1j,J\u00fan,J\u00fal,Aug,Szept,Okt,Nov,Dec","day_long":"vas\u00e1rnap,h\u00e9tf\u0151,kedd,szerda,cs\u00fct\u00f6rt\u00f6k,p\u00e9ntek,szombat,vas\u00e1rnap","day_short":"V,H,K,Sze,Cs,P,Szo,V"}); -------------------------------------------------------------------------------- /plugins/luminous/src/cache/sql/cache.mysql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS `luminous_cache` 2 | ( 3 | id INT NOT NULL AUTO_INCREMENT, 4 | -- this is the cache ID, it's the hex representation of an MD5sum. 5 | cache_id CHAR(32) NOT NULL UNIQUE, 6 | -- cached output 7 | output MEDIUMTEXT NOT NULL, 8 | -- date of insertion 9 | insert_date INT NOT NULL, 10 | -- date of most recent hit 11 | hit_date INT NOT NULL, 12 | PRIMARY KEY (id), 13 | -- we create an index on cache ID because it's what's most interesting, but in reality, we don't 14 | -- usually need to worry about many bytes. 6 chars gives us 3 bytes, 15 | -- or roughly 16 million combinations 16 | INDEX(cache_id(6)), 17 | INDEX(hit_date) 18 | ) ENGINE = MYISAM; 19 | 20 | -- we explictly set MyISAM because at least on my Xampp installation, innodb is painfully slow -------------------------------------------------------------------------------- /plugins/tinymce/plugins/template/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.template_dlg',{title:"\u0160ablony",label:"\u0160ablona","desc_label":"Popis",desc:"Vlo\u017eit p\u0159eddefinovan\u00fd obsah ze \u0161ablony",select:"Vybrat \u0161ablonu",preview:"N\u00e1hled",warning:"Upozorn\u011bn\u00ed: Aktualizace \u0161ablony jinou zp\u016fsob\u00ed ztr\u00e1tu dat.","mdate_format":"%d.%m.%Y %H:%M:%S","cdate_format":"%d.%m.%Y %H:%M:%S","months_long":"Leden,\u00danor,B\u0159ezen,Duben,Kv\u011bten,\u010cerven,\u010cervenec,Srpen,Z\u00e1\u0159\u00ed,\u0158\u00edjen,Listopad,Prosinec","months_short":"Led,\u00dano,B\u0159e,Dub,Kv\u011b,\u010cer,\u010cvc,Srp,Z\u00e1\u0159,\u0158\u00edj,Lis,Pro","day_long":"Ned\u011ble,Pond\u011bl\u00ed,\u00dater\u00fd,St\u0159eda,\u010ctvrtek,P\u00e1tek,Sobota,Ned\u011ble","day_short":"Ne,Po,\u00dat,St,\u010ct,P\u00e1,So,Ne"}); -------------------------------------------------------------------------------- /plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.html or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /plugins/tinymce/plugins/advhr/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.AdvancedHRPlugin",{init:function(a,b){a.addCommand("mceAdvancedHr",function(){a.windowManager.open({file:b+"/rule.htm",width:250+parseInt(a.getLang("advhr.delta_width",0)),height:160+parseInt(a.getLang("advhr.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("advhr",{title:"advhr.advhr_desc",cmd:"mceAdvancedHr"});a.onNodeChange.add(function(d,c,e){c.setActive("advhr",e.nodeName=="HR")});a.onClick.add(function(c,d){d=d.target;if(d.nodeName==="HR"){c.selection.select(d)}})},getInfo:function(){return{longname:"Advanced HR",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advhr",tinymce.plugins.AdvancedHRPlugin)})(); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/example/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.PluginManager.requireLangPack("example");tinymce.create("tinymce.plugins.ExamplePlugin",{init:function(a,b){a.addCommand("mceExample",function(){a.windowManager.open({file:b+"/dialog.htm",width:320+parseInt(a.getLang("example.delta_width",0)),height:120+parseInt(a.getLang("example.delta_height",0)),inline:1},{plugin_url:b,some_custom_arg:"custom arg"})});a.addButton("example",{title:"example.desc",cmd:"mceExample",image:b+"/img/example.gif"});a.onNodeChange.add(function(d,c,e){c.setActive("example",e.nodeName=="IMG")})},createControl:function(b,a){return null},getInfo:function(){return{longname:"Example plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example",version:"1.0"}}});tinymce.PluginManager.add("example",tinymce.plugins.ExamplePlugin)})(); -------------------------------------------------------------------------------- /plugins/tinymce/plugins/preview/example.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 18 | Example of a custom preview page 19 | 20 | 21 | 22 | Editor contents:
    23 |
    24 | 25 |
    26 | 27 | 28 | 29 | --------------------------------------------------------------------------------