* added some translatable strings

* NEWS file added
* autogen.sh script added
This commit is contained in:
ela 2003-11-23 14:49:01 +00:00
parent 553dcdc66c
commit e84aa2293a
6 changed files with 87 additions and 9 deletions

View File

@ -2,7 +2,7 @@
SUBDIRS = qucs
EXTRA_DIST = qucs.kdevprj admin AUTHORS COPYING ChangeLog INSTALL README TODO qucs.lsm qucs.spec
EXTRA_DIST = qucs.kdevprj admin AUTHORS COPYING ChangeLog INSTALL README TODO qucs.lsm qucs.spec NEWS autogen.sh
####### kdevelop will overwrite this part!!! (end)############
# not a GNU package. You can remove this line, if

29
NEWS Normal file
View File

@ -0,0 +1,29 @@
--
-- NEWS
--
-- Copyright (C) 2003 Stefan Jahn <stefan@lkcc.org>
--
-- This 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, or (at your option)
-- any later version.
--
-- This software 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 package; see the file COPYING. If not, write to
-- the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-- Boston, MA 02111-1307, USA.
--
This file lists user visible changes that were made between releases. For
more verbose descriptions of these and internal changes see the ChangeLog
files.
Version 0.0.1
-------------
* first available version

48
autogen.sh Executable file
View File

@ -0,0 +1,48 @@
#! /bin/sh
#
# autogen.sh
#
# Run this script to re-generate all maintainer-generated files.
#
# Copyright (C) 2003 Stefan Jahn <stefan@lkcc.org>
#
# This 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, or (at your option)
# any later version.
#
# This software 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 package; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
#
here=`pwd`
cd `dirname $0`
echo "*** Creating config.h.in"
autoheader
sh admin/cvs.sh cvs
#
# run configure, maybe with parameters recorded in config.status
#
if [ -r config.status ]; then
# Autoconf 2.13
CMD=`awk '/^#.*\/?configure .*/ { $1 = ""; print; exit }' < config.status`
if test "x$CMD" = "x" ; then
# Autoconf 2.5x
CMD=`grep "with options" < config.status | \
sed 's/[^"]*["]\([^"]*\)["]/\1/' | sed 's/\\\//g' | sed "s/'//g"`
CMD="./configure $CMD"
fi
else
CMD="./configure --enable-maintainer-mode"
fi
echo "Running $CMD $@ ..."
$CMD "$@"

View File

@ -13,6 +13,7 @@ AC_CANONICAL_SYSTEM
dnl Automake doc recommends to do this only here. (Janos)
AM_INIT_AUTOMAKE(qucs,0.0.1)
AM_MAINTAINER_MODE
dnl Release specific.
dnl AC_CONFIG_SUBDIRS(qucs-sp)

View File

@ -490,16 +490,16 @@ void QucsApp::initView()
// "Project Tab" of the left QTabWidget
QVBox *ProjGroup = new QVBox(this);
QHBox *ProjButts = new QHBox(ProjGroup);
QPushButton *ProjNew = new QPushButton("New",ProjButts);
QPushButton *ProjNew = new QPushButton(tr("New"),ProjButts);
connect(ProjNew, SIGNAL(clicked()), SLOT(slotProjNewButt()));
QPushButton *ProjOpen = new QPushButton("Open",ProjButts);
QPushButton *ProjOpen = new QPushButton(tr("Open"),ProjButts);
connect(ProjOpen, SIGNAL(clicked()), SLOT(slotProjOpenButt()));
QPushButton *ProjDel = new QPushButton("Delete",ProjButts);
QPushButton *ProjDel = new QPushButton(tr("Delete"),ProjButts);
connect(ProjDel, SIGNAL(clicked()), SLOT(slotProjDelButt()));
Projects = new QListBox(ProjGroup);
TabView->addTab(ProjGroup, "Projects");
TabView->setTabToolTip(TabView->page(0), "content of the project directory");
TabView->addTab(ProjGroup, tr("Projects"));
TabView->setTabToolTip(TabView->page(0), tr("content of the project directory"));
connect(Projects, SIGNAL(doubleClicked(QListBoxItem*)), SLOT(slotOpenProject(QListBoxItem*)));
@ -508,8 +508,8 @@ void QucsApp::initView()
Content = new QListView(this);
Content->setRootIsDecorated(true); // root items should have open/close decoration to their left
Content->setSorting(-1); // no sorting
Content->addColumn("Content of");
Content->addColumn("Note");
Content->addColumn(tr("Content of"));
Content->addColumn(tr("Note"));
Content->setColumnWidthMode(0,QListView::Manual);
Content->setColumnWidth(0, 150);

View File

@ -78,7 +78,7 @@ QucsDoc::QucsDoc(QTabBar *b, const QString& _Name)
PosX=PosY=0;
DocName = _Name;
if(_Name.isEmpty()) Tab = new QTab("untitled");
if(_Name.isEmpty()) Tab = new QTab(QObject::tr("untitled"));
else {
QFileInfo Info(DocName);
Tab = new QTab(Info.fileName());