From: maniacikarus Date: Tue, 3 Apr 2007 20:53:31 +0000 (+0000) Subject: Samba CGI 2sprachig DE und ENG X-Git-Tag: v2.3-beta1~778 X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=commitdiff_plain;h=c9e1c143a246343e516be32e43d06f35c99fd9d8 Samba CGI 2sprachig DE und ENG Anpassung an der Samba Controll Datei Tango Icons hinzugefügt git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@479 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- diff --git a/config/samba/default.pdc b/config/samba/default.pdc index 887e387ea8..1d1e893713 100644 --- a/config/samba/default.pdc +++ b/config/samba/default.pdc @@ -17,3 +17,4 @@ browseable = no writeable = yes comment = Benutzerprofile valid users = %S + diff --git a/config/samba/default.settings b/config/samba/default.settings index 99f817eda0..e69de29bb2 100644 --- a/config/samba/default.settings +++ b/config/samba/default.settings @@ -1,16 +0,0 @@ -NETBIOSNAME=ipfire -BINDINTERFACESONLY=True -WINSSUPPORT=on -WINSSRV= -GUESTACCOUNT=samba -BLUE=off -SECURITY=share -OTHERINTERFACES= -WORKGRP=homeip.net -GREEN=on -OSLEVEL=33 -MAPTOGUEST='Bad User' -SRVSTRING='Samba' -INTERFACES=' eth0' -VPN=off -ORANGE=off diff --git a/config/samba/default.shares b/config/samba/default.shares index f7226df7c6..3c93e895f3 100644 --- a/config/samba/default.shares +++ b/config/samba/default.shares @@ -1,12 +1,11 @@ [Temp] -path = /var/samba/tmp +path = /tmp comment = Temp browseable = yes writeable = yes create mask = 0777 directory mask = 0777 guest ok = yes -public = yes force user = samba [P2P] @@ -17,5 +16,4 @@ writeable = yes create mask = 0777 directory mask = 0777 guest ok = yes -public = yes force user = samba diff --git a/html/cgi-bin/samba.cgi b/html/cgi-bin/samba.cgi index e45ca26fd0..d3e5b605d8 100644 --- a/html/cgi-bin/samba.cgi +++ b/html/cgi-bin/samba.cgi @@ -23,7 +23,7 @@ my %ovpnsettings = (); my $message = ""; my $errormessage = ""; my @Logs = qx(ls /var/log/samba/); -my $Log ='kein Log ausgewählt'; +my $Log =$Lang::tr{'no log selected'}; my $defaultoption= "[Share]\npath = /var/samba/share1\ncomment = Share - Public Access\nbrowseable = yes\nwriteable = yes\ncreate mask = 0777\ndirectory mask = 0777\nguest ok = yes\npublic = yes\nforce user = samba"; my $userentry = ""; my @user = (); @@ -81,13 +81,13 @@ $sambasettings{'WINSSRV'} = ''; $sambasettings{'WINSSUPPORT'} = 'on'; $sambasettings{'REMOTEANNOUNCE'} = ''; $sambasettings{'PASSWORDSYNC'} = 'off'; -$sambasettings{'OTHERINTERFACES'} = ''; +$sambasettings{'OTHERINTERFACES'} = '127.0.0.1'; $sambasettings{'GUESTACCOUNT'} = 'samba'; $sambasettings{'MAPTOGUEST'} = 'Never'; -$sambasettings{'LOGLEVEL'} = '3 passdb:5 auth:10 winbind:2'; +$sambasettings{'LOGLEVEL'} = '3 passdb:5 auth:5 winbind:2'; ### Values that have to be initialized $sambasettings{'ACTION'} = ''; -$sambasettings{'LOGLINES'} = '15'; +my $LOGLINES = '50'; ################################################## Samba PDC Variablen ##################################################### @@ -116,7 +116,7 @@ if ($sambasettings{'ACTION'} eq 'smbchangepw'){system("/usr/local/bin/sambactrl if ($sambasettings{'ACTION'} eq 'smbrestart'){system("/usr/local/bin/sambactrl smbrestart");} if ($sambasettings{'ACTION'} eq 'smbstart'){system("/usr/local/bin/sambactrl smbstart");} if ($sambasettings{'ACTION'} eq 'smbstop'){system("/usr/local/bin/sambactrl smbstop");} -if ($sambasettings{'ACTION'} eq 'smbstop'){system("/usr/local/bin/sambactrl smbstop");} +if ($sambasettings{'ACTION'} eq 'smbreload'){system("/usr/local/bin/sambactrl smbreload");} if ($sambasettings{'ACTION'} eq 'globalresetyes') { system("/usr/local/bin/sambactrl smbglobalreset"); @@ -134,10 +134,10 @@ if ($sambasettings{'ACTION'} eq 'globalresetyes') $sambasettings{'WINSSUPPORT'} = 'on'; $sambasettings{'REMOTEANNOUNCE'} = ''; $sambasettings{'PASSWORDSYNC'} = 'off'; - $sambasettings{'OTHERINTERFACES'} = ''; + $sambasettings{'OTHERINTERFACES'} = '127.0.0.1'; $sambasettings{'GUESTACCOUNT'} = 'samba'; $sambasettings{'MAPTOGUEST'} = 'Never'; - $sambasettings{'LOGLEVEL'} = '3 passdb:5 auth:10 winbind:2'; + $sambasettings{'LOGLEVEL'} = '3 passdb:5 auth:5 winbind:2'; ### Values that have to be initialized $sambasettings{'ACTION'} = ''; $sambasettings{'LOCALMASTER'} = 'off'; @@ -501,7 +501,7 @@ $selected{'SECURITY'}{$sambasettings{'SECURITY'}} = "selected='selected'"; ############################################################################################################################ ################################### Aufbau der HTML Seite fr globale Sambaeinstellungen ################################### -&Header::openbox('100%', 'center', 'Samba'); +&Header::openbox('100%', 'center', $Lang::tr{'samba'}); print < @@ -509,12 +509,12 @@ END ; if ( $message ne "" ) { - print " - + +
$message"; + print "
$message"; } print <
Alle Dienste

$Lang::tr{'all services'}
END ; @@ -522,25 +522,18 @@ END my $key = ''; foreach $key (sort keys %servicenames) { - print ""; my $shortname = $servicenames{$key}; my $status = &isrunning($shortname); - print "$status"; - print <
- - - -END -; + print "$status
"; } print < -
$key"; + print "
$key

- - - +
+ + +
@@ -548,12 +541,12 @@ print < - - - - - - + + + + + + - - + - - - - - + + + END ; -if ($sambasettings{'WINSSUPPORT'} eq 'off') {print"";} +if ($sambasettings{'WINSSUPPORT'} eq 'off') {print"";} print < END ; @@ -616,11 +609,11 @@ END if ($sambasettings{'SECURITY'} eq 'user') { print < - - END ; @@ -630,7 +623,7 @@ if ($sambasettings{'SECURITY'} eq 'user' && $sambasettings{'DOMAINMASTER'} eq 'o { print < - + END @@ -643,13 +636,13 @@ print < + + +

Basisoptionen
Workgroup:
NetBIOS-Name:
Server-String:
Log Level:
Interfaces:on / +
$Lang::tr{'basic options'}
$Lang::tr{'workgroup'}
$Lang::tr{'netbios name'}
$Lang::tr{'server string'}
$Lang::tr{'log level'}
$Lang::tr{'interfaces'}on / off | OpenVpn - $ovpnsettings{'DDEVICE'}
on / @@ -583,32 +576,32 @@ END } print <weitere
$Lang::tr{'more'}

Sicherheitsoptionen
Security:
$Lang::tr{'security options'}
$Lang::tr{'security'}
Map to guest:
$Lang::tr{'map to guest'}
Unix Passwort Sync:on / +
$Lang::tr{'unix password sync'}on / off

Netzwerkoptionen
OS Level:
Remote Announce:
$Lang::tr{'network options'}
$Lang::tr{'os level'}
$Lang::tr{'remote announce'}
WINS-Server:
$Lang::tr{'wins server'}
WINS-Support:on / +
$Lang::tr{'wins support'}on / off
Local Master:on / +
$Lang::tr{'local master'}on / off
Domain Master:on / +
$Lang::tr{'domain master'}on / off
Preferred Master:on / +
$Lang::tr{'prefered master'}on / off

PDC Optionen
$Lang::tr{'pdc options'}


-
-
-
END ; @@ -659,9 +652,9 @@ if ($sambasettings{'ACTION'} eq 'globalcaption') print <
- Legende: - Einstellungen speichern - Auf default zurueck setzen + $Lang::tr{'caption'} + $Lang::tr{'save settings'} + $Lang::tr{'restore settings'} END ; @@ -676,19 +669,19 @@ if ($sambasettings{'SECURITY'} eq 'user') { if ($sambasettings{'DOMAINMASTER'} eq 'off') { - &Header::openbox('100%', 'center', 'accounting - user Security none PDC mode'); + &Header::openbox('100%', 'center', $Lang::tr{'accounting user nonpdc'}); } else { - &Header::openbox('100%', 'center', 'accounting - user Security PDC mode'); + &Header::openbox('100%', 'center', $Lang::tr{'accounting user pdc'}); } print < - - + + END ; @@ -701,7 +694,7 @@ END print ""; } - print ""; + print ""; system('/usr/local/bin/sambactrl readsmbpasswd'); open(FILE, "; @@ -713,11 +706,11 @@ END print " END ; @@ -755,7 +748,7 @@ END END ; @@ -771,7 +764,7 @@ END END ; @@ -783,7 +776,7 @@ END END ; @@ -794,7 +787,7 @@ END END ; @@ -806,7 +799,7 @@ END + END ; @@ -815,14 +808,14 @@ END print <
- + END ; } print <
- +

Benutzerverwaltung
NamePasswort
$Lang::tr{'accounting'}
$Lang::tr{'username'}$Lang::tr{'password'}TypStatusOptionen
$Lang::tr{'interfaces'}$Lang::tr{'options'}
$userline[0]"; if ($userline[4] =~ /N/) { - print "nicht gesetzt"; + print "$Lang::tr{'not set'}"; } else { - print "gesetzt"; + print "$Lang::tr{'set'}"; } if ($sambasettings{'DOMAINMASTER'} eq 'off') @@ -728,11 +721,11 @@ END { if ($userline[0] =~ /\$/) { - print "PC"; + print "$Lang::tr{'interfaces'}"; } else { - print "User"; + print "$Lang::tr{'user'}"; } } @@ -743,7 +736,7 @@ END
- +
- +
- +
- +
- +

-
END @@ -833,15 +826,15 @@ END print <
- Legende: - Benutzer neu anlegen - Client Account neu anlegen - Benutzer loeschen - Client Account loeschen - Benutzer aktivieren - Benutzer deaktivieren - Passwort wechseln - Einstellungen speichern + $Lang::tr{'caption'} + $Lang::tr{'add user'} + $Lang::tr{'add pc'} + $Lang::tr{'delete user'} + $Lang::tr{'delete pc'} + $Lang::tr{'activate user'} + $Lang::tr{'deactivate user'} + $Lang::tr{'change passwords'} + $Lang::tr{'save config'} END ; @@ -856,9 +849,9 @@ END
- - - + + +

Passwort wechseln
Benutzername
Passwort
$Lang::tr{'change passwords'}
$Lang::tr{'username'}
$Lang::tr{'password'}
@@ -880,11 +873,11 @@ END - - - - - + + + + +

Benutzer neu anlegen
Benutzername
Passwort
Unix Gruppe
Unix Shell
$Lang::tr{'add user'}
$Lang::tr{'username'}
$Lang::tr{'password'}
$Lang::tr{'unix group'}
$Lang::tr{'unix shell'}
@@ -903,10 +896,10 @@ END - - - - + + + +

Client Account neu anlegen
Clientname
Unix Gruppe
Unix Shell
$Lang::tr{'pc add'}
$Lang::tr{'client'}
$Lang::tr{'unix group'}
$Lang::tr{'unix shell'}
@@ -921,14 +914,14 @@ END ############################################################################################################################ ############################################### Verwalten von Freigaben #################################################### -&Header::openbox('100%', 'center', 'Shares'); +&Header::openbox('100%', 'center', $Lang::tr{'shares'}); print < - + END ; @@ -939,12 +932,12 @@ foreach $shareentry (sort @Shares) END ; @@ -956,15 +949,15 @@ print <

Shareverwaltung -
Names des SharesOptionen
$Lang::tr{'manage shares'} +
$Lang::tr{'sharename'}$Lang::tr{'options'}
- +
- +

- +
- +
- +
END @@ -976,11 +969,11 @@ if ($sambasettings{'ACTION'} eq 'sharecaption') - - - - - + + + + +

Legende:
Share neu anlegen
Share bearbeiten
Einstellungen speichern
Shares zurueck setzen
Share loeschen
$Lang::tr{'add share'}
$Lang::tr{'edit share'}
$Lang::tr{'save config'}
$Lang::tr{'reset shares'}
$Lang::tr{'delete share'}
END ; @@ -992,18 +985,18 @@ if ($sambasettings{'ACTION'} eq 'shareadd' || $sambasettings{'ACTION'} eq 'optio
- + -

neuen Share anlegen
$Lang::tr{'add share'}
Anzeige der Optionen fuer Shares
+
$Lang::tr{'show share options'} - +
+

-
END ; @@ -1033,17 +1026,17 @@ if ($sambasettings{'ACTION'} eq 'sharechange' || $sambasettings{'ACTION'} eq 'op
- + - +

Share bearbeiten
$Lang::tr{'edit share'}
Anzeige der Optionen fuer Shares
+
$Lang::tr{'show share options'} -

- +
END @@ -1055,15 +1048,15 @@ if ($sambasettings{'ACTION'} eq 'optioncaption' || $sambasettings{'ACTION'} eq ' print <
- Legende: - OptionBedeutung / Beispiel - commentKommentar - comment = Mein neues Share + $Lang::tr{'caption'} + $Lang::tr{'options'}$Lang::tr{'meaning'} / $Lang::tr{'exampel'} + comment$Lang::tr{'comment'} + comment = $Lang::tr{'my new share'}
- pathPfad zum Verzeichnis - path = /share/neu + path$Lang::tr{'path to directory'} + path = /tmp
- writeableVerzeichnis schreibbar + writeable$Lang::tr{'directory writeable'} writeable = yes
browseablesichtbar in Verzeichnisliste @@ -1075,34 +1068,34 @@ if ($sambasettings{'ACTION'} eq 'optioncaption' || $sambasettings{'ACTION'} eq ' valid usersListe der Zugriffsberechtigten valid users = samba, user1
- write listListe der Schreibberechtigten + write list$Lang::tr{'visible in browselist'} write list = samba
- hosts allownur die angegebenen Hosts drfen das Share benutzen + hosts allow$Lang::tr{'host allow'} hosts allow = localhost 192.168.1.1 192.168.2.0/24
- hosts denyjede Maschine ausser diesen darf das Share benutzen + hosts deny$Lang::tr{'host deny'} hosts deny = 192.168.1.2 192.168.3.0/24
- read listListe der nur Leseberechtigten + read list$Lang::tr{'read list'} read list = user1
- admin usersListe der Benutzer mit SuperUser Rechten + admin users$Lang::tr{'admin users'} admin users = user1
- invalid usersListe der Benutzer denen der Zugriff verweigert wird + invalid users$Lang::tr{'invalid users'} invalid users = user2
- force userStandartbenutzer fuer alle Dateien + force user$Lang::tr{'force user'} force user = samba
- directory maskUNIX Verzeichnisberchtigung beim Erzeugen + directory mask$Lang::tr{'directory mask'} directory mask = 0777
- create maskUNIX Dateiberchtigung beim Erzeugen + create maskU$Lang::tr{'create mask'} create mask = 0777
- guest okAnnonymer Zugriff + guest ok$Lang::tr{'guest ok'} guest ok = yes END @@ -1120,7 +1113,7 @@ print < - +

Samba Status
$Lang::tr{'samba status'}
$Status
END @@ -1133,18 +1126,18 @@ END if ($sambasettings{'ACTION'} eq 'showlog') { -$Log = qx(tail -n $sambasettings{'LOGLINES'} /var/log/samba/$sambasettings{'LOG'}); +$Log = qx(tail -n $LOGLINES /var/log/samba/$sambasettings{'LOG'}); $Log=~s/\n/
/g; } -&Header::openbox('100%', 'center', 'Logs'); +&Header::openbox('100%', 'center', $Lang::tr{'log'}); print <
- + - + + diff --git a/html/html/images/Makefile.am b/html/html/images/Makefile.am new file mode 100755 index 0000000000..4fb6083ff9 --- /dev/null +++ b/html/html/images/Makefile.am @@ -0,0 +1,82 @@ + +size = 16x16 +context = actions + +iconsdir = $(themedir)/$(size)/$(context) + +icons_DATA = \ + address-book-new.png \ + appointment-new.png \ + bookmark-new.png \ + contact-new.png \ + document-new.png \ + document-open.png \ + document-print.png \ + document-print-preview.png \ + document-properties.png \ + document-save.png \ + document-save-as.png \ + edit-clear.png \ + edit-copy.png \ + edit-cut.png \ + edit-delete.png \ + edit-find.png \ + edit-find-replace.png \ + edit-paste.png \ + edit-redo.png \ + edit-select-all.png \ + edit-undo.png \ + folder-new.png \ + format-indent-less.png \ + format-indent-more.png \ + format-justify-center.png \ + format-justify-fill.png \ + format-justify-left.png \ + format-justify-right.png \ + format-text-bold.png \ + format-text-italic.png \ + format-text-strikethrough.png \ + format-text-underline.png \ + go-bottom.png \ + go-down.png \ + go-first.png \ + go-home.png \ + go-jump.png \ + go-last.png \ + go-next.png \ + go-previous.png \ + go-top.png \ + go-up.png \ + list-add.png \ + list-remove.png \ + mail-forward.png \ + mail-message-new.png \ + mail-mark-junk.png \ + mail-mark-not-junk.png \ + mail-reply-all.png \ + mail-reply-sender.png \ + mail-send-receive.png \ + media-eject.png \ + media-playback-pause.png \ + media-playback-start.png \ + media-playback-stop.png \ + media-record.png \ + media-seek-backward.png \ + media-seek-forward.png \ + media-skip-backward.png \ + media-skip-forward.png \ + process-stop.png \ + system-lock-screen.png \ + system-log-out.png \ + system-search.png \ + system-shutdown.png \ + tab-new.png \ + view-fullscreen.png \ + view-refresh.png \ + window-new.png + +EXTRA_DIST = \ + $(icons_DATA) + +install-data-local: install-iconsDATA + (cd $(DESTDIR)$(themedir)/$(size) && $(ICONMAP) -c $(context)) diff --git a/html/html/images/accessories-calculator.png b/html/html/images/accessories-calculator.png new file mode 100755 index 0000000000..9248971a91 Binary files /dev/null and b/html/html/images/accessories-calculator.png differ diff --git a/html/html/images/accessories-character-map.png b/html/html/images/accessories-character-map.png new file mode 100755 index 0000000000..5dd11246f2 Binary files /dev/null and b/html/html/images/accessories-character-map.png differ diff --git a/html/html/images/accessories-text-editor.png b/html/html/images/accessories-text-editor.png new file mode 100755 index 0000000000..188e1c12bd Binary files /dev/null and b/html/html/images/accessories-text-editor.png differ diff --git a/html/html/images/address-book-new.png b/html/html/images/address-book-new.png new file mode 100755 index 0000000000..2098cfdf36 Binary files /dev/null and b/html/html/images/address-book-new.png differ diff --git a/html/html/images/application-certificate.png b/html/html/images/application-certificate.png new file mode 100755 index 0000000000..486913d9f5 Binary files /dev/null and b/html/html/images/application-certificate.png differ diff --git a/html/html/images/application-x-executable.png b/html/html/images/application-x-executable.png new file mode 100755 index 0000000000..003ded243b Binary files /dev/null and b/html/html/images/application-x-executable.png differ diff --git a/html/html/images/applications-accessories.png b/html/html/images/applications-accessories.png new file mode 100755 index 0000000000..c8d899cff2 Binary files /dev/null and b/html/html/images/applications-accessories.png differ diff --git a/html/html/images/applications-development.png b/html/html/images/applications-development.png new file mode 100755 index 0000000000..437522777b Binary files /dev/null and b/html/html/images/applications-development.png differ diff --git a/html/html/images/applications-games.png b/html/html/images/applications-games.png new file mode 100755 index 0000000000..4ba874bcbb Binary files /dev/null and b/html/html/images/applications-games.png differ diff --git a/html/html/images/applications-graphics.png b/html/html/images/applications-graphics.png new file mode 100755 index 0000000000..4bb955f0e6 Binary files /dev/null and b/html/html/images/applications-graphics.png differ diff --git a/html/html/images/applications-internet.png b/html/html/images/applications-internet.png new file mode 100755 index 0000000000..a5889683a6 Binary files /dev/null and b/html/html/images/applications-internet.png differ diff --git a/html/html/images/applications-multimedia.png b/html/html/images/applications-multimedia.png new file mode 100755 index 0000000000..3e4ced5b60 Binary files /dev/null and b/html/html/images/applications-multimedia.png differ diff --git a/html/html/images/applications-office.png b/html/html/images/applications-office.png new file mode 100755 index 0000000000..f9b3bb9fb5 Binary files /dev/null and b/html/html/images/applications-office.png differ diff --git a/html/html/images/applications-other.png b/html/html/images/applications-other.png new file mode 100755 index 0000000000..0d49f9dfd9 Binary files /dev/null and b/html/html/images/applications-other.png differ diff --git a/html/html/images/applications-system.png b/html/html/images/applications-system.png new file mode 100755 index 0000000000..d90ab661cb Binary files /dev/null and b/html/html/images/applications-system.png differ diff --git a/html/html/images/appointment-new.png b/html/html/images/appointment-new.png new file mode 100755 index 0000000000..18b7c6781e Binary files /dev/null and b/html/html/images/appointment-new.png differ diff --git a/html/html/images/audio-card.png b/html/html/images/audio-card.png new file mode 100755 index 0000000000..aaa7907001 Binary files /dev/null and b/html/html/images/audio-card.png differ diff --git a/html/html/images/audio-input-microphone.png b/html/html/images/audio-input-microphone.png new file mode 100755 index 0000000000..53a0393179 Binary files /dev/null and b/html/html/images/audio-input-microphone.png differ diff --git a/html/html/images/audio-volume-high.png b/html/html/images/audio-volume-high.png new file mode 100755 index 0000000000..ec8f00b4ad Binary files /dev/null and b/html/html/images/audio-volume-high.png differ diff --git a/html/html/images/audio-volume-low.png b/html/html/images/audio-volume-low.png new file mode 100755 index 0000000000..4d7239ff68 Binary files /dev/null and b/html/html/images/audio-volume-low.png differ diff --git a/html/html/images/audio-volume-medium.png b/html/html/images/audio-volume-medium.png new file mode 100755 index 0000000000..36ca7b0806 Binary files /dev/null and b/html/html/images/audio-volume-medium.png differ diff --git a/html/html/images/audio-volume-muted.png b/html/html/images/audio-volume-muted.png new file mode 100755 index 0000000000..af5a97b5a0 Binary files /dev/null and b/html/html/images/audio-volume-muted.png differ diff --git a/html/html/images/audio-x-generic.png b/html/html/images/audio-x-generic.png new file mode 100755 index 0000000000..fd877cb8d3 Binary files /dev/null and b/html/html/images/audio-x-generic.png differ diff --git a/html/html/images/battery-caution.png b/html/html/images/battery-caution.png new file mode 100755 index 0000000000..53a27d165c Binary files /dev/null and b/html/html/images/battery-caution.png differ diff --git a/html/html/images/battery.png b/html/html/images/battery.png new file mode 100755 index 0000000000..8684e2a1bb Binary files /dev/null and b/html/html/images/battery.png differ diff --git a/html/html/images/bookmark-new.png b/html/html/images/bookmark-new.png new file mode 100755 index 0000000000..6cf6443a29 Binary files /dev/null and b/html/html/images/bookmark-new.png differ diff --git a/html/html/images/camera-photo.png b/html/html/images/camera-photo.png new file mode 100755 index 0000000000..1e8e88636c Binary files /dev/null and b/html/html/images/camera-photo.png differ diff --git a/html/html/images/camera-video.png b/html/html/images/camera-video.png new file mode 100755 index 0000000000..98fc211486 Binary files /dev/null and b/html/html/images/camera-video.png differ diff --git a/html/html/images/computer.png b/html/html/images/computer.png new file mode 100755 index 0000000000..c9cc93eff9 Binary files /dev/null and b/html/html/images/computer.png differ diff --git a/html/html/images/contact-new.png b/html/html/images/contact-new.png new file mode 100755 index 0000000000..46573fff69 Binary files /dev/null and b/html/html/images/contact-new.png differ diff --git a/html/html/images/dialog-information.png b/html/html/images/dialog-information.png new file mode 100755 index 0000000000..8851b99ba1 Binary files /dev/null and b/html/html/images/dialog-information.png differ diff --git a/html/html/images/dialog-warning.png b/html/html/images/dialog-warning.png new file mode 100755 index 0000000000..a9e4ff3991 Binary files /dev/null and b/html/html/images/dialog-warning.png differ diff --git a/html/html/images/document-new.png b/html/html/images/document-new.png new file mode 100755 index 0000000000..4c3efdd6fa Binary files /dev/null and b/html/html/images/document-new.png differ diff --git a/html/html/images/document-open.png b/html/html/images/document-open.png new file mode 100755 index 0000000000..69dd8d4830 Binary files /dev/null and b/html/html/images/document-open.png differ diff --git a/html/html/images/document-print-preview.png b/html/html/images/document-print-preview.png new file mode 100755 index 0000000000..ab92a309ce Binary files /dev/null and b/html/html/images/document-print-preview.png differ diff --git a/html/html/images/document-print.png b/html/html/images/document-print.png new file mode 100755 index 0000000000..35c37bd73e Binary files /dev/null and b/html/html/images/document-print.png differ diff --git a/html/html/images/document-properties.png b/html/html/images/document-properties.png new file mode 100755 index 0000000000..ab0e8ea377 Binary files /dev/null and b/html/html/images/document-properties.png differ diff --git a/html/html/images/document-save-as.png b/html/html/images/document-save-as.png new file mode 100755 index 0000000000..9bed1436ef Binary files /dev/null and b/html/html/images/document-save-as.png differ diff --git a/html/html/images/document-save.png b/html/html/images/document-save.png new file mode 100755 index 0000000000..22ff495710 Binary files /dev/null and b/html/html/images/document-save.png differ diff --git a/html/html/images/drive-harddisk.png b/html/html/images/drive-harddisk.png new file mode 100755 index 0000000000..5c3b8587f4 Binary files /dev/null and b/html/html/images/drive-harddisk.png differ diff --git a/html/html/images/drive-optical.png b/html/html/images/drive-optical.png new file mode 100755 index 0000000000..4ced6fe4f0 Binary files /dev/null and b/html/html/images/drive-optical.png differ diff --git a/html/html/images/drive-removable-media.png b/html/html/images/drive-removable-media.png new file mode 100755 index 0000000000..915389828f Binary files /dev/null and b/html/html/images/drive-removable-media.png differ diff --git a/html/html/images/edit-clear.png b/html/html/images/edit-clear.png new file mode 100755 index 0000000000..e6c8e8b9f3 Binary files /dev/null and b/html/html/images/edit-clear.png differ diff --git a/html/html/images/edit-copy.png b/html/html/images/edit-copy.png new file mode 100755 index 0000000000..8dd48c4949 Binary files /dev/null and b/html/html/images/edit-copy.png differ diff --git a/html/html/images/edit-cut.png b/html/html/images/edit-cut.png new file mode 100755 index 0000000000..dc9eb9a7ad Binary files /dev/null and b/html/html/images/edit-cut.png differ diff --git a/html/html/images/edit-delete.png b/html/html/images/edit-delete.png new file mode 100755 index 0000000000..ea03150a1c Binary files /dev/null and b/html/html/images/edit-delete.png differ diff --git a/html/html/images/edit-find-replace.png b/html/html/images/edit-find-replace.png new file mode 100755 index 0000000000..6edbef6145 Binary files /dev/null and b/html/html/images/edit-find-replace.png differ diff --git a/html/html/images/edit-find.png b/html/html/images/edit-find.png new file mode 100755 index 0000000000..d072d3cbe2 Binary files /dev/null and b/html/html/images/edit-find.png differ diff --git a/html/html/images/edit-paste.png b/html/html/images/edit-paste.png new file mode 100755 index 0000000000..24588a3a4d Binary files /dev/null and b/html/html/images/edit-paste.png differ diff --git a/html/html/images/edit-select-all.png b/html/html/images/edit-select-all.png new file mode 100755 index 0000000000..f4b0b19e09 Binary files /dev/null and b/html/html/images/edit-select-all.png differ diff --git a/html/html/images/edit-undo.png b/html/html/images/edit-undo.png new file mode 100755 index 0000000000..8b0fef9a83 Binary files /dev/null and b/html/html/images/edit-undo.png differ diff --git a/html/html/images/emblem-favorite.png b/html/html/images/emblem-favorite.png new file mode 100755 index 0000000000..55642d55a6 Binary files /dev/null and b/html/html/images/emblem-favorite.png differ diff --git a/html/html/images/emblem-important.png b/html/html/images/emblem-important.png new file mode 100755 index 0000000000..81e9ed29a5 Binary files /dev/null and b/html/html/images/emblem-important.png differ diff --git a/html/html/images/emblem-photos.png b/html/html/images/emblem-photos.png new file mode 100755 index 0000000000..ab4046363f Binary files /dev/null and b/html/html/images/emblem-photos.png differ diff --git a/html/html/images/emblem-readonly.png b/html/html/images/emblem-readonly.png new file mode 100755 index 0000000000..04666196e5 Binary files /dev/null and b/html/html/images/emblem-readonly.png differ diff --git a/html/html/images/emblem-symbolic-link.png b/html/html/images/emblem-symbolic-link.png new file mode 100755 index 0000000000..800b9e8486 Binary files /dev/null and b/html/html/images/emblem-symbolic-link.png differ diff --git a/html/html/images/emblem-system.png b/html/html/images/emblem-system.png new file mode 100755 index 0000000000..259ed26dd0 Binary files /dev/null and b/html/html/images/emblem-system.png differ diff --git a/html/html/images/emblem-unreadable.png b/html/html/images/emblem-unreadable.png new file mode 100755 index 0000000000..93edaf03f8 Binary files /dev/null and b/html/html/images/emblem-unreadable.png differ diff --git a/html/html/images/face-angel.png b/html/html/images/face-angel.png new file mode 100755 index 0000000000..d2c5e940df Binary files /dev/null and b/html/html/images/face-angel.png differ diff --git a/html/html/images/face-crying.png b/html/html/images/face-crying.png new file mode 100755 index 0000000000..a7e3f49fbc Binary files /dev/null and b/html/html/images/face-crying.png differ diff --git a/html/html/images/face-devil-grin.png b/html/html/images/face-devil-grin.png new file mode 100755 index 0000000000..8e2cd4584d Binary files /dev/null and b/html/html/images/face-devil-grin.png differ diff --git a/html/html/images/face-glasses.png b/html/html/images/face-glasses.png new file mode 100755 index 0000000000..d13f2c8c70 Binary files /dev/null and b/html/html/images/face-glasses.png differ diff --git a/html/html/images/face-grin.png b/html/html/images/face-grin.png new file mode 100755 index 0000000000..d15cf2d45a Binary files /dev/null and b/html/html/images/face-grin.png differ diff --git a/html/html/images/face-kiss.png b/html/html/images/face-kiss.png new file mode 100755 index 0000000000..809c1cf772 Binary files /dev/null and b/html/html/images/face-kiss.png differ diff --git a/html/html/images/face-monkey.png b/html/html/images/face-monkey.png new file mode 100755 index 0000000000..69db8fa5b5 Binary files /dev/null and b/html/html/images/face-monkey.png differ diff --git a/html/html/images/face-plain.png b/html/html/images/face-plain.png new file mode 100755 index 0000000000..a6761bd10e Binary files /dev/null and b/html/html/images/face-plain.png differ diff --git a/html/html/images/face-sad.png b/html/html/images/face-sad.png new file mode 100755 index 0000000000..fa258956ae Binary files /dev/null and b/html/html/images/face-sad.png differ diff --git a/html/html/images/face-smile-big.png b/html/html/images/face-smile-big.png new file mode 100755 index 0000000000..4cebcff64c Binary files /dev/null and b/html/html/images/face-smile-big.png differ diff --git a/html/html/images/face-smile.png b/html/html/images/face-smile.png new file mode 100755 index 0000000000..01e01170de Binary files /dev/null and b/html/html/images/face-smile.png differ diff --git a/html/html/images/face-surprise.png b/html/html/images/face-surprise.png new file mode 100755 index 0000000000..863f30484d Binary files /dev/null and b/html/html/images/face-surprise.png differ diff --git a/html/html/images/face-wink.png b/html/html/images/face-wink.png new file mode 100755 index 0000000000..46be685577 Binary files /dev/null and b/html/html/images/face-wink.png differ diff --git a/html/html/images/folder-drag-accept.png b/html/html/images/folder-drag-accept.png new file mode 100755 index 0000000000..4a6c897b6a Binary files /dev/null and b/html/html/images/folder-drag-accept.png differ diff --git a/html/html/images/folder-new.png b/html/html/images/folder-new.png new file mode 100755 index 0000000000..628f4d50ff Binary files /dev/null and b/html/html/images/folder-new.png differ diff --git a/html/html/images/folder-open.png b/html/html/images/folder-open.png new file mode 100755 index 0000000000..1e074cd024 Binary files /dev/null and b/html/html/images/folder-open.png differ diff --git a/html/html/images/folder-remote.png b/html/html/images/folder-remote.png new file mode 100755 index 0000000000..8f1f0a90cc Binary files /dev/null and b/html/html/images/folder-remote.png differ diff --git a/html/html/images/folder-saved-search.png b/html/html/images/folder-saved-search.png new file mode 100755 index 0000000000..a55601d3f4 Binary files /dev/null and b/html/html/images/folder-saved-search.png differ diff --git a/html/html/images/folder-visiting.png b/html/html/images/folder-visiting.png new file mode 100755 index 0000000000..d8d1be63ee Binary files /dev/null and b/html/html/images/folder-visiting.png differ diff --git a/html/html/images/folder.png b/html/html/images/folder.png new file mode 100755 index 0000000000..901edc9624 Binary files /dev/null and b/html/html/images/folder.png differ diff --git a/html/html/images/font-x-generic.png b/html/html/images/font-x-generic.png new file mode 100755 index 0000000000..bdbc1a80ac Binary files /dev/null and b/html/html/images/font-x-generic.png differ diff --git a/html/html/images/format-indent-less.png b/html/html/images/format-indent-less.png new file mode 100755 index 0000000000..1787a7ff48 Binary files /dev/null and b/html/html/images/format-indent-less.png differ diff --git a/html/html/images/format-indent-more.png b/html/html/images/format-indent-more.png new file mode 100755 index 0000000000..6bad6bbacb Binary files /dev/null and b/html/html/images/format-indent-more.png differ diff --git a/html/html/images/format-justify-center.png b/html/html/images/format-justify-center.png new file mode 100755 index 0000000000..207dc4cd84 Binary files /dev/null and b/html/html/images/format-justify-center.png differ diff --git a/html/html/images/format-justify-fill.png b/html/html/images/format-justify-fill.png new file mode 100755 index 0000000000..663cbaddde Binary files /dev/null and b/html/html/images/format-justify-fill.png differ diff --git a/html/html/images/format-justify-left.png b/html/html/images/format-justify-left.png new file mode 100755 index 0000000000..d9b40a76f7 Binary files /dev/null and b/html/html/images/format-justify-left.png differ diff --git a/html/html/images/format-justify-right.png b/html/html/images/format-justify-right.png new file mode 100755 index 0000000000..c3013073cf Binary files /dev/null and b/html/html/images/format-justify-right.png differ diff --git a/html/html/images/format-text-bold.png b/html/html/images/format-text-bold.png new file mode 100755 index 0000000000..c9cb630343 Binary files /dev/null and b/html/html/images/format-text-bold.png differ diff --git a/html/html/images/format-text-italic.png b/html/html/images/format-text-italic.png new file mode 100755 index 0000000000..977ea82176 Binary files /dev/null and b/html/html/images/format-text-italic.png differ diff --git a/html/html/images/format-text-strikethrough.png b/html/html/images/format-text-strikethrough.png new file mode 100755 index 0000000000..ccee76e29e Binary files /dev/null and b/html/html/images/format-text-strikethrough.png differ diff --git a/html/html/images/format-text-underline.png b/html/html/images/format-text-underline.png new file mode 100755 index 0000000000..0c48721002 Binary files /dev/null and b/html/html/images/format-text-underline.png differ diff --git a/html/html/images/go-bottom.png b/html/html/images/go-bottom.png new file mode 100755 index 0000000000..2c5a80385c Binary files /dev/null and b/html/html/images/go-bottom.png differ diff --git a/html/html/images/go-down.png b/html/html/images/go-down.png new file mode 100755 index 0000000000..3dd7fccdf0 Binary files /dev/null and b/html/html/images/go-down.png differ diff --git a/html/html/images/go-first.png b/html/html/images/go-first.png new file mode 100755 index 0000000000..9c15c09e95 Binary files /dev/null and b/html/html/images/go-first.png differ diff --git a/html/html/images/go-home.png b/html/html/images/go-home.png new file mode 100755 index 0000000000..a46fb22206 Binary files /dev/null and b/html/html/images/go-home.png differ diff --git a/html/html/images/go-jump.png b/html/html/images/go-jump.png new file mode 100755 index 0000000000..1d218c388b Binary files /dev/null and b/html/html/images/go-jump.png differ diff --git a/html/html/images/go-last.png b/html/html/images/go-last.png new file mode 100755 index 0000000000..6e904efd06 Binary files /dev/null and b/html/html/images/go-last.png differ diff --git a/html/html/images/go-next.png b/html/html/images/go-next.png new file mode 100755 index 0000000000..6ef8de76e0 Binary files /dev/null and b/html/html/images/go-next.png differ diff --git a/html/html/images/go-previous.png b/html/html/images/go-previous.png new file mode 100755 index 0000000000..659cd90d7f Binary files /dev/null and b/html/html/images/go-previous.png differ diff --git a/html/html/images/go-top.png b/html/html/images/go-top.png new file mode 100755 index 0000000000..70f2c996cd Binary files /dev/null and b/html/html/images/go-top.png differ diff --git a/html/html/images/go-up.png b/html/html/images/go-up.png new file mode 100755 index 0000000000..fa9a7d71b5 Binary files /dev/null and b/html/html/images/go-up.png differ diff --git a/html/html/images/help-browser.png b/html/html/images/help-browser.png new file mode 100755 index 0000000000..f25fc3fbf1 Binary files /dev/null and b/html/html/images/help-browser.png differ diff --git a/html/html/images/image-loading.png b/html/html/images/image-loading.png new file mode 100755 index 0000000000..174994ecf9 Binary files /dev/null and b/html/html/images/image-loading.png differ diff --git a/html/html/images/image-missing.png b/html/html/images/image-missing.png new file mode 100755 index 0000000000..a644f242df Binary files /dev/null and b/html/html/images/image-missing.png differ diff --git a/html/html/images/image-x-generic.png b/html/html/images/image-x-generic.png new file mode 100755 index 0000000000..68da5027cf Binary files /dev/null and b/html/html/images/image-x-generic.png differ diff --git a/html/html/images/input-gaming.png b/html/html/images/input-gaming.png new file mode 100755 index 0000000000..9d040ee843 Binary files /dev/null and b/html/html/images/input-gaming.png differ diff --git a/html/html/images/input-keyboard.png b/html/html/images/input-keyboard.png new file mode 100755 index 0000000000..29cd639441 Binary files /dev/null and b/html/html/images/input-keyboard.png differ diff --git a/html/html/images/input-mouse.png b/html/html/images/input-mouse.png new file mode 100755 index 0000000000..eeda4db864 Binary files /dev/null and b/html/html/images/input-mouse.png differ diff --git a/html/html/images/internet-group-chat.png b/html/html/images/internet-group-chat.png new file mode 100755 index 0000000000..f6e83254b6 Binary files /dev/null and b/html/html/images/internet-group-chat.png differ diff --git a/html/html/images/internet-mail.png b/html/html/images/internet-mail.png new file mode 100755 index 0000000000..859251fe0f Binary files /dev/null and b/html/html/images/internet-mail.png differ diff --git a/html/html/images/internet-news-reader.png b/html/html/images/internet-news-reader.png new file mode 100755 index 0000000000..a9850ee2cd Binary files /dev/null and b/html/html/images/internet-news-reader.png differ diff --git a/html/html/images/internet-web-browser.png b/html/html/images/internet-web-browser.png new file mode 100755 index 0000000000..ac5957ad62 Binary files /dev/null and b/html/html/images/internet-web-browser.png differ diff --git a/html/html/images/list-add.png b/html/html/images/list-add.png new file mode 100755 index 0000000000..1aa7f095c6 Binary files /dev/null and b/html/html/images/list-add.png differ diff --git a/html/html/images/list-remove.png b/html/html/images/list-remove.png new file mode 100755 index 0000000000..00b654e8ca Binary files /dev/null and b/html/html/images/list-remove.png differ diff --git a/html/html/images/mail-attachment.png b/html/html/images/mail-attachment.png new file mode 100755 index 0000000000..529bb7f554 Binary files /dev/null and b/html/html/images/mail-attachment.png differ diff --git a/html/html/images/mail-forward.png b/html/html/images/mail-forward.png new file mode 100755 index 0000000000..de0199b46a Binary files /dev/null and b/html/html/images/mail-forward.png differ diff --git a/html/html/images/mail-mark-junk.png b/html/html/images/mail-mark-junk.png new file mode 100755 index 0000000000..f12d452538 Binary files /dev/null and b/html/html/images/mail-mark-junk.png differ diff --git a/html/html/images/mail-mark-not-junk.png b/html/html/images/mail-mark-not-junk.png new file mode 100755 index 0000000000..87c425f92b Binary files /dev/null and b/html/html/images/mail-mark-not-junk.png differ diff --git a/html/html/images/mail-message-new.png b/html/html/images/mail-message-new.png new file mode 100755 index 0000000000..7c68cb8d35 Binary files /dev/null and b/html/html/images/mail-message-new.png differ diff --git a/html/html/images/mail-reply-all.png b/html/html/images/mail-reply-all.png new file mode 100755 index 0000000000..2017b0af0b Binary files /dev/null and b/html/html/images/mail-reply-all.png differ diff --git a/html/html/images/mail-reply-sender.png b/html/html/images/mail-reply-sender.png new file mode 100755 index 0000000000..a619741594 Binary files /dev/null and b/html/html/images/mail-reply-sender.png differ diff --git a/html/html/images/mail-send-receive.png b/html/html/images/mail-send-receive.png new file mode 100755 index 0000000000..3eb6a9ce3f Binary files /dev/null and b/html/html/images/mail-send-receive.png differ diff --git a/html/html/images/media-eject.png b/html/html/images/media-eject.png new file mode 100755 index 0000000000..2084067e94 Binary files /dev/null and b/html/html/images/media-eject.png differ diff --git a/html/html/images/media-flash.png b/html/html/images/media-flash.png new file mode 100755 index 0000000000..62b1ede989 Binary files /dev/null and b/html/html/images/media-flash.png differ diff --git a/html/html/images/media-floppy.png b/html/html/images/media-floppy.png new file mode 100755 index 0000000000..f1d7a19859 Binary files /dev/null and b/html/html/images/media-floppy.png differ diff --git a/html/html/images/media-optical.png b/html/html/images/media-optical.png new file mode 100755 index 0000000000..760de9386f Binary files /dev/null and b/html/html/images/media-optical.png differ diff --git a/html/html/images/media-playback-pause.png b/html/html/images/media-playback-pause.png new file mode 100755 index 0000000000..c8b4fe2251 Binary files /dev/null and b/html/html/images/media-playback-pause.png differ diff --git a/html/html/images/media-playback-start.png b/html/html/images/media-playback-start.png new file mode 100755 index 0000000000..a7de0feb09 Binary files /dev/null and b/html/html/images/media-playback-start.png differ diff --git a/html/html/images/media-playback-stop.png b/html/html/images/media-playback-stop.png new file mode 100755 index 0000000000..ede2815e59 Binary files /dev/null and b/html/html/images/media-playback-stop.png differ diff --git a/html/html/images/media-record.png b/html/html/images/media-record.png new file mode 100755 index 0000000000..2f66cdebbb Binary files /dev/null and b/html/html/images/media-record.png differ diff --git a/html/html/images/media-seek-backward.png b/html/html/images/media-seek-backward.png new file mode 100755 index 0000000000..ffcac31132 Binary files /dev/null and b/html/html/images/media-seek-backward.png differ diff --git a/html/html/images/media-seek-forward.png b/html/html/images/media-seek-forward.png new file mode 100755 index 0000000000..4d7e2cd40e Binary files /dev/null and b/html/html/images/media-seek-forward.png differ diff --git a/html/html/images/media-skip-backward.png b/html/html/images/media-skip-backward.png new file mode 100755 index 0000000000..94381f54fd Binary files /dev/null and b/html/html/images/media-skip-backward.png differ diff --git a/html/html/images/media-skip-forward.png b/html/html/images/media-skip-forward.png new file mode 100755 index 0000000000..758ec6f1b1 Binary files /dev/null and b/html/html/images/media-skip-forward.png differ diff --git a/html/html/images/multimedia-player.png b/html/html/images/multimedia-player.png new file mode 100755 index 0000000000..461e9de01f Binary files /dev/null and b/html/html/images/multimedia-player.png differ diff --git a/html/html/images/network-idle.png b/html/html/images/network-idle.png new file mode 100755 index 0000000000..0efee57e59 Binary files /dev/null and b/html/html/images/network-idle.png differ diff --git a/html/html/images/network-offline.png b/html/html/images/network-offline.png new file mode 100755 index 0000000000..1f210fc3e9 Binary files /dev/null and b/html/html/images/network-offline.png differ diff --git a/html/html/images/network-receive.png b/html/html/images/network-receive.png new file mode 100755 index 0000000000..b57c65c86a Binary files /dev/null and b/html/html/images/network-receive.png differ diff --git a/html/html/images/network-server.png b/html/html/images/network-server.png new file mode 100755 index 0000000000..068ffebee2 Binary files /dev/null and b/html/html/images/network-server.png differ diff --git a/html/html/images/network-transmit-receive.png b/html/html/images/network-transmit-receive.png new file mode 100755 index 0000000000..271d37d0f3 Binary files /dev/null and b/html/html/images/network-transmit-receive.png differ diff --git a/html/html/images/network-transmit.png b/html/html/images/network-transmit.png new file mode 100755 index 0000000000..08aa28b099 Binary files /dev/null and b/html/html/images/network-transmit.png differ diff --git a/html/html/images/network-wired.png b/html/html/images/network-wired.png new file mode 100755 index 0000000000..3ac6b35cb0 Binary files /dev/null and b/html/html/images/network-wired.png differ diff --git a/html/html/images/network-wireless-encrypted.png b/html/html/images/network-wireless-encrypted.png new file mode 100755 index 0000000000..12b572a5ac Binary files /dev/null and b/html/html/images/network-wireless-encrypted.png differ diff --git a/html/html/images/network-wireless.png b/html/html/images/network-wireless.png new file mode 100755 index 0000000000..2dc625071a Binary files /dev/null and b/html/html/images/network-wireless.png differ diff --git a/html/html/images/network-workgroup.png b/html/html/images/network-workgroup.png new file mode 100755 index 0000000000..5c140d838d Binary files /dev/null and b/html/html/images/network-workgroup.png differ diff --git a/html/html/images/network.png b/html/html/images/network.png new file mode 100755 index 0000000000..271d37d0f3 Binary files /dev/null and b/html/html/images/network.png differ diff --git a/html/html/images/office-calendar.png b/html/html/images/office-calendar.png new file mode 100755 index 0000000000..106a592e67 Binary files /dev/null and b/html/html/images/office-calendar.png differ diff --git a/html/html/images/package-x-generic.png b/html/html/images/package-x-generic.png new file mode 100755 index 0000000000..9015426153 Binary files /dev/null and b/html/html/images/package-x-generic.png differ diff --git a/html/html/images/preferences-desktop-accessibility.png b/html/html/images/preferences-desktop-accessibility.png new file mode 100755 index 0000000000..b365c274db Binary files /dev/null and b/html/html/images/preferences-desktop-accessibility.png differ diff --git a/html/html/images/preferences-desktop-assistive-technology.png b/html/html/images/preferences-desktop-assistive-technology.png new file mode 100755 index 0000000000..513d817ddc Binary files /dev/null and b/html/html/images/preferences-desktop-assistive-technology.png differ diff --git a/html/html/images/preferences-desktop-font.png b/html/html/images/preferences-desktop-font.png new file mode 100755 index 0000000000..18a014944a Binary files /dev/null and b/html/html/images/preferences-desktop-font.png differ diff --git a/html/html/images/preferences-desktop-keyboard-shortcuts.png b/html/html/images/preferences-desktop-keyboard-shortcuts.png new file mode 100755 index 0000000000..291dc1ac14 Binary files /dev/null and b/html/html/images/preferences-desktop-keyboard-shortcuts.png differ diff --git a/html/html/images/preferences-desktop-locale.png b/html/html/images/preferences-desktop-locale.png new file mode 100755 index 0000000000..5ef73a60b6 Binary files /dev/null and b/html/html/images/preferences-desktop-locale.png differ diff --git a/html/html/images/preferences-desktop-peripherals.png b/html/html/images/preferences-desktop-peripherals.png new file mode 100755 index 0000000000..2a63ceeade Binary files /dev/null and b/html/html/images/preferences-desktop-peripherals.png differ diff --git a/html/html/images/preferences-desktop-remote-desktop.png b/html/html/images/preferences-desktop-remote-desktop.png new file mode 100755 index 0000000000..b790f63422 Binary files /dev/null and b/html/html/images/preferences-desktop-remote-desktop.png differ diff --git a/html/html/images/preferences-desktop-screensaver.png b/html/html/images/preferences-desktop-screensaver.png new file mode 100755 index 0000000000..dc297db176 Binary files /dev/null and b/html/html/images/preferences-desktop-screensaver.png differ diff --git a/html/html/images/preferences-desktop-sound.png b/html/html/images/preferences-desktop-sound.png new file mode 100755 index 0000000000..2e5ba43c9b Binary files /dev/null and b/html/html/images/preferences-desktop-sound.png differ diff --git a/html/html/images/preferences-desktop-theme.png b/html/html/images/preferences-desktop-theme.png new file mode 100755 index 0000000000..fbea772cae Binary files /dev/null and b/html/html/images/preferences-desktop-theme.png differ diff --git a/html/html/images/preferences-desktop-wallpaper.png b/html/html/images/preferences-desktop-wallpaper.png new file mode 100755 index 0000000000..e7cc834c5e Binary files /dev/null and b/html/html/images/preferences-desktop-wallpaper.png differ diff --git a/html/html/images/preferences-desktop.png b/html/html/images/preferences-desktop.png new file mode 100755 index 0000000000..68f916c9d3 Binary files /dev/null and b/html/html/images/preferences-desktop.png differ diff --git a/html/html/images/preferences-system-network-proxy.png b/html/html/images/preferences-system-network-proxy.png new file mode 100755 index 0000000000..bdeb79d86a Binary files /dev/null and b/html/html/images/preferences-system-network-proxy.png differ diff --git a/html/html/images/preferences-system-session.png b/html/html/images/preferences-system-session.png new file mode 100755 index 0000000000..35f8b5711a Binary files /dev/null and b/html/html/images/preferences-system-session.png differ diff --git a/html/html/images/preferences-system-windows.png b/html/html/images/preferences-system-windows.png new file mode 100755 index 0000000000..596caf9486 Binary files /dev/null and b/html/html/images/preferences-system-windows.png differ diff --git a/html/html/images/preferences-system.png b/html/html/images/preferences-system.png new file mode 100755 index 0000000000..9460dfc746 Binary files /dev/null and b/html/html/images/preferences-system.png differ diff --git a/html/html/images/printer-error.png b/html/html/images/printer-error.png new file mode 100755 index 0000000000..21d4dedff9 Binary files /dev/null and b/html/html/images/printer-error.png differ diff --git a/html/html/images/printer.png b/html/html/images/printer.png new file mode 100755 index 0000000000..12a4e39dd3 Binary files /dev/null and b/html/html/images/printer.png differ diff --git a/html/html/images/process-stop.png b/html/html/images/process-stop.png new file mode 100755 index 0000000000..ab6808fba5 Binary files /dev/null and b/html/html/images/process-stop.png differ diff --git a/html/html/images/process-working.png b/html/html/images/process-working.png new file mode 100755 index 0000000000..984bde41de Binary files /dev/null and b/html/html/images/process-working.png differ diff --git a/html/html/images/start-here.png b/html/html/images/start-here.png new file mode 100755 index 0000000000..bd516a54c5 Binary files /dev/null and b/html/html/images/start-here.png differ diff --git a/html/html/images/system-file-manager.png b/html/html/images/system-file-manager.png new file mode 100755 index 0000000000..60cade46c9 Binary files /dev/null and b/html/html/images/system-file-manager.png differ diff --git a/html/html/images/system-installer.png b/html/html/images/system-installer.png new file mode 100755 index 0000000000..d16abcbde7 Binary files /dev/null and b/html/html/images/system-installer.png differ diff --git a/html/html/images/system-lock-screen.png b/html/html/images/system-lock-screen.png new file mode 100755 index 0000000000..f7ea0cd229 Binary files /dev/null and b/html/html/images/system-lock-screen.png differ diff --git a/html/html/images/system-log-out.png b/html/html/images/system-log-out.png new file mode 100755 index 0000000000..0010931e2c Binary files /dev/null and b/html/html/images/system-log-out.png differ diff --git a/html/html/images/system-search.png b/html/html/images/system-search.png new file mode 100755 index 0000000000..fd7f0b07a5 Binary files /dev/null and b/html/html/images/system-search.png differ diff --git a/html/html/images/system-shutdown.png b/html/html/images/system-shutdown.png new file mode 100755 index 0000000000..afe62deec0 Binary files /dev/null and b/html/html/images/system-shutdown.png differ diff --git a/html/html/images/system-software-update.png b/html/html/images/system-software-update.png new file mode 100755 index 0000000000..58f19c68b0 Binary files /dev/null and b/html/html/images/system-software-update.png differ diff --git a/html/html/images/system-users.png b/html/html/images/system-users.png new file mode 100755 index 0000000000..9d2d500813 Binary files /dev/null and b/html/html/images/system-users.png differ diff --git a/html/html/images/tab-new.png b/html/html/images/tab-new.png new file mode 100755 index 0000000000..3e590f6fe7 Binary files /dev/null and b/html/html/images/tab-new.png differ diff --git a/html/html/images/text-html.png b/html/html/images/text-html.png new file mode 100755 index 0000000000..53014ab153 Binary files /dev/null and b/html/html/images/text-html.png differ diff --git a/html/html/images/text-x-generic-template.png b/html/html/images/text-x-generic-template.png new file mode 100755 index 0000000000..a0cc462f41 Binary files /dev/null and b/html/html/images/text-x-generic-template.png differ diff --git a/html/html/images/text-x-generic.png b/html/html/images/text-x-generic.png new file mode 100755 index 0000000000..2d7f2d6017 Binary files /dev/null and b/html/html/images/text-x-generic.png differ diff --git a/html/html/images/text-x-script.png b/html/html/images/text-x-script.png new file mode 100755 index 0000000000..c923098eac Binary files /dev/null and b/html/html/images/text-x-script.png differ diff --git a/html/html/images/user-desktop.png b/html/html/images/user-desktop.png new file mode 100755 index 0000000000..4c9787cc48 Binary files /dev/null and b/html/html/images/user-desktop.png differ diff --git a/html/html/images/user-home.png b/html/html/images/user-home.png new file mode 100755 index 0000000000..13d2c00d08 Binary files /dev/null and b/html/html/images/user-home.png differ diff --git a/html/html/images/user-trash-full.png b/html/html/images/user-trash-full.png new file mode 100755 index 0000000000..695d215a7e Binary files /dev/null and b/html/html/images/user-trash-full.png differ diff --git a/html/html/images/user-trash.png b/html/html/images/user-trash.png new file mode 100755 index 0000000000..0e0953c73c Binary files /dev/null and b/html/html/images/user-trash.png differ diff --git a/html/html/images/utilities-system-monitor.png b/html/html/images/utilities-system-monitor.png new file mode 100755 index 0000000000..8734e777a1 Binary files /dev/null and b/html/html/images/utilities-system-monitor.png differ diff --git a/html/html/images/utilities-terminal.png b/html/html/images/utilities-terminal.png new file mode 100755 index 0000000000..c5b797a7df Binary files /dev/null and b/html/html/images/utilities-terminal.png differ diff --git a/html/html/images/video-display.png b/html/html/images/video-display.png new file mode 100755 index 0000000000..a73a169ac5 Binary files /dev/null and b/html/html/images/video-display.png differ diff --git a/html/html/images/video-x-generic.png b/html/html/images/video-x-generic.png new file mode 100755 index 0000000000..64e7a30758 Binary files /dev/null and b/html/html/images/video-x-generic.png differ diff --git a/html/html/images/view-fullscreen.png b/html/html/images/view-fullscreen.png new file mode 100755 index 0000000000..ffdabd4e97 Binary files /dev/null and b/html/html/images/view-fullscreen.png differ diff --git a/html/html/images/view-refresh.png b/html/html/images/view-refresh.png new file mode 100755 index 0000000000..3fd71d6e59 Binary files /dev/null and b/html/html/images/view-refresh.png differ diff --git a/html/html/images/weather-clear-night.png b/html/html/images/weather-clear-night.png new file mode 100755 index 0000000000..4345752699 Binary files /dev/null and b/html/html/images/weather-clear-night.png differ diff --git a/html/html/images/weather-clear.png b/html/html/images/weather-clear.png new file mode 100755 index 0000000000..7dc15ea96e Binary files /dev/null and b/html/html/images/weather-clear.png differ diff --git a/html/html/images/weather-few-clouds-night.png b/html/html/images/weather-few-clouds-night.png new file mode 100755 index 0000000000..d69efec981 Binary files /dev/null and b/html/html/images/weather-few-clouds-night.png differ diff --git a/html/html/images/weather-few-clouds.png b/html/html/images/weather-few-clouds.png new file mode 100755 index 0000000000..0e633a38f4 Binary files /dev/null and b/html/html/images/weather-few-clouds.png differ diff --git a/html/html/images/weather-overcast.png b/html/html/images/weather-overcast.png new file mode 100755 index 0000000000..0045129b87 Binary files /dev/null and b/html/html/images/weather-overcast.png differ diff --git a/html/html/images/weather-severe-alert.png b/html/html/images/weather-severe-alert.png new file mode 100755 index 0000000000..98e9f6c1d0 Binary files /dev/null and b/html/html/images/weather-severe-alert.png differ diff --git a/html/html/images/weather-showers-scattered.png b/html/html/images/weather-showers-scattered.png new file mode 100755 index 0000000000..8d10d844cd Binary files /dev/null and b/html/html/images/weather-showers-scattered.png differ diff --git a/html/html/images/weather-showers.png b/html/html/images/weather-showers.png new file mode 100755 index 0000000000..d9685d242b Binary files /dev/null and b/html/html/images/weather-showers.png differ diff --git a/html/html/images/weather-snow.png b/html/html/images/weather-snow.png new file mode 100755 index 0000000000..a83d855981 Binary files /dev/null and b/html/html/images/weather-snow.png differ diff --git a/html/html/images/weather-storm.png b/html/html/images/weather-storm.png new file mode 100755 index 0000000000..feebe1d4e2 Binary files /dev/null and b/html/html/images/weather-storm.png differ diff --git a/html/html/images/window-new.png b/html/html/images/window-new.png new file mode 100755 index 0000000000..0e12ef954c Binary files /dev/null and b/html/html/images/window-new.png differ diff --git a/html/html/images/x-office-address-book.png b/html/html/images/x-office-address-book.png new file mode 100755 index 0000000000..f3b5d9d98c Binary files /dev/null and b/html/html/images/x-office-address-book.png differ diff --git a/html/html/images/x-office-calendar.png b/html/html/images/x-office-calendar.png new file mode 100755 index 0000000000..f6978d7d3b Binary files /dev/null and b/html/html/images/x-office-calendar.png differ diff --git a/html/html/images/x-office-document-template.png b/html/html/images/x-office-document-template.png new file mode 100755 index 0000000000..d1d9e7c12b Binary files /dev/null and b/html/html/images/x-office-document-template.png differ diff --git a/html/html/images/x-office-document.png b/html/html/images/x-office-document.png new file mode 100755 index 0000000000..d18082e397 Binary files /dev/null and b/html/html/images/x-office-document.png differ diff --git a/html/html/images/x-office-drawing-template.png b/html/html/images/x-office-drawing-template.png new file mode 100755 index 0000000000..dc384dba13 Binary files /dev/null and b/html/html/images/x-office-drawing-template.png differ diff --git a/html/html/images/x-office-drawing.png b/html/html/images/x-office-drawing.png new file mode 100755 index 0000000000..ffbb9e4071 Binary files /dev/null and b/html/html/images/x-office-drawing.png differ diff --git a/html/html/images/x-office-presentation-template.png b/html/html/images/x-office-presentation-template.png new file mode 100755 index 0000000000..d90d034a5d Binary files /dev/null and b/html/html/images/x-office-presentation-template.png differ diff --git a/html/html/images/x-office-presentation.png b/html/html/images/x-office-presentation.png new file mode 100755 index 0000000000..f7ea302453 Binary files /dev/null and b/html/html/images/x-office-presentation.png differ diff --git a/html/html/images/x-office-spreadsheet-template.png b/html/html/images/x-office-spreadsheet-template.png new file mode 100755 index 0000000000..e8bf570cc0 Binary files /dev/null and b/html/html/images/x-office-spreadsheet-template.png differ diff --git a/html/html/images/x-office-spreadsheet.png b/html/html/images/x-office-spreadsheet.png new file mode 100755 index 0000000000..a6b1268d35 Binary files /dev/null and b/html/html/images/x-office-spreadsheet.png differ diff --git a/langs/de/cgi-bin/de.pl b/langs/de/cgi-bin/de.pl index 1e00b61597..9ff82e080a 100644 --- a/langs/de/cgi-bin/de.pl +++ b/langs/de/cgi-bin/de.pl @@ -1570,6 +1570,81 @@ 'you can only define one roadwarrior connection when using pre-shared key authentication' => 'Sie können nur eine Roadwarrior Verbindung definieren, wenn die Pre-shared Schlüsselauthentifizierung verwendet wird.
Entweder haben Sie bereits eine Roadwarrior Verbindung mit Pre-shared Schlüsselauthentifizierung, oder Sie versuchen gerade eine hinzuzufügen.', 'your department' => 'Ihre Abteilung', 'your e-mail' => 'Ihre E-mail Adresse', +'samba' => 'Samba', +'all services' => 'Alle Dienste', +'basic options' => 'Basisoptionen', +'workgroup' => 'Arbeitsgruppe', +'netbios name' => 'Netbios Name', +'server string' => 'Server String', +'log level' => 'Log Level', +'interfaces' => 'Interfaces', +'more' => 'weitere', +'security options' => 'Sicherheitsoptionen', +'security' => 'Sicherheit', +'map to guest' => 'Map to Guest', +'unix password sync' => 'Unix Password Sync', +'network options' => 'Netzwerk Optionen', +'os level' => 'OS Level', +'remote announce' => 'Remote Announce', +'wins server' => 'Wins Server', +'wins support' => 'Wins Support', +'local master' => 'Local Master', +'domain master' => 'Domain Master', +'prefered master' => 'Prefered Master', +'pdc options' => 'PDC Optionen', +'save' => 'Speichern', +'reset' => 'Zurück setzen', +'caption' => 'Legende', +'save settings' => 'Einstellungen speichern', +'restore settings' => 'Einstellungen wiederherstellen', +'accounting user pdc' => 'Benutzerverwaltung - PDC Modus', +'accounting user nonpdc' => 'Benutzerverwaltung - kein PDC Modus', +'accounting' => 'Benutzerverwaltung', +'set' => 'gesetzt', +'not set' => 'nicht gesetzt', +'user' => 'Benutzer', +'pc' => 'PC', +'activate' => 'aktivieren', +'deactivate' => 'deaktivieren', +'add user' => 'Benutzer anlegen', +'add pc' => 'PC anlegen', +'delete user' => 'Benutzer löschen', +'delete pc' => 'PC löschen', +'activate user' => 'Benutzer aktivieren', +'deactivate user' => 'Benutzer deaktivieren', +'save config' => 'Einstellungen speichern', +'unix group' => ' UNIX Benutzergruppe', +'unix shell' => 'UNIX Shell', +'client' => 'PC Name', +'shares' => 'Freigaben', +'sharename' => 'Freigabename', +'manage shares' => 'Freigaben verwalten', +'add share' => 'Freigabe anlegen', +'edit share' => 'Freigabe bearbeiten', +'reset shares' => 'Freigaben zurücksetzen', +'delete share' => 'Freigabe löschen', +'show share options' => 'Anzeige der Freigabeeinstellungen', +'change share' => 'Freigabeeinstellungen ändern', +'meaning' => 'Bedeutung', +'exampel' => 'Beispiel', +'my new share' => 'Meine neue Freigabe', +'path to directory' => 'Pfad zur Freigabe', +'directory writeable' => 'Verzeichnis schreibbar', +'visible in browselist' => 'Sichtbar in der Verzeichnisliste', +'host allow' => 'Liste der Zugriffsberechtigten', +'host deny' => 'Liste der nicht Zugriffsberechtigten', +'read list' => 'Liste der Leseberechtigten', +'admin users' => 'Liste der Benutzer mit Super User Rechten', +'invalid users' => 'Liste mit Benutzern denen der Zugriff untersagt ist', +'force user' => 'Standartbenutzer für das UNIX Dateisystem', +'directory mask' => 'UNIX Verzeichnis Rechte', +'create mask' => 'UNIX Rechte für neue Dateien', +'guest ok' => 'Gastzugang gewähren', +'samba status' => 'Samba Status', +'log view' => 'Log Anzeige', +'show last x lines' => 'die letzten x Zeilen anzeigen', +'view log' => 'Log anzeigen', +'no log selected' => 'kein Log ausgewählt', ); #EOF diff --git a/langs/en/cgi-bin/en.pl b/langs/en/cgi-bin/en.pl index fe1cfd5c0c..21cdfde3e7 100644 --- a/langs/en/cgi-bin/en.pl +++ b/langs/en/cgi-bin/en.pl @@ -1579,6 +1579,81 @@ 'you can only define one roadwarrior connection when using pre-shared key authentication' => 'You can only define one Roadwarrior connection when using pre-shared key authentication.
Either you already have a Roadwarrior connection with pre-shared key authentication, or you\'re trying to add one now.', 'your department' => 'Your Department', 'your e-mail' => 'Your E-mail Address', +'samba' => 'Samba', +'all services' => 'All Services', +'basic options' => 'Basic Options', +'workgroup' => 'Workgroup', +'netbios name' => 'Netbios Name', +'server string' => 'Server String', +'log level' => 'Log Level', +'interfaces' => 'Interfaces', +'more' => 'more', +'security options' => 'Security Options', +'security' => 'Security', +'map to guest' => 'Map to Guest', +'unix password sync' => 'Unix Password Sync', +'network options' => 'Network Options', +'os level' => 'OS Level', +'remote announce' => 'Remote Announce', +'wins server' => 'Wins Server', +'wins support' => 'Wins Support', +'local master' => 'Local Master', +'domain master' => 'Domain Master', +'prefered master' => 'Prefered Master', +'pdc options' => 'PDC Options', +'save' => 'Save', +'reset' => 'Reset', +'caption' => 'Caption', +'save settings' => 'Save Settings', +'restore settings' => 'Reset Settings', +'accounting user pdc' => 'Accounting - PDC Mode', +'accounting user nonpdc' => 'Accounting - none PDC Mode', +'accounting' => 'Accounting', +'set' => 'set', +'not set' => 'not set', +'user' => 'User', +'pc' => 'Workstatipon', +'activate' => 'activate', +'deactivate' => 'deactivate', +'add user' => 'add User', +'add pc' => 'add workstation', +'delete user' => 'delete User', +'delete pc' => 'delete workstation', +'activate user' => 'activate user', +'deactivate user' => 'deactivate user', +'save config' => 'save settings', +'unix group' => ' UNIX usergroup', +'unix shell' => 'UNIX Shell', +'client' => 'Workstation Name', +'shares' => 'Shares', +'sharename' => 'Sharename', +'manage shares' => 'manage shares', +'add share' => 'add share', +'edit share' => 'edit share', +'reset shares' => 'reset share', +'delete share' => 'delete share', +'show share options' => 'show shares options', +'change share' => 'edit share options', +'meaning' => 'meaning', +'exampel' => 'exampel', +'my new share' => 'My new share', +'path to directory' => 'path to share', +'directory writeable' => 'directory writeable', +'visible in browselist' => 'visible in browselist', +'host allow' => 'list with allowed hosts', +'host deny' => 'list with denied hosts', +'read list' => 'list with readonly hosts', +'admin users' => 'user with superuser rights', +'invalid users' => 'list with users denied to access', +'force user' => 'force all new file to user', +'directory mask' => 'UNIX directory rights', +'create mask' => 'UNIX rights for new created files', +'guest ok' => 'allow guests to access', +'samba status' => 'Samba Status', +'log view' => 'log view', +'show last x lines' => 'show last x lines', +'view log' => 'view log', +'no log selected' => 'no log selected', ); #EOF diff --git a/src/misc-progs/sambactrl.c b/src/misc-progs/sambactrl.c index d6964b58fb..c598cb0e3d 100644 --- a/src/misc-progs/sambactrl.c +++ b/src/misc-progs/sambactrl.c @@ -74,20 +74,31 @@ int main(int argc, char *argv[]) return 0; } - if (strcmp(argv[1], "smbrestart")==0) + if (strcmp(argv[1], "smbstop")==0) { + safe_system("/etc/rc.d/init.d/samba stop"); + printf(command); return 0; } - if (strcmp(argv[1], "smbstop")==0) + if (strcmp(argv[1], "smbstart")==0) { + safe_system("/etc/rc.d/init.d/samba start"); + printf(command); return 0; } - if (strcmp(argv[1], "smbstart")==0) + if (strcmp(argv[1], "smbrestart")==0) { - snprintf(command, BUFFER_SIZE-1, "smbd -D && nmbd -D && winbindd -D",); - safe_system(command); + safe_system("/etc/rc.d/init.d/samba restart"); + printf(command); + return 0; + } + + if (strcmp(argv[1], "smbreload")==0) + { + safe_system("/etc/rc.d/init.d/samba reload"); + printf(command); return 0; }

Loganzeige
$Lang::tr{'log view'}

anzeige der letzen x Zeilen
$Lang::tr{'show last x lines'}

$Log