mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-18 11:21:23 +01:00
added htmlarea
This commit is contained in:
parent
5e237d6a8e
commit
3b5d09927e
@ -440,6 +440,17 @@ implement only a subset of XUL. Here are the main differences:</p>
|
|||||||
xml: <b>rows</b>: the number of rows
|
xml: <b>rows</b>: the number of rows
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><b>Formatted Text (HTML)</b></td>
|
||||||
|
<td><htmlarea /></td>
|
||||||
|
<td>no</td>
|
||||||
|
<td>htmlarea</td>
|
||||||
|
<td>
|
||||||
|
<b>a multiline input-field for formatted (HTML) text</b><br>
|
||||||
|
In the html-UI this is rendered as <textarea ...> and the HTMLarea javascript editor is used.<p>
|
||||||
|
<b>Options</b> inline styles for the text/htmlarea.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><b>Checkbox</b></td>
|
<td><b>Checkbox</b></td>
|
||||||
<td><checkbox/></td>
|
<td><checkbox/></td>
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
'int' => 'Integer', // like text, but only numbers (size = [min][,max])
|
'int' => 'Integer', // like text, but only numbers (size = [min][,max])
|
||||||
'float' => 'Floating Point', // --------------- " --------------------------
|
'float' => 'Floating Point', // --------------- " --------------------------
|
||||||
'textarea'=> 'Textarea', // Multiline Text Input (size = [rows][,cols])
|
'textarea'=> 'Textarea', // Multiline Text Input (size = [rows][,cols])
|
||||||
|
'htmlarea' => 'Formatted Text (HTML)',
|
||||||
'checkbox'=> 'Checkbox',
|
'checkbox'=> 'Checkbox',
|
||||||
'radio' => 'Radiobutton', // Radiobutton (size = value if checked)
|
'radio' => 'Radiobutton', // Radiobutton (size = value if checked)
|
||||||
'button' => 'Submitbutton',
|
'button' => 'Submitbutton',
|
||||||
|
@ -625,6 +625,17 @@
|
|||||||
if (!$readonly)
|
if (!$readonly)
|
||||||
$GLOBALS['phpgw_info']['etemplate']['to_process'][$form_name] = $cell['type'];
|
$GLOBALS['phpgw_info']['etemplate']['to_process'][$form_name] = $cell['type'];
|
||||||
break;
|
break;
|
||||||
|
case 'htmlarea': // Multiline formatted Text Input, size: [inline styles for the widget]
|
||||||
|
if (!$readonly)
|
||||||
|
{
|
||||||
|
$html .= $this->html->htmlarea($form_name,$value,$cell_options);
|
||||||
|
$GLOBALS['phpgw_info']['etemplate']['to_process'][$form_name] = $cell['type'];
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$html .= $this->html->div($this->html->activate_links($value),'style="overflow: auto; border: thin inset black;'.$cell_options.'"');
|
||||||
|
}
|
||||||
|
break;
|
||||||
case 'checkbox':
|
case 'checkbox':
|
||||||
if (!empty($cell_options))
|
if (!empty($cell_options))
|
||||||
{
|
{
|
||||||
@ -1009,6 +1020,13 @@
|
|||||||
$this->unset_array($content,$form_name);
|
$this->unset_array($content,$form_name);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case 'htmlarea':
|
||||||
|
if (isset($value))
|
||||||
|
{
|
||||||
|
$value = stripslashes($value);
|
||||||
|
}
|
||||||
|
$this->set_array($content,$form_name,$value);
|
||||||
|
break;
|
||||||
case 'text':
|
case 'text':
|
||||||
case 'textarea':
|
case 'textarea':
|
||||||
if (isset($value))
|
if (isset($value))
|
||||||
|
@ -116,6 +116,7 @@ fileupload etemplate de DateiUpload
|
|||||||
first etemplate de Zuerst
|
first etemplate de Zuerst
|
||||||
floating point etemplate de Gleitkommawert
|
floating point etemplate de Gleitkommawert
|
||||||
foreign key etemplate de Foreign Key
|
foreign key etemplate de Foreign Key
|
||||||
|
formatted text (html) etemplate de Formatierter Text (HTML)
|
||||||
go to the first entry etemplate de gehe zum ersten Eintrag
|
go to the first entry etemplate de gehe zum ersten Eintrag
|
||||||
go to the last entry etemplate de gege zum letzten Eintrag
|
go to the last entry etemplate de gege zum letzten Eintrag
|
||||||
go to the next page of entries etemplate de gehe zur nächsten Seite
|
go to the next page of entries etemplate de gehe zur nächsten Seite
|
||||||
@ -169,6 +170,8 @@ new search etemplate de Neue Suche
|
|||||||
new table created etemplate de Neue Tabelle erzeugt
|
new table created etemplate de Neue Tabelle erzeugt
|
||||||
newer version '%1' exists !!! etemplate de Neuere Version '%1' existiert !!!
|
newer version '%1' exists !!! etemplate de Neuere Version '%1' existiert !!!
|
||||||
nextmatch etemplate de Nextmatch
|
nextmatch etemplate de Nextmatch
|
||||||
|
nextmatch filterheader etemplate de Nextmatch Filterkopf
|
||||||
|
nextmatch sortheader etemplate de Nextmatch Sortierkopf
|
||||||
no file etemplate de keine Datei
|
no file etemplate de keine Datei
|
||||||
no filename given or selected via browse... etemplate de kein Dateiname angegeben oder mit [Browse...] ausgewählt
|
no filename given or selected via browse... etemplate de kein Dateiname angegeben oder mit [Browse...] ausgewählt
|
||||||
not null etemplate de NOT NULL
|
not null etemplate de NOT NULL
|
||||||
|
@ -1,282 +1,285 @@
|
|||||||
%1 (%2 new) messages writen for application '%3' and languages '%4' etemplate en %1 (%2 new) Messages writen for Application '%3' and Languages '%4'
|
%1 (%2 new) messages writen for application '%3' and languages '%4' en %1 (%2 new) Messages writen for Application '%3' and Languages '%4'
|
||||||
%1 etemplates deleted etemplate en %1 eTemplates deleted
|
%1 etemplates deleted en %1 eTemplates deleted
|
||||||
%1 etemplates for application '%2' dumped to '%3' etemplate en %1 eTemplates for Application '%2' dumped to '%3'
|
%1 etemplates for application '%2' dumped to '%3' en %1 eTemplates for Application '%2' dumped to '%3'
|
||||||
%1 etemplates found etemplate en %1 eTemplates found
|
%1 etemplates found en %1 eTemplates found
|
||||||
%1 matches on search criteria etemplate en %1 matches on search criteria
|
%1 matches on search criteria en %1 matches on search criteria
|
||||||
%1 new etemplates imported for application '%2' etemplate en %1 new eTemplates imported for Application '%2'
|
%1 new etemplates imported for application '%2' en %1 new eTemplates imported for Application '%2'
|
||||||
%s disabled etemplate en %s disabled
|
%s disabled en %s disabled
|
||||||
%s needed etemplate en %s needed
|
%s needed en %s needed
|
||||||
%s notranslation etemplate en %s NoTranslation
|
%s notranslation en %s NoTranslation
|
||||||
%s onchange etemplate en %s onChange
|
%s onchange en %s onChange
|
||||||
%s readonly etemplate en %s readonly
|
%s readonly en %s readonly
|
||||||
a pattern to be searched for etemplate en a pattern to be searched for
|
a pattern to be searched for en a pattern to be searched for
|
||||||
add a new column (after the existing ones) etemplate en Add a new column (after the existing ones)
|
add a new column (after the existing ones) en Add a new column (after the existing ones)
|
||||||
add a new multi-column index etemplate en Add a new multi-column index
|
add a new multi-column index en Add a new multi-column index
|
||||||
add column etemplate en Add Column
|
add column en Add Column
|
||||||
add index etemplate en Add Index
|
add index en Add Index
|
||||||
add table etemplate en Add Table
|
add table en Add Table
|
||||||
align etemplate en Align
|
align en Align
|
||||||
alignment of label and input-field in table-cell etemplate en alignment of label and input-field in table-cell
|
alignment of label and input-field in table-cell en alignment of label and input-field in table-cell
|
||||||
alignment of the v/hbox containing table-cell etemplate en Alignment of the V/HBox containing table-cell
|
alignment of the v/hbox containing table-cell en Alignment of the V/HBox containing table-cell
|
||||||
am etemplate en am
|
am en am
|
||||||
an indexed column speeds up querys using that column (cost space on the disk !!!) etemplate en an indexed column speeds up querys using that column (cost space on the disk !!!)
|
an indexed column speeds up querys using that column (cost space on the disk !!!) en an indexed column speeds up querys using that column (cost space on the disk !!!)
|
||||||
application etemplate en Application
|
application en Application
|
||||||
application name needed to write a langfile or dump the etemplates !!! etemplate en Application name needed to write a langfile or dump the eTemplates !!!
|
application name needed to write a langfile or dump the etemplates !!! en Application name needed to write a langfile or dump the eTemplates !!!
|
||||||
attach etemplate en Attach
|
attach en Attach
|
||||||
attach file etemplate en attach file
|
attach file en attach file
|
||||||
blurtext etemplate en blurText
|
blurtext en blurText
|
||||||
border etemplate en Border
|
border en Border
|
||||||
border-line-thickness for the table-tag etemplate en Border-line-thickness for the table-tag
|
border-line-thickness for the table-tag en Border-line-thickness for the table-tag
|
||||||
can not have special sql-value null etemplate en can not have special SQL-value NULL
|
can not have special sql-value null en can not have special SQL-value NULL
|
||||||
cancel etemplate en Cancel
|
cancel en Cancel
|
||||||
category etemplate en Category
|
category en Category
|
||||||
cellpadding for the table-tag etemplate en Cellpadding for the table-tag
|
cellpadding for the table-tag en Cellpadding for the table-tag
|
||||||
cells etemplate en Cells
|
cells en Cells
|
||||||
cellspacing for the table-tag etemplate en Cellspacing for the table-tag
|
cellspacing for the table-tag en Cellspacing for the table-tag
|
||||||
center etemplate en Center
|
center en Center
|
||||||
check if content should only be displayed but not altered (the content is not send back then!) etemplate en check if content should only be displayed but not altered (the content is not send back then!)
|
check if content should only be displayed but not altered (the content is not send back then!) en check if content should only be displayed but not altered (the content is not send back then!)
|
||||||
check if field has to be filled by user etemplate en check if field has to be filled by user
|
check if field has to be filled by user en check if field has to be filled by user
|
||||||
checkbox etemplate en Checkbox
|
checkbox en Checkbox
|
||||||
class etemplate en Class
|
class en Class
|
||||||
class, valign etemplate en class, Valign
|
class, valign en class, Valign
|
||||||
click here to attach the file etemplate en click here to attach the file
|
click here to attach the file en click here to attach the file
|
||||||
click here to create the link etemplate en click here to create the Link
|
click here to create the link en click here to create the Link
|
||||||
click here to start the search etemplate en Click here to start the search
|
click here to start the search en Click here to start the search
|
||||||
click here to upload the file etemplate en Click here to upload the file
|
click here to upload the file en Click here to upload the file
|
||||||
click to order after that criteria etemplate en click to order after that criteria
|
click to order after that criteria en click to order after that criteria
|
||||||
columnname etemplate en ColumnName
|
columnname en ColumnName
|
||||||
comment etemplate en Comment
|
comment en Comment
|
||||||
create a new table for the application etemplate en Create a new table for the application
|
create a new table for the application en Create a new table for the application
|
||||||
creates an english ('en') langfile from label and helptexts (for application in name) etemplate en creates an english ('en') langfile from label and helptexts (for application in Name)
|
creates an english ('en') langfile from label and helptexts (for application in name) en creates an english ('en') langfile from label and helptexts (for application in Name)
|
||||||
css class for the table-tag etemplate en CSS class for the table-tag
|
css class for the table-tag en CSS class for the table-tag
|
||||||
css-class name for this row, preset: 'nmh' = nextmatch header, 'nmr' = alternating nm row, 'nmr0'+'nmr1' nm rows etemplate en CSS-class name for this row, preset: 'nmh' = NextMatch header, 'nmr' = alternating NM row, 'nmr0'+'nmr1' NM rows
|
css-class name for this row, preset: 'nmh' = nextmatch header, 'nmr' = alternating nm row, 'nmr0'+'nmr1' nm rows en CSS-class name for this row, preset: 'nmh' = NextMatch header, 'nmr' = alternating NM row, 'nmr0'+'nmr1' NM rows
|
||||||
css-styles etemplate en CSS-styles
|
css-styles en CSS-styles
|
||||||
date+time etemplate en Date+Time
|
date+time en Date+Time
|
||||||
datum etemplate en Datum
|
datum en Datum
|
||||||
day etemplate en Day
|
day en Day
|
||||||
db ensures that every row has a unique value in that column etemplate en DB ensures that every row has a unique value in that column
|
db ensures that every row has a unique value in that column en DB ensures that every row has a unique value in that column
|
||||||
db-specific index options (comma-sep.), eg. mysql(fulltext) or mysql(100) for the indexed length of a col etemplate en db-specific index options (comma-sep.), eg. mysql(FULLTEXT) or mysql(100) for the indexed length of a col
|
db-specific index options (comma-sep.), eg. mysql(fulltext) or mysql(100) for the indexed length of a col en db-specific index options (comma-sep.), eg. mysql(FULLTEXT) or mysql(100) for the indexed length of a col
|
||||||
db-tools etemplate en DB-Tools
|
db-tools en DB-Tools
|
||||||
deck etemplate en Deck (internal)
|
deck en Deck (internal)
|
||||||
default etemplate en Default
|
default en Default
|
||||||
delete etemplate en Delete
|
delete en Delete
|
||||||
delete a single entry by passing the id. etemplate en Delete a single entry by passing the id.
|
delete a single entry by passing the id. en Delete a single entry by passing the id.
|
||||||
delete all selected etemplates, without further inquiry etemplate en delete ALL selected eTemplates, WITHOUT further inquiry
|
delete all selected etemplates, without further inquiry en delete ALL selected eTemplates, WITHOUT further inquiry
|
||||||
delete column etemplate en Delete Column
|
delete column en Delete Column
|
||||||
delete index etemplate en Delete Index
|
delete index en Delete Index
|
||||||
delete this etemplate etemplate en delete this eTemplate
|
delete this etemplate en delete this eTemplate
|
||||||
delete whole column (can not be undone!!!) etemplate en delete whole column (can NOT be undone!!!)
|
delete whole column (can not be undone!!!) en delete whole column (can NOT be undone!!!)
|
||||||
deletes the above spez. etemplate from the database, can not be undone etemplate en deletes the above spez. eTemplate from the database, can NOT be undone
|
deletes the above spez. etemplate from the database, can not be undone en deletes the above spez. eTemplate from the database, can NOT be undone
|
||||||
deletes the etemplate spez. above etemplate en deletes the eTemplate spez. above
|
deletes the etemplate spez. above en deletes the eTemplate spez. above
|
||||||
deletes this column etemplate en Deletes this column
|
deletes this column en Deletes this column
|
||||||
deletes this index etemplate en Deletes this index
|
deletes this index en Deletes this index
|
||||||
discard changes etemplate en discard changes
|
discard changes en discard changes
|
||||||
displayed in front of input or input is inserted for a '%s' in the label (label of the submitbutton or image-filename) etemplate en displayed in front of input or input is inserted for a '%s' in the label (label of the Submitbutton or Image-filename)
|
displayed in front of input or input is inserted for a '%s' in the label (label of the submitbutton or image-filename) en displayed in front of input or input is inserted for a '%s' in the label (label of the Submitbutton or Image-filename)
|
||||||
displayed in statusline of browser if input-field gets focus etemplate en displayed in statusline of browser if input-field gets focus
|
displayed in statusline of browser if input-field gets focus en displayed in statusline of browser if input-field gets focus
|
||||||
do you want to save the changes you made in table %s? etemplate en Do you want to save the changes you made in table %s?
|
do you want to save the changes you made in table %s? en Do you want to save the changes you made in table %s?
|
||||||
documentation etemplate en Documentation
|
documentation en Documentation
|
||||||
drop a table - this can not be undone etemplate en Drop a table - this can NOT be undone
|
drop a table - this can not be undone en Drop a table - this can NOT be undone
|
||||||
drop table etemplate en Drop Table
|
drop table en Drop Table
|
||||||
dump4setup etemplate en Dump4Setup
|
dump4setup en Dump4Setup
|
||||||
edit etemplate en Edit
|
edit en Edit
|
||||||
edit the etemplate spez. above etemplate en edit the eTemplate spez. above
|
edit the etemplate spez. above en edit the eTemplate spez. above
|
||||||
editable templates - db-tools etemplate en Editable Templates - DB-Tools
|
editable templates - db-tools en Editable Templates - DB-Tools
|
||||||
editable templates - delete template etemplate en Editable Templates - Delete Template
|
editable templates - delete template en Editable Templates - Delete Template
|
||||||
editable templates - editor etemplate en Editable Templates - Editor
|
editable templates - editor en Editable Templates - Editor
|
||||||
editable templates - search etemplate en Editable Templates - Search
|
editable templates - search en Editable Templates - Search
|
||||||
editable templates - show template etemplate en Editable Templates - Show Template
|
editable templates - show template en Editable Templates - Show Template
|
||||||
embeded css styles, eg. '.red { background: red; }' (note the '.' before the class-name) or '@import url(...)' (class names are global for the whole page!) etemplate en embeded CSS styles, eg. '.red { background: red; }' (note the '.' before the class-name) or '@import url(...)' (class names are global for the whole page!)
|
embeded css styles, eg. '.red { background: red; }' (note the '.' before the class-name) or '@import url(...)' (class names are global for the whole page!) en embeded CSS styles, eg. '.red { background: red; }' (note the '.' before the class-name) or '@import url(...)' (class names are global for the whole page!)
|
||||||
enable javascript onchange submit etemplate en enable JavaScript onChange submit
|
enable javascript onchange submit en enable JavaScript onChange submit
|
||||||
enter '' for an empty default, nothing mean no default etemplate en enter '' for an empty default, nothing mean no default
|
enter '' for an empty default, nothing mean no default en enter '' for an empty default, nothing mean no default
|
||||||
enter a search pattern etemplate en Enter a search pattern
|
enter a search pattern en Enter a search pattern
|
||||||
enter filename to upload and attach, use [browse...] to search for it etemplate en Enter filename to upload and attach, use [Browse...] to search for it
|
enter filename to upload and attach, use [browse...] to search for it en Enter filename to upload and attach, use [Browse...] to search for it
|
||||||
enter the new version number here (> old_version), empty for no update-file etemplate en enter the new version number here (> old_version), empty for no update-file
|
enter the new version number here (> old_version), empty for no update-file en enter the new version number here (> old_version), empty for no update-file
|
||||||
enter the new version number here (has to be > old_version) etemplate en enter the new version number here (has to be > old_version)
|
enter the new version number here (has to be > old_version) en enter the new version number here (has to be > old_version)
|
||||||
entry saved etemplate en Entry saved
|
entry saved en Entry saved
|
||||||
error: template not found !!! etemplate en Error: Template not found !!!
|
error: template not found !!! en Error: Template not found !!!
|
||||||
error: webserver is not allowed to write into '%1' !!! etemplate en Error: webserver is not allowed to write into '%1' !!!
|
error: webserver is not allowed to write into '%1' !!! en Error: webserver is not allowed to write into '%1' !!!
|
||||||
error: while saveing !!! etemplate en Error: while saveing !!!
|
error: while saveing !!! en Error: while saveing !!!
|
||||||
error: writeing !!! etemplate en Error: writeing !!!
|
error: writeing !!! en Error: writeing !!!
|
||||||
error: writing file (no write-permission for the webserver) !!! etemplate en Error: writing file (no write-permission for the webserver) !!!
|
error: writing file (no write-permission for the webserver) !!! en Error: writing file (no write-permission for the webserver) !!!
|
||||||
etemplate common en eTemplate
|
etemplate en eTemplate
|
||||||
etemplate '%1' imported, use save to put it in the database etemplate en eTemplate '%1' imported, use Save to put it in the database
|
etemplate '%1' imported, use save to put it in the database en eTemplate '%1' imported, use Save to put it in the database
|
||||||
etemplate '%1' written to '%2' etemplate en eTemplate '%1' written to '%2'
|
etemplate '%1' written to '%2' en eTemplate '%1' written to '%2'
|
||||||
etemplate editor etemplate en eTemplate Editor
|
etemplate editor en eTemplate Editor
|
||||||
etemplate referenz etemplate en eTemplate Referenz
|
etemplate referenz en eTemplate Referenz
|
||||||
etemplate tutorial etemplate en eTemplate Tutorial
|
etemplate tutorial en eTemplate Tutorial
|
||||||
exchange this row with the one above etemplate en exchange this row with the one above
|
exchange this row with the one above en exchange this row with the one above
|
||||||
exchange this two columns etemplate en exchange this two columns
|
exchange this two columns en exchange this two columns
|
||||||
export the loaded etemplate into a xml-file etemplate en export the loaded eTemplate into a xml-file
|
export the loaded etemplate into a xml-file en export the loaded eTemplate into a xml-file
|
||||||
export xml etemplate en Export XML
|
export xml en Export XML
|
||||||
extensions loaded: etemplate en Extensions loaded:
|
extensions loaded: en Extensions loaded:
|
||||||
file etemplate en File
|
file en File
|
||||||
file contains more than one etemplate, last one is shown !!! etemplate en File contains more than one eTemplate, last one is shown !!!
|
file contains more than one etemplate, last one is shown !!! en File contains more than one eTemplate, last one is shown !!!
|
||||||
file writen etemplate en File writen
|
file writen en File writen
|
||||||
fileupload etemplate en FileUpload
|
fileupload en FileUpload
|
||||||
first etemplate en First
|
first en First
|
||||||
floating point etemplate en Floating Point
|
floating point en Floating Point
|
||||||
foreign key etemplate en Foreign Key
|
foreign key en Foreign Key
|
||||||
go to the first entry etemplate en go to the first entry
|
formatted text (html) en Formatted Text (HTML)
|
||||||
go to the last entry etemplate en go to the last entry
|
go to the first entry en go to the first entry
|
||||||
go to the next page of entries etemplate en go to the next page of entries
|
go to the last entry en go to the last entry
|
||||||
go to the previous page of entries etemplate en go to the previous page of entries
|
go to the next page of entries en go to the next page of entries
|
||||||
hbox etemplate en HBox
|
go to the previous page of entries en go to the previous page of entries
|
||||||
height etemplate en Height
|
hbox en HBox
|
||||||
height of row (in % or pixel), disable row: [! = not]<value>[=<check>] eg: '!@data' disable row if content of data is empty etemplate en height of row (in % or pixel), disable row: [! = not]<value>[=<check>] eg: '!@data' disable row if content of data is empty
|
height en Height
|
||||||
height of the table in % or pixels for the table-tag and (optional) div etemplate en Height of the table in % or pixels for the table-tag and (optional) div
|
height of row (in % or pixel), disable row: [! = not]<value>[=<check>] eg: '!@data' disable row if content of data is empty en height of row (in % or pixel), disable row: [! = not]<value>[=<check>] eg: '!@data' disable row if content of data is empty
|
||||||
height, disabled etemplate en Height, Disabled
|
height of the table in % or pixels for the table-tag and (optional) div en Height of the table in % or pixels for the table-tag and (optional) div
|
||||||
help etemplate en Help
|
height, disabled en Height, Disabled
|
||||||
horizontal rule etemplate en Horizontal Rule
|
help en Help
|
||||||
hour etemplate en Hour
|
horizontal rule en Horizontal Rule
|
||||||
html etemplate en Html
|
hour en Hour
|
||||||
if field is disabled an empty table-cell is displayed, for (temporal) removement of a field/cell etemplate en if field is disabled an empty table-cell is displayed, for (temporal) removement of a field/cell
|
html en Html
|
||||||
image etemplate en Image
|
if field is disabled an empty table-cell is displayed, for (temporal) removement of a field/cell en if field is disabled an empty table-cell is displayed, for (temporal) removement of a field/cell
|
||||||
import etemplate en Import
|
image en Image
|
||||||
import an etemplate from a xml-file etemplate en import an eTemplate from a xml-file
|
import en Import
|
||||||
import table-definitions from existing db-table etemplate en Import table-definitions from existing db-table
|
import an etemplate from a xml-file en import an eTemplate from a xml-file
|
||||||
import xml etemplate en Import XML
|
import table-definitions from existing db-table en Import table-definitions from existing db-table
|
||||||
index/name of returned content (name of the template, link / method for image) etemplate en index/name of returned content (name of the Template, Link / Method for Image)
|
import xml en Import XML
|
||||||
indexed etemplate en Indexed
|
index/name of returned content (name of the template, link / method for image) en index/name of returned content (name of the Template, Link / Method for Image)
|
||||||
indexoptions etemplate en Indexoptions
|
indexed en Indexed
|
||||||
insert new column behind this one etemplate en insert new column behind this one
|
indexoptions en Indexoptions
|
||||||
insert new column in front of all etemplate en insert new column in front of all
|
insert new column behind this one en insert new column behind this one
|
||||||
insert new row after this one etemplate en insert new row after this one
|
insert new column in front of all en insert new column in front of all
|
||||||
insert new row in front of first line etemplate en insert new row in front of first Line
|
insert new row after this one en insert new row after this one
|
||||||
integer etemplate en Integer
|
insert new row in front of first line en insert new row in front of first Line
|
||||||
key etemplate en Key
|
integer en Integer
|
||||||
label etemplate en Label
|
key en Key
|
||||||
label:[bold][italic] text:[len][,max] numbers:[min][,[max][,len]] t.area:[rows][,cols] radiob.:value h.rule:[width] templ.:[indexincontent] select:[multiselect] date:[values: eg. 'y-m-d'] etemplate en Label:[bold][italic] Text:[len][,max] Numbers:[min][,[max][,len]] T.area:[rows][,cols] Radiob.:value H.Rule:[width] Templ.:[IndexInContent] Select:[multiselect] Date:[values: eg. 'Y-m-d']
|
label en Label
|
||||||
lang etemplate en Lang
|
label:[bold][italic] text:[len][,max] numbers:[min][,[max][,len]] t.area:[rows][,cols] radiob.:value h.rule:[width] templ.:[indexincontent] select:[multiselect] date:[values: eg. 'y-m-d'] en Label:[bold][italic] Text:[len][,max] Numbers:[min][,[max][,len]] T.area:[rows][,cols] Radiob.:value H.Rule:[width] Templ.:[IndexInContent] Select:[multiselect] Date:[values: eg. 'Y-m-d']
|
||||||
language-short (eg. 'en' for english) for language-dependent template ('' reads your pref. languages or the default, us 'default' to read the default template '') etemplate en language-short (eg. 'en' for english) for language-dependent template ('' reads your pref. languages or the default, us 'default' to read the default template '')
|
lang en Lang
|
||||||
last etemplate en Last
|
language-short (eg. 'en' for english) for language-dependent template ('' reads your pref. languages or the default, us 'default' to read the default template '') en language-short (eg. 'en' for english) for language-dependent template ('' reads your pref. languages or the default, us 'default' to read the default template '')
|
||||||
left etemplate en Left
|
last en Last
|
||||||
length for char+varchar, precisions int: 2, 4, 8 and float: 4, 8 etemplate en length for char+varchar, precisions int: 2, 4, 8 and float: 4, 8
|
left en Left
|
||||||
link etemplate en Link
|
length for char+varchar, precisions int: 2, 4, 8 and float: 4, 8 en length for char+varchar, precisions int: 2, 4, 8 and float: 4, 8
|
||||||
linklist etemplate en LinkList
|
link en Link
|
||||||
linkstring etemplate en LinkString
|
linklist en LinkList
|
||||||
linkto etemplate en LinkTo
|
linkstring en LinkString
|
||||||
load this template into the editor etemplate en load this template into the editor
|
linkto en LinkTo
|
||||||
minute etemplate en Minute
|
load this template into the editor en load this template into the editor
|
||||||
month etemplate en Month
|
minute en Minute
|
||||||
multicolumn indices etemplate en Multicolumn Indices
|
month en Month
|
||||||
name etemplate en Name
|
multicolumn indices en Multicolumn Indices
|
||||||
name of other table where column is a key from etemplate en name of other table where column is a key from
|
name en Name
|
||||||
name of phpgw-template set (e.g. verdilak): '' = default (will read pref. template, us 'default' to read default template '') etemplate en name of phpgw-template set (e.g. verdilak): '' = default (will read pref. template, us 'default' to read default template '')
|
name of other table where column is a key from en name of other table where column is a key from
|
||||||
name of table to add etemplate en Name of table to add
|
name of phpgw-template set (e.g. verdilak): '' = default (will read pref. template, us 'default' to read default template '') en name of phpgw-template set (e.g. verdilak): '' = default (will read pref. template, us 'default' to read default template '')
|
||||||
name of the etemplate, should be in form application.function[.subtemplate] etemplate en name of the eTemplate, should be in form application.function[.subTemplate]
|
name of table to add en Name of table to add
|
||||||
need to be unique in the table and no reseved word from sql, best prefix all with a common 2-digit short for the app, eg. 'et_' etemplate en need to be unique in the table and no reseved word from SQL, best prefix all with a common 2-digit short for the app, eg. 'et_'
|
name of the etemplate, should be in form application.function[.subtemplate] en name of the eTemplate, should be in form application.function[.subTemplate]
|
||||||
new search etemplate en New search
|
need to be unique in the table and no reseved word from sql, best prefix all with a common 2-digit short for the app, eg. 'et_' en need to be unique in the table and no reseved word from SQL, best prefix all with a common 2-digit short for the app, eg. 'et_'
|
||||||
new table created etemplate en New table created
|
new search en New search
|
||||||
newer version '%1' exists !!! etemplate en newer version '%1' exists !!!
|
new table created en New table created
|
||||||
nextmatch etemplate en Nextmatch
|
newer version '%1' exists !!! en newer version '%1' exists !!!
|
||||||
no file etemplate en no file
|
nextmatch en Nextmatch
|
||||||
no filename given or selected via browse... etemplate en no filename given or selected via Browse...
|
nextmatch filterheader en Nextmatch Filterheader
|
||||||
not null etemplate en NOT NULL
|
nextmatch sortheader en Nextmatch Sortheader
|
||||||
nothing found - try again !!! etemplate en Nothing found - try again !!!
|
no file en no file
|
||||||
nothing matched search criteria !!! etemplate en Nothing matched search criteria !!!
|
no filename given or selected via browse... en no filename given or selected via Browse...
|
||||||
number of colums the field/cell should span or 'all' for the remaining columns, css-class name (for the td tag) etemplate en number of colums the field/cell should span or 'all' for the remaining columns, CSS-class name (for the TD tag)
|
not null en NOT NULL
|
||||||
number of rows/cols in a v/hbox, cellpadding, cellspacing etemplate en number of rows/cols in a V/HBox, Cellpadding, Cellspacing
|
nothing found - try again !!! en Nothing found - try again !!!
|
||||||
of etemplate en of
|
nothing matched search criteria !!! en Nothing matched search criteria !!!
|
||||||
only an other version found !!! etemplate en only an other Version found !!!
|
number of colums the field/cell should span or 'all' for the remaining columns, css-class name (for the td tag) en number of colums the field/cell should span or 'all' for the remaining columns, CSS-class name (for the TD tag)
|
||||||
optional note about the link etemplate en optional note about the Link
|
number of rows/cols in a v/hbox, cellpadding, cellspacing en number of rows/cols in a V/HBox, Cellpadding, Cellspacing
|
||||||
options etemplate en Options
|
of en of
|
||||||
overflow etemplate en Overflow
|
only an other version found !!! en only an other Version found !!!
|
||||||
padding etemplate en Padding
|
optional note about the link en optional note about the Link
|
||||||
please enter table-name first !!! etemplate en Please enter table-name first !!!
|
options en Options
|
||||||
pm etemplate en pm
|
overflow en Overflow
|
||||||
precision etemplate en Precision
|
padding en Padding
|
||||||
primary key etemplate en Primary Key
|
please enter table-name first !!! en Please enter table-name first !!!
|
||||||
primary key for the table, gets automaticaly indexed etemplate en Primary key for the table, gets automaticaly indexed
|
pm en pm
|
||||||
radiobutton etemplate en Radiobutton
|
precision en Precision
|
||||||
read etemplate en Read
|
primary key en Primary Key
|
||||||
read a list of entries. etemplate en Read a list of entries.
|
primary key for the table, gets automaticaly indexed en Primary key for the table, gets automaticaly indexed
|
||||||
read a single entry by passing the id and fieldlist. etemplate en Read a single entry by passing the id and fieldlist.
|
radiobutton en Radiobutton
|
||||||
read etemplate from database (for the keys above) etemplate en read eTemplate from database (for the keys above)
|
read en Read
|
||||||
remove row (can not be undone!!!) etemplate en remove Row (can NOT be undone!!!)
|
read a list of entries. en Read a list of entries.
|
||||||
remove this link (not the entry itself) etemplate en Remove this link (not the entry itself)
|
read a single entry by passing the id and fieldlist. en Read a single entry by passing the id and fieldlist.
|
||||||
returns savely, without deleting etemplate en returns savely, WITHOUT deleting
|
read etemplate from database (for the keys above) en read eTemplate from database (for the keys above)
|
||||||
right etemplate en Right
|
remove row (can not be undone!!!) en remove Row (can NOT be undone!!!)
|
||||||
save etemplate en Save
|
remove this link (not the entry itself) en Remove this link (not the entry itself)
|
||||||
save the etemplate under the above keys (name, ...), change them for a saveas etemplate en save the eTemplate under the above keys (name, ...), change them for a SaveAs
|
returns savely, without deleting en returns savely, WITHOUT deleting
|
||||||
saves changes to tables_current.inc.php etemplate en saves changes to tables_current.inc.php
|
right en Right
|
||||||
scale etemplate en Scale
|
save en Save
|
||||||
scale for float etemplate en scale for float
|
save the etemplate under the above keys (name, ...), change them for a saveas en save the eTemplate under the above keys (name, ...), change them for a SaveAs
|
||||||
search etemplate en Search
|
saves changes to tables_current.inc.php en saves changes to tables_current.inc.php
|
||||||
select a category etemplate en select a Category
|
scale en Scale
|
||||||
select a primary contact, to show in the list etemplate en Select a primary contact, to show in the list
|
scale for float en scale for float
|
||||||
select access etemplate en Select Access
|
search en Search
|
||||||
select account etemplate en Select Account
|
select a category en select a Category
|
||||||
select an app first !!! etemplate en Select an app first !!!
|
select a primary contact, to show in the list en Select a primary contact, to show in the list
|
||||||
select an app to search in etemplate en Select an App to search in
|
select access en Select Access
|
||||||
select an application etemplate en Select an application
|
select account en Select Account
|
||||||
select an application, (*) = uninstalled etemplate en Select an application, (*) = uninstalled
|
select an app first !!! en Select an app first !!!
|
||||||
select an entry to link with etemplate en Select an entry to link with
|
select an app to search in en Select an App to search in
|
||||||
select an table of the application etemplate en Select an table of the application
|
select an application en Select an application
|
||||||
select application etemplate en Select Application
|
select an application, (*) = uninstalled en Select an application, (*) = uninstalled
|
||||||
select category etemplate en Select Category
|
select an entry to link with en Select an entry to link with
|
||||||
select country etemplate en Select Country
|
select an table of the application en Select an table of the application
|
||||||
select day etemplate en Select Day
|
select application en Select Application
|
||||||
select if content of field should not be translated (label gets always translated) etemplate en select if content of field should not be translated (label gets always translated)
|
select category en Select Category
|
||||||
select month etemplate en Select Month
|
select country en Select Country
|
||||||
select number etemplate en Select Number
|
select day en Select Day
|
||||||
select one ... etemplate en Select One ...
|
select if content of field should not be translated (label gets always translated) en select if content of field should not be translated (label gets always translated)
|
||||||
select percentage etemplate en Select Percentage
|
select month en Select Month
|
||||||
select priority etemplate en Select Priority
|
select number en Select Number
|
||||||
select state etemplate en Select State
|
select one ... en Select One ...
|
||||||
select the indexed columns in their desired order etemplate en Select the indexed columns in their desired order
|
select percentage en Select Percentage
|
||||||
select this etemplate to delete it etemplate en select this eTemplate to delete it
|
select priority en Select Priority
|
||||||
select which values to show etemplate en select which values to show
|
select state en Select State
|
||||||
select year etemplate en Select Year
|
select the indexed columns in their desired order en Select the indexed columns in their desired order
|
||||||
selectbox etemplate en Selectbox
|
select this etemplate to delete it en select this eTemplate to delete it
|
||||||
sets today as date etemplate en sets today as date
|
select which values to show en select which values to show
|
||||||
show etemplate en Show
|
select year en Select Year
|
||||||
show (no save) etemplate en Show (no save)
|
selectbox en Selectbox
|
||||||
show values etemplate en Show Values
|
sets today as date en sets today as date
|
||||||
showing etemplate en showing
|
show en Show
|
||||||
shows / allows you to enter values into the etemplate for testing etemplate en shows / allows you to enter values into the eTemplate for testing
|
show (no save) en Show (no save)
|
||||||
shows/displays etemplate for testing, does not save it before etemplate en shows/displays eTemplate for testing, does NOT save it before
|
show values en Show Values
|
||||||
spacing etemplate en Spacing
|
showing en showing
|
||||||
span, class etemplate en Span, Class
|
shows / allows you to enter values into the etemplate for testing en shows / allows you to enter values into the eTemplate for testing
|
||||||
stack etemplate en Stack
|
shows/displays etemplate for testing, does not save it before en shows/displays eTemplate for testing, does NOT save it before
|
||||||
start a new search, cancel this link etemplate en start a new search, cancel this link
|
spacing en Spacing
|
||||||
start new search for the above pattern etemplate en start new search for the above pattern
|
span, class en Span, Class
|
||||||
submitbutton etemplate en Submitbutton
|
stack en Stack
|
||||||
table unchanged, no write necessary !!! etemplate en Table unchanged, no write necessary !!!
|
start a new search, cancel this link en start a new search, cancel this link
|
||||||
tablename etemplate en TableName
|
start new search for the above pattern en start new search for the above pattern
|
||||||
tabs etemplate en Tabs
|
submitbutton en Submitbutton
|
||||||
template etemplate en Template
|
table unchanged, no write necessary !!! en Table unchanged, no write necessary !!!
|
||||||
template deleted etemplate en Template deleted
|
tablename en TableName
|
||||||
template saved etemplate en Template saved
|
tabs en Tabs
|
||||||
text etemplate en Text
|
template en Template
|
||||||
textarea etemplate en Textarea
|
template deleted en Template deleted
|
||||||
this text gets displayed if the input-field is empty and has no focus (blur) etemplate en this text gets displayed if the input-field is empty and has no focus (blur)
|
template saved en Template saved
|
||||||
time etemplate en Time
|
text en Text
|
||||||
to start the db-tools etemplate en to start the DB-Tools
|
textarea en Textarea
|
||||||
to start the etemplate editor etemplate en to start the eTemplate editor
|
this text gets displayed if the input-field is empty and has no focus (blur) en this text gets displayed if the input-field is empty and has no focus (blur)
|
||||||
to start the search etemplate en to start the search
|
time en Time
|
||||||
today etemplate en Today
|
to start the db-tools en to start the DB-Tools
|
||||||
type etemplate en Type
|
to start the etemplate editor en to start the eTemplate editor
|
||||||
type of the column etemplate en type of the column
|
to start the search en to start the search
|
||||||
type of the field (select label if field should be empty) etemplate en type of the field (select Label if field should be empty)
|
today en Today
|
||||||
unique etemplate en Unique
|
type en Type
|
||||||
unlink etemplate en Unlink
|
type of the column en type of the column
|
||||||
update a single entry by passing the fields. etemplate en Update a single entry by passing the fields.
|
type of the field (select label if field should be empty) en type of the field (select Label if field should be empty)
|
||||||
update from version '%s' to etemplate en Update from Version '%s' to
|
unique en Unique
|
||||||
upload etemplate en Upload
|
unlink en Unlink
|
||||||
value etemplate en Value
|
update a single entry by passing the fields. en Update a single entry by passing the fields.
|
||||||
vbox etemplate en VBox
|
update from version '%s' to en Update from Version '%s' to
|
||||||
version etemplate en Version
|
upload en Upload
|
||||||
version-number, should be in the form: major.minor.revision.number (eg. 0.9.13.001 all numbers filled up with zeros) etemplate en version-number, should be in the form: major.minor.revision.number (eg. 0.9.13.001 all numbers filled up with zeros)
|
value en Value
|
||||||
view this linked entry in its application etemplate en view this linked entry in its application
|
vbox en VBox
|
||||||
what happens with overflowing content: visible (default), hidden, scroll, auto (browser decides) etemplate en what happens with overflowing content: visible (default), hidden, scroll, auto (browser decides)
|
version en Version
|
||||||
width etemplate en Width
|
version-number, should be in the form: major.minor.revision.number (eg. 0.9.13.001 all numbers filled up with zeros) en version-number, should be in the form: major.minor.revision.number (eg. 0.9.13.001 all numbers filled up with zeros)
|
||||||
width of col (in % or pixel), disable col: [! = not]<value>[=<check>] eg: '!@data' disable col if content of data is empty etemplate en width of col (in % or pixel), disable col: [! = not]<value>[=<check>] eg: '!@data' disable col if content of data is empty
|
view this linked entry in its application en view this linked entry in its application
|
||||||
width of the table in % or pixels for the table-tag and (optional) div etemplate en Width of the table in % or pixels for the table-tag and (optional) div
|
what happens with overflowing content: visible (default), hidden, scroll, auto (browser decides) en what happens with overflowing content: visible (default), hidden, scroll, auto (browser decides)
|
||||||
width, disabled etemplate en Width, Disabled
|
width en Width
|
||||||
write <app>/setup/tables_current.inc.php etemplate en Write <app>/setup/tables_current.inc.php
|
width of col (in % or pixel), disable col: [! = not]<value>[=<check>] eg: '!@data' disable col if content of data is empty en width of col (in % or pixel), disable col: [! = not]<value>[=<check>] eg: '!@data' disable col if content of data is empty
|
||||||
write langfile etemplate en Write Langfile
|
width of the table in % or pixels for the table-tag and (optional) div en Width of the table in % or pixels for the table-tag and (optional) div
|
||||||
write tables etemplate en Write Tables
|
width, disabled en Width, Disabled
|
||||||
writes a 'etemplates.inc.php' file (for application in name) in the setup-dir of the app etemplate en writes a 'etemplates.inc.php' file (for application in Name) in the setup-dir of the app
|
write <app>/setup/tables_current.inc.php en Write <app>/setup/tables_current.inc.php
|
||||||
xml-file to import etemplate en xml-file to import
|
write langfile en Write Langfile
|
||||||
xslt template etemplate en XSLT Template
|
write tables en Write Tables
|
||||||
year etemplate en Year
|
writes a 'etemplates.inc.php' file (for application in name) in the setup-dir of the app en writes a 'etemplates.inc.php' file (for application in Name) in the setup-dir of the app
|
||||||
|
xml-file to import en xml-file to import
|
||||||
|
xslt template en XSLT Template
|
||||||
|
year en Year
|
||||||
|
Loading…
Reference in New Issue
Block a user