#!/bin/sh # KDECA v0.1a # # Autor: Sergi Coll (sergi@sim00.net ) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. # # # Script per descarregar les fonts de l'idioma Català del CVS de KDE # # Script creat a partir d'un missatge de Sebastià Pla i Sanz # a la llista kde-i18n-ca@mail.kde.org # 1.Creeu un directori i poseu-vos a dintre. if [ ! -d ~/kdecvs ]; then mkdir kdecvs fi cd ~/kdecvs export CVSROOT=:pserver:anonymous@anoncvs.kde.org:/home/kde cvs login # 2. Baixeu les fonts del català i les plantilles if [ ! -d ~/kdecvs/kde-i18n/ca ]; then cvs -z4 checkout kde-i18n/ca else cvs -z4 update kde-i18n/ca fi if [ ! -d ~/kdecvs/kde-i18n/templates ]; then cvs -z4 checkout kde-i18n/templates else cvs -z4 update kde-i18n/templates fi cvs logout