diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-03-23 10:49:42 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-03-23 10:49:42 +0000 |
commit | 19539930214a96be6149f653afaf5599d3fc004b (patch) | |
tree | 69d3d94613f1290b685cffa9693cd84be46a2f79 | |
parent | 6af893212c03e9750f491b561aad9d7fdb73544a (diff) |
INTEGRATION: CWS eforms4 (1.2.22); FILE MERGED
2005/02/18 17:34:50 dvo 1.2.22.5: RESYNC: (1.2-1.3); FILE MERGED
2005/02/07 18:36:22 pb 1.2.22.4: fix: #i36202# RID_QRY_REMOVE_SUBMISSION/BINDING added
2005/01/06 16:15:27 mbu 1.2.22.3: added empty submission errorbox
2004/12/21 15:31:41 mbu 1.2.22.2: #i36198
2004/12/06 06:38:53 pb 1.2.22.1: fix: #i36453# new resources for linked inst warning
-rw-r--r-- | svx/source/form/datanavi.src | 51 |
1 files changed, 43 insertions, 8 deletions
diff --git a/svx/source/form/datanavi.src b/svx/source/form/datanavi.src index f3b7ad287319..67062d92f320 100644 --- a/svx/source/form/datanavi.src +++ b/svx/source/form/datanavi.src @@ -2,9 +2,9 @@ * * $RCSfile: datanavi.src,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: kz $ $Date: 2005-01-13 18:57:29 $ + * last change: $Author: vg $ $Date: 2005-03-23 11:49:42 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -161,7 +161,7 @@ Window RID_SVXWIN_DATANAVIGATOR DialogControl = TRUE ; HelpId = HID_DATA_NAVIGATOR_WIN ; Pos = MAP_APPFONT ( 0 , 0 ) ; - Size = MAP_APPFONT ( 122 , 150 ) ; + Size = MAP_APPFONT ( 300 , 400 ) ; ListBox LB_MODELS { HelpId = HID_XFORMS_MODELS_LIST ; @@ -254,8 +254,8 @@ Window RID_SVXWIN_DATANAVIGATOR { Identifier = MID_INSTANCES_EDIT ; HelpId = HID_MN_XFORMS_INSTANCES_EDIT ; - Text [ de ] = "~Umbenennen..." ; - Text [ en-US ] = "~Rename..." ; + Text [ de ] = "~Bearbeiten..." ; + Text [ en-US ] = "~Edit..." ; }; MenuItem { @@ -333,10 +333,33 @@ QueryBox RID_QRY_REMOVE_ATTRIBUTE { Buttons = WB_YES_NO ; DefButton = WB_DEF_NO ; - Message [ de ] = "Mchten Sie das Attribut $ATTRIBUTENAME' wirklich lschen?" ; + Message [ de ] = "Mchten Sie das Attribut '$ATTRIBUTENAME' wirklich lschen?" ; Message [ en-US ] = "Do you really want to delete the attribute '$ATTRIBUTENAME'?" ; }; +QueryBox RID_QRY_REMOVE_SUBMISSION +{ + Buttons = WB_YES_NO ; + DefButton = WB_DEF_NO ; + Message [ de ] = "Das Lschen der Submission '$SUBMISSIONNAME' wirkt sich auf alle Kontrollfelder aus, die damit verbunden sind.\n\nMchten Sie die Submission wirklich lschen?" ; + Message [ en-US ] = "Deleting the submission '$SUBMISSIONNAME' affects all controls currently bound to this submission.\n\nDo you really want to delete this submission?" ; +}; + +QueryBox RID_QRY_REMOVE_BINDING +{ + Buttons = WB_YES_NO ; + DefButton = WB_DEF_NO ; + Message [ de ] = "Das Lschen der Binding '$BINDINGNAME' wirkt sich auf alle Kontrollfelder aus, die damit verbunden sind.\n\nMchten Sie die Binding wirklich lschen?" ; + Message [ en-US ] = "Deleting the binding '$BINDINGNAME' affects all controls currently bound to this binding.\n\nDo you really want to delete this binding?" ; +}; + +MessBox RID_QRY_LINK_WARNING +{ + Buttons = 0 ; + Message [ de ] = "Diese Instanz ist mit dem Formular verknpft.\n\nnderungen an dieser Instanz gehen nach dem Neuladen des Formulars verloren.\n\nWie mchten Sie fortfahren?" ; + Message [ en-US ] = "This instance is linked with the form.\n\nThe changes you make to this instance will be lost when the form is reloaded.\n\nHow do you want to proceed?" ; +}; + ErrorBox RID_ERR_INVALID_XMLNAME { Buttons = WB_OK ; @@ -358,6 +381,13 @@ ErrorBox RID_ERR_DOUBLE_MODELNAME Message [ en-US ] = "The name '%1' already exists. Please enter a new name." ; }; +ErrorBox RID_ERR_EMPTY_SUBMISSIONNAME +{ + Buttons = WB_OK ; + Message [ de ] = "Die Submission muss einen Namen haben." ; + Message [ en-US ] = "The submission must have a name." ; +}; + ModalDialog RID_SVXDLG_ADD_DATAITEM { HelpID = HID_XFORMS_ADDDATAITEM_DLG ; @@ -1158,8 +1188,8 @@ ModalDialog RID_SVXDLG_ADD_INSTANCE }; String STR_EDIT_TEXT { - Text [ de ] = "Instanz umbenennen" ; - Text [ en-US ] = "Rename Instance" ; + Text [ de ] = "Instanz bearbeiten" ; + Text [ en-US ] = "Edit Instance" ; }; }; @@ -1258,4 +1288,9 @@ String RID_STR_DATANAV_REMOVE_SUBMISSION Text [ de ] = "Submission lschen" ; Text [ en-US ] = "Delete Submission" ; }; +String RID_STR_DATANAV_LINKWARN_BUTTON +{ + Text [ de ] = "~Bearbeiten" ; + Text [ en-US ] = "~Edit" ; +}; |