summaryrefslogtreecommitdiff
path: root/template/French/library.js
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2005-03-23 11:33:16 +0100
committerAndreas Mair <amair.sob@googlemail.com>2005-03-23 11:33:16 +0100
commitd652334559b84dded4e4d5c5c9c014232ff10616 (patch)
treeb2d7bca66a9a1a51b7042b75971a7b78b7a72fb1 /template/French/library.js
parent46de243c304867eff807fef1e2fc31c9ad8f2f66 (diff)
downloadvdradmin-am-0.97-am2b.tar.gz
vdradmin-am-0.97-am2b.tar.bz2
2005-03-23: 0.97-am2bv0.97-am2b
- added French template (Submitted by Trois Six) - fixed English/i18n.pl - removed all "bilder" and "copper" folders in all templates except "Deutsch" and replaced them by links to the folders in "Deutsch".
Diffstat (limited to 'template/French/library.js')
-rw-r--r--template/French/library.js34
1 files changed, 34 insertions, 0 deletions
diff --git a/template/French/library.js b/template/French/library.js
new file mode 100644
index 0000000..d1f8aa6
--- /dev/null
+++ b/template/French/library.js
@@ -0,0 +1,34 @@
+//
+// this is part of VDR Admin
+//
+function open_help(url) {
+ window.open(url, "_blank", "width=500, height=460, resizable=yes, scrollbars=yes, status=no, toolbar=no");
+}
+
+function del(suffix) {
+ check=confirm("Supprimer Programme ?");
+ if(check) window.location.href=suffix;
+}
+
+function change(suffix) {
+ check=confirm("Changer Programme ?");
+ if(check) window.location.href=suffix;
+}
+
+function mdel() {
+ check=confirm("Supprimer les Programmes Sélectionnés ?");
+ if(check) document.FormName.submit();
+}
+
+function callurl( url ) {
+ image = new Image();
+ image.src = url;
+}
+
+function popup(URL) {
+ window.open(URL, '_new', 'width=450, height=250, scrollbars=auto, resizable=yes');
+}
+
+function toolbar(URL) {
+ window.open(URL, '_new', 'width=200, height=50');
+}