Initial import of export function

This commit is contained in:
Lars Kneschke 2007-03-08 11:25:09 +00:00
parent 171f3730ce
commit 71322e96d1
6 changed files with 74 additions and 23 deletions

File diff suppressed because one or more lines are too long

View File

@ -2,52 +2,34 @@
2 years ago timesheet sv 2 år tidigare
3 years ago timesheet sv 3 år tidigare
actions timesheet sv Åtgärder
all projects timesheet sv Alla projekt
both: allow to use projectmanager and free project-names admin sv Både: tillåt användandet av Projekt Hantering och egna projekt namn
by timesheet sv av
create new links timesheet sv Skapa ny länk
creating new entry timesheet sv Skapar ny post
delete this entry timesheet sv Radera posten
edit this entry timesheet sv Ändra post
empty if identical to duration timesheet sv Tom om identisk med varaktighet
end timesheet sv Slutet
entry deleted timesheet sv Posten raderad
entry saved timesheet sv Posten sparad
error deleting the entry!!! timesheet sv Fel uppstod vid radering av posten!
error saving the entry!!! timesheet sv Fel uppstod vid sparandet av posten!
existing links timesheet sv Nuvarande länkar
field must not be empty !!! timesheet sv Fältet får inte vara tomt!
full: use only projectmanager admin sv Helt: använd bara Projekthantering
general timesheet sv Allmänt
last modified timesheet sv Senast ändrad
last month timesheet sv Förra månaden
last week timesheet sv Förra veckan
last year timesheet sv Förra året
leave it empty for a full week timesheet sv Lämna tomt för hel vecka
links timesheet sv Länkar
no details timesheet sv Inga detaljer
no project timesheet sv Inga projekt
none: use only free project-names admin sv Ingen: använd bara egna projekt namn
or endtime timesheet sv eller Slutdatum
permission denied!!! timesheet sv Åtkomst nekad!
price timesheet sv Pris
projectmanager integration admin sv Projekt Hanterare integration
quantity timesheet sv Antal
save & new timesheet sv Spara och skapa ny
saves the changes made timesheet sv Spara ändringar
saves this entry and add a new one timesheet sv Spara och skapa ny
select a price timesheet sv Välj pris
select a project timesheet sv Välj projekt
start timesheet sv Påbörja
starttime timesheet sv Startdatum
starttime has to be before endtime !!! timesheet sv Startdatum måste vara före slutdatum!
sum %1: timesheet sv Summa %1:
this month timesheet sv Denna månad
this week timesheet sv Denna vecka
this year timesheet sv Detta år
timesheet common sv Tidhantering
unitprice timesheet sv Pris per antal
view this entry timesheet sv Visa posten
week timesheet sv Vecka
yesterday timesheet sv Igår
your database is not up to date (%1 vs. %2), please run %3setup%4 to update your database. timesheet sv Din databas är inte uppdaterat (%1 mot %2), var god och kör %3installationen%4 för att uppdatera databasen.
your database is not up to date (%1 vs. %2), please run %3setup%4 to update your database. timesheet sv Ditt data är inte uppdaterat (%1 mot %2), var god och kör %3installationen%4 och uppdatera databasen.

View File

@ -39,7 +39,6 @@ select a price timesheet zh-tw 選擇價格
select a project timesheet zh-tw 選擇專案
start timesheet zh-tw 開始
starttime timesheet zh-tw 開始時間
starttime has to be before endtime !!! timesheet zh-tw 開始時間必須在結束時間之前!
sum %1: timesheet zh-tw %1 小計:
this month timesheet zh-tw 這個月
this week timesheet zh-tw 這星期

View File

@ -17,9 +17,9 @@ if (!defined('TIMESHEET_APP'))
}
$setup_info[TIMESHEET_APP]['name'] = TIMESHEET_APP;
$setup_info[TIMESHEET_APP]['version'] = '0.2.001';
$setup_info[TIMESHEET_APP]['version'] = '0.2.002';
$setup_info[TIMESHEET_APP]['app_order'] = 5;
$setup_info[TIMESHEET_APP]['tables'] = array('egw_timesheet');
$setup_info[TIMESHEET_APP]['tables'] = array('egw_timesheet', 'egw_timesheet_extra');
$setup_info[TIMESHEET_APP]['enable'] = 1;
$setup_info[TIMESHEET_APP]['author'] =

View File

@ -32,5 +32,16 @@
'fk' => array(),
'ix' => array('ts_project','ts_owner'),
'uc' => array()
),
'egw_timesheet_extra' => array(
'fd' => array(
'ts_id' => array('type' => 'int','precision' => '4','nullable' => False),
'ts_extra_name' => array('type' => 'varchar','precision' => '32','nullable' => False),
'ts_extra_value' => array('type' => 'varchar','precision' => '255','nullable' => False,'default' => '')
),
'pk' => array('ts_id','ts_extra_name'),
'fk' => array(),
'ix' => array(),
'uc' => array()
)
);

View File

@ -22,3 +22,23 @@
return $GLOBALS['setup_info']['timesheet']['currentver'] = '0.2.001';
}
$test[] = '0.2.001';
function timesheet_upgrade0_2_001()
{
$GLOBALS['egw_setup']->oProc->CreateTable('egw_timesheet_extra',array(
'fd' => array(
'ts_id' => array('type' => 'int','precision' => '4','nullable' => False),
'ts_extra_name' => array('type' => 'varchar','precision' => '32','nullable' => False),
'ts_extra_value' => array('type' => 'varchar','precision' => '255','nullable' => False,'default' => '')
),
'pk' => array('ts_id','ts_extra_name'),
'fk' => array(),
'ix' => array(),
'uc' => array()
));
$GLOBALS['setup_info']['timesheet']['currentver'] = '0.2.002';
return $GLOBALS['setup_info']['timesheet']['currentver'];
}