Translations anyone?
I might be jumping the gun here but I thought I'd volounteer to translate documentation related to haiku or beos in any way. Everything from coding guidelines to usermanuals, just give me a shout :D
Keep up the good work guys
*d'oh* Forgot to mention which languages :oops: Swedish and english

Comments
Portuguese Translation offered.
Hi. I could also do and maintain a Portuguese Translation of anything.
I can translate from English to Portuguese as I'm fluent in both languages.
Just mail me if you need me (or post here instead.)
Long live obos ooops.. Haiku!
Doc in SPANISH
Hi there,
Im a Linux Sysadmin and I was and old BeOS user in the past.
Please feel to ask for translations or collaboration in spanish
Im peruvian and of course, my native language is spanish, with a very fluent english and quite portuguese.
Best regards/Saludos
MARTIN GARCIA
www.martintoy.4t.com
this is something that needs translations.
here's the location of the Newbie Help Files ... http://haiku-os.org/downloads.php?id=6
translate to your hearts content! :-)
hopefully this'll spark more people to contribute more Newbie Help Files ( or kurtis posting them ;) )
Translation to Spanish
Iôm interesting in translate docs to Spanish. I do prefer translate tech docs of file systems, programming ralated topics, rather than user manuals.
In strong in C programming and UNIX/Linux
re: Piojo
this may suit your taste better.
http://www.beclan.org/tutorial.php
Right now there's only one tutorial on creating replicants.
Translations anyone?
Hey there,
I kinda got no clue about BeOS or Haiku, but I think I can translate some docs from english to german, and I think I'll learn quite a bit about Haiku by doing that :)
I'm gonna start with the newbie files this week, and opst them around here (or send them to someone if you want to)
regards,
TDL
Translations anyone?
Sounds like a great plan : )
How're you for converting German -> English ?
I know Technoids are looking for translators to convert their magazines into English; and I for one would love to read them.
http://www.technoids.de/download.php?language=uk
Translations anyone?
i think i could do that quite well...but lets see how well i can translate english->german, and then the other way round (I'm german ;) )
I'm afraid I won't know some special vocabulary in english (I'm 15 years old :D ) but that will get better as i translate from english to german, i hope.
Long story short, I'll for now concentrate on translating from english to german (I'm sure there's enough to do), learning the english special vocabulary, and then we'll see.
Translations anyone?
ookay, first one done, the networking kit tutorial:
Hallo, ich habe mich entschieden, schlesi's Tutorial zum Haiku networking kit zu übersetzen. Das ist meine erste ÃÅbersetzung in dieser Richtung, also lasst bitte Nachsicht walten. Für konstruktive Kritik bin ich aber immer offen :) 1. Die neuesten Binaries besorgen Ihr könnt sie unter http://www.haiku-os.org/factory/packages/haiku-networkingkit-cvs.zip runterladen. Entpackt die Daten auf euren Desktop (/boot/home/Desktop). 2. Installation Zuerst solltet ihr einige Dateien speichern, die überschrieben werden werden. Falls etwas schief geht, könnt ihr das "alte" networking kit wiederherstellen. Ãâffnet nun die "Terminal"- Anwendung (ihr findet sie unter Applications/Accessories) und schreibt folgendes: cd /boot/beos/etc mkdir sav cp services sav cd /boot/beos/bin mkdir sav cp ping sav cd /boot/beos/system/lib mkdir sav cp libnet.so sav cp libnetapi.so sav Falls ihr später euer Haiku networking kit updated, dürft (u.U. auch "müsst" - bin mir bei der ÃÅbersetzung nicht sicher, sorry; da stand "must not") ihr dies nicht nochmal machen. Jetzt kopiert ihr die neuen Dateien in die entsprechenden Ordner: cd /boot/home/Desktop/haiku-networkingkit/etc mv * /boot/beos/etc cd ../lib mv * /boot/beos/system/lib cd .. mv arp ifconfig ping pppconfig route traceroute /boot/beos/bin 3. Konfiguration Es gibt eine GUI zum Konfigurieren des Netzwerks ("Network"), allerdings funktioniert diese anscheinend nicht, also werden wir es manuell machen ;) Folgendes ist die Konfiguration des Autors, die er hier als Beispiel benutzt. Wenn eure Werte anders sind, ändert die nächsten Zeilen entsprechend. IP-Address of my BeOS machine: 192.168.2.102 Subnet mask of my BeOS machine: 255.255.255.0 IP-Address of my router: 192.168.2.1 Address of my DNS-server: 192.168.2.1 Die ethernet-Karte des Autors heißt "sis9000". Wenn ihr euch nicht sicher, schreibt im Terminal "ifconfig -a" . Die Buchstaben vor dem ersten Komma sind der Name eurer ethernet-Karte. In diesem Beispiel müsst ihr folgendes schreiben, um die ethernet-Karte zu konfigurieren (ihr müsst wie gesagt u. U. eure eigenen Daten einfügen): ifconfig sis9000 192.168.2.102 netmask 255.255.255.0 up route add default 192.168.2.1 ABER: BeOS "vergisst" diese Einstellungen nach dem Herunterfahren, also solltet ihr sie in ein shell script schreiben: Schreibt im Terminal: vi /boot/home/netconf.sh Drückt Esc, dann "i". Schreibt "#!/bin/sh" und drückt Return, dann schreibt den Text von oben noch einmal (ifconfig...) Danach noch einmal Esc drücken, und dann ":wq!" eingeben. Als letztes gebt ihr "chmod +x /boot/home/netconf.sh" ein. Der Letzte Schritt ist, einen Eintrag für euren DNS-Server zu erzeugen: Schreibt im Terminal: vi /boot/beos/etc/resolv.conf Wählt mit den Pfeiltasten die letzte Zeile nach dem Wort "nameserver" aus, drückt Esc, dann "i". Schreibt die Adresse eures DNS-Servers (in unserem Beispiel 192.168.2.1) Drückt Esc, dann tippt ein letztes Mal ":wq!" Startet euren Rechner neu. Nach dem Reboot öffnet ihr ein Terminal und schreibt "netconf.sh". Das müsst ihr nach jedem Reboot tun, um eine Netzwerkverbindung zu bekommen!! Das Netzwerk sollte nun bereit und nutzbar sein. Ihr könnt es zum Beispiel testen, indem ihr "ping www.yahoo.com" im Terminal schreibt. Wenn der Ping erwidert wird, ist alles in Ordnung, wenn nicht, wiederholt die oberen Schritte _sorgfältig_. Tipp: Wie auch in anderen Betriebssystemen, könnt ihr eine "hosts"-Datei benutzen. Ihr könnt sie mit vi erstellen (vi [dateiort]/[dateiname]). Die Datei muss sich im Ordner /boot/beos/etc. befinden. Starten des Mail-daemons Ihr müsst den Mail-daemon nach jedem Boot manuell starten, da nach dem Boot keine gültigen Netzwerkeinstellungen vorhanden sind (siehe oben - man muss das shell script mit den Konfigurationen ebenfalls nach jedem Boot manuell starten). Ihr könnt den Mail-daemon über das Terminal starten, indem ihr folgendes eingebt: /boot/beos/system/servers/mail_daemon & Optional: Wiederherstellen der alten Dateien Wenn ihr mit dem Haiku networking kit Probleme habt, könnt ihr euer System mit folgenden Befehlen wieder in den Ausgangszustand versetzen: cd /boot/beos/etc cp ./sav/services . cd /boot/beos/bin cp ./sav/ping . cd /boot/beos/system/lib cp ./sav/lib* . Jetzt noch ein Reboot, und alles ist wieder beim Alten ACHTUNG: Schreibt NIEMALS ein "ifconfig" "route"in das Bootscript des Systems ("/boot/home/config/boot/UserBootscript")! Auf dem Rechner des Autors führte das in Verbindung mit dem networking kit dazu, dass der Rechner abstürzte! Original geschrieben von schlesi, übersetzt von TDLTranslations anyone?
second newbie file done, tell me if something is wrong or anything else you want to tell me :D
Translations anyone?
what sense did THAT have?
Translations anyone?
It's just spam - note the spammed URL in the sig line (please don't click it)
Also, there's a similar URL in his profile.
There were several posts made throughout the forums with useless statements.
Translations anyone?
I'm going to translate the final Documentation document into Polish, because as everyone knows, there are lots of "patches" into the documentation, while developing it.