Einige Übersetzungen für ccm-core, insb, Paginator und SaveCancelSelection

git-svn-id: https://svn.libreccm.org/ccm/trunk@1780 8810af33-2d31-482b-a856-94f89814c4df
master
quasi 2012-07-24 05:10:27 +00:00
parent 4d301a8f49
commit 16c44cea88
5 changed files with 166 additions and 155 deletions

View File

@ -18,7 +18,6 @@
*/ */
package com.arsdigita.bebop; package com.arsdigita.bebop;
import com.arsdigita.bebop.list.ListModel; import com.arsdigita.bebop.list.ListModel;
import com.arsdigita.bebop.list.ListModelBuilder; import com.arsdigita.bebop.list.ListModelBuilder;
import com.arsdigita.bebop.parameters.IntegerParameter; import com.arsdigita.bebop.parameters.IntegerParameter;
@ -27,12 +26,12 @@ import com.arsdigita.util.LockableImpl;
import com.arsdigita.xml.Element; import com.arsdigita.xml.Element;
/** /**
* A pagination component * A pagination component used to select different page views from a list of
* used to select different page views from a list of items. * items.
* *
* <p>In most cases, this component will be used with either a {@link * <p>In most cases, this component will be used with either a {@link
* List} or a {@link Table}. Here is an example on how to use this * List} or a {@link Table}. Here is an example on how to use this pagination
* pagination component with a Table: * component with a Table:
* *
* <blockquote><pre><code> * <blockquote><pre><code>
* Table myTable = new Table(new myTableModelBuilder(), * Table myTable = new Table(new myTableModelBuilder(),
@ -44,11 +43,11 @@ import com.arsdigita.xml.Element;
* p.add(myTable); * p.add(myTable);
* </code></pre></blockquote> * </code></pre></blockquote>
* *
* <p>The model builder that is used in <code>myTable</code> was designed * <p>The model builder that is used in
* to also implement the {@link PaginationModelBuilder} * <code>myTable</code> was designed to also implement the {@link PaginationModelBuilder}
* interface. With both interfaces being implemented by the same * interface. With both interfaces being implemented by the same class, it is
* class, it is much easier to cache the results of operations * much easier to cache the results of operations performed on the {@link com.arsdigita.persistence.DataQuery}
* performed on the {@link com.arsdigita.persistence.DataQuery} used to generate the results. * used to generate the results.
* *
* <blockquote><pre><code> * <blockquote><pre><code>
* public class myTableModelBuilder extends LockableImpl * public class myTableModelBuilder extends LockableImpl
@ -79,16 +78,16 @@ import com.arsdigita.xml.Element;
* } * }
* </code></pre></blockquote> * </code></pre></blockquote>
* *
* <p>Subclasses that wish to render the page links in a different format * <p>Subclasses that wish to render the page links in a different format will
* will override the {@link #buildPaginationDisplay()} method. The * override the {@link #buildPaginationDisplay()} method. The implementation of
* implementation of this method must set the selection model used to * this method must set the selection model used to retrieve the page number by
* retrieve the page number by calling the {@link * calling the {@link
* #setPageNumSelectionModel(SingleSelectionModel)} method. Aside from * #setPageNumSelectionModel(SingleSelectionModel)} method. Aside from changing
* changing the display, this pagination component will hide itself if * the display, this pagination component will hide itself if
* {@link PaginationModelBuilder#getTotalSize(Paginator, PageState)} * {@link PaginationModelBuilder#getTotalSize(Paginator, PageState)} is less
* is less than the page size (i.e., a single page can be used to * than the page size (i.e., a single page can be used to display the entire
* display the entire results). This default behavior can be changed * results). This default behavior can be changed by calling {@link #setHiddenIfSinglePage(boolean)}
* by calling {@link #setHiddenIfSinglePage(boolean)} with * with
* <code>false</code>. * <code>false</code>.
* *
* @see PaginationModelBuilder * @see PaginationModelBuilder
@ -96,48 +95,44 @@ import com.arsdigita.xml.Element;
* @author Phong Nguyen * @author Phong Nguyen
* @version $Id: Paginator.java 287 2005-02-22 00:29:02Z sskracic $ * @version $Id: Paginator.java 287 2005-02-22 00:29:02Z sskracic $
* @since 4.6.10 * @since 4.6.10
**/ *
*/
public class Paginator extends SimpleContainer implements Resettable { public class Paginator extends SimpleContainer implements Resettable {
// $Change: 44247 $ // $Change: 44247 $
// $Revision: #16 $ // $Revision: #16 $
// $DateTime: 2004/08/16 18:10:38 $ // $DateTime: 2004/08/16 18:10:38 $
// $Author: sskracic $ // $Author: sskracic $
// The builder which returns the total number of items to // The builder which returns the total number of items to
// paginate. // paginate.
private PaginationModelBuilder m_builder; private PaginationModelBuilder m_builder;
// The selection model that returns the selected page number. The // The selection model that returns the selected page number. The
// contained ParameterModel should be a StringParameter, since // contained ParameterModel should be a StringParameter, since
// this is the default for List and Table. // this is the default for List and Table.
private SingleSelectionModel m_pageNumModel; private SingleSelectionModel m_pageNumModel;
// The selection model that returns the number of items to display // The selection model that returns the number of items to display
// for one page. // for one page.
private SingleSelectionModel m_pageSizeModel; private SingleSelectionModel m_pageSizeModel;
// This is used to determine if this component should be hidden // This is used to determine if this component should be hidden
// when there is only a single page to display. Defaults to true. // when there is only a single page to display. Defaults to true.
private boolean m_hiddenIfSinglePage; private boolean m_hiddenIfSinglePage;
// A label that contains a space, "&nbsp;". This is used to insert // A label that contains a space, "&nbsp;". This is used to insert
// spaces between the page links from within the list's // spaces between the page links from within the list's
// generateXML() method. // generateXML() method.
private BoxPanel m_spacePanel; private BoxPanel m_spacePanel;
private Label m_space; private Label m_space;
// defined in List.java // defined in List.java
private static final String _SELECT_EVENT = "s"; private static final String _SELECT_EVENT = "s";
/** /**
* Constructor. * Constructor.
* *
* @param builder The builder used to retrieve the total number of * @param builder The builder used to retrieve the total number of results
* results to paginate. * to paginate.
* @param defaultPageSize The default number of results to display on * @param defaultPageSize The default number of results to display on each
* each page. * page.
**/ *
*/
public Paginator(PaginationModelBuilder builder, int defaultPageSize) { public Paginator(PaginationModelBuilder builder, int defaultPageSize) {
super(); super();
@ -157,16 +152,15 @@ public class Paginator extends SimpleContainer implements Resettable {
} }
/** /**
* Builds the display for rendering the page links. Subclasses can * Builds the display for rendering the page links. Subclasses can override
* override this method to provide a different rendering of the * this method to provide a different rendering of the page links. If this
* page links. If this is the case, make sure that the {@link * is the case, make sure that the {@link
* #setPageNumSelectionModel(SingleSelectionModel)} method is * #setPageNumSelectionModel(SingleSelectionModel)} method is called to set
* called to set the selection model for retrieving the selected * the selection model for retrieving the selected page number.
* page number. *
**/ */
protected void buildPaginationDisplay() { protected void buildPaginationDisplay() {
PaginatorList list = new PaginatorList PaginatorList list = new PaginatorList(new PageListModelBuilder(this, getPaginationModelBuilder()));
(new PageListModelBuilder(this, getPaginationModelBuilder()));
setPageNumSelectionModel(list.getSelectionModel()); setPageNumSelectionModel(list.getSelectionModel());
// This is used within the list's generateXML() method to // This is used within the list's generateXML() method to
@ -183,14 +177,14 @@ public class Paginator extends SimpleContainer implements Resettable {
} }
/** /**
* Sets the selection model that is used for returning the * Sets the selection model that is used for returning the selected page
* selected page number. Subclasses that override the {@link * number. Subclasses that override the {@link
* #buildPaginationDisplay()} method will need to call this * #buildPaginationDisplay()} method will need to call this method.
* method.
* *
* @param pageNumModel The selection model used for returning the * @param pageNumModel The selection model used for returning the selected
* selected page number. * page number.
**/ *
*/
protected void setPageNumSelectionModel(SingleSelectionModel pageNumModel) { protected void setPageNumSelectionModel(SingleSelectionModel pageNumModel) {
m_pageNumModel = pageNumModel; m_pageNumModel = pageNumModel;
} }
@ -200,7 +194,8 @@ public class Paginator extends SimpleContainer implements Resettable {
* *
* @param state Represents the current state of the request. * @param state Represents the current state of the request.
* @return The selected page number. * @return The selected page number.
**/ *
*/
public int getSelectedPageNum(PageState state) { public int getSelectedPageNum(PageState state) {
String pageNum = (String) m_pageNumModel.getSelectedKey(state); String pageNum = (String) m_pageNumModel.getSelectedKey(state);
if (pageNum == null) { if (pageNum == null) {
@ -215,7 +210,8 @@ public class Paginator extends SimpleContainer implements Resettable {
* *
* @param state Represents the current state of the request. * @param state Represents the current state of the request.
* @param pageNum The number of the page to set as selected. * @param pageNum The number of the page to set as selected.
**/ *
*/
public void setSelectedPageNum(PageState state, int pageNum) { public void setSelectedPageNum(PageState state, int pageNum) {
m_pageNumModel.setSelectedKey(state, String.valueOf(pageNum)); m_pageNumModel.setSelectedKey(state, String.valueOf(pageNum));
} }
@ -225,7 +221,8 @@ public class Paginator extends SimpleContainer implements Resettable {
* *
* @param state Represents the current state of the request. * @param state Represents the current state of the request.
* @return The number of items to display per page. * @return The number of items to display per page.
**/ *
*/
public int getPageSize(PageState state) { public int getPageSize(PageState state) {
return ((Integer) m_pageSizeModel.getSelectedKey(state)).intValue(); return ((Integer) m_pageSizeModel.getSelectedKey(state)).intValue();
} }
@ -235,22 +232,23 @@ public class Paginator extends SimpleContainer implements Resettable {
* *
* @param state Represents the current state of the request. * @param state Represents the current state of the request.
* @param pageSize The number of items to display per page. * @param pageSize The number of items to display per page.
**/ *
*/
public void setPageSize(PageState state, int pageSize) { public void setPageSize(PageState state, int pageSize) {
m_pageSizeModel.setSelectedKey(state, new Integer(pageSize)); m_pageSizeModel.setSelectedKey(state, new Integer(pageSize));
} }
/** /**
* This returns the total number of pages that will be displayed * This returns the total number of pages that will be displayed by this
* by this paginator. * paginator.
* *
* @param state The page state * @param state The page state
*/ */
public int getTotalPages(PageState state) { public int getTotalPages(PageState state) {
int totalSize = m_builder.getTotalSize(this, state); int totalSize = m_builder.getTotalSize(this, state);
int pageSize = getPageSize(state); int pageSize = getPageSize(state);
int minSize = totalSize/pageSize; int minSize = totalSize / pageSize;
if (minSize*pageSize == totalSize) { if (minSize * pageSize == totalSize) {
return minSize; return minSize;
} else { } else {
return minSize + 1; return minSize + 1;
@ -262,7 +260,8 @@ public class Paginator extends SimpleContainer implements Resettable {
* *
* @param state Represents the current state of the request. * @param state Represents the current state of the request.
* @return The number of the first item to display. * @return The number of the first item to display.
**/ *
*/
public int getFirst(PageState state) { public int getFirst(PageState state) {
return ((getSelectedPageNum(state) - 1) * getPageSize(state)) + 1; return ((getSelectedPageNum(state) - 1) * getPageSize(state)) + 1;
} }
@ -272,7 +271,8 @@ public class Paginator extends SimpleContainer implements Resettable {
* *
* @param state Represents the current state of the request. * @param state Represents the current state of the request.
* @return The number of teh last item to display. * @return The number of teh last item to display.
**/ *
*/
public int getLast(PageState state) { public int getLast(PageState state) {
// NOTE: If the returned integer is used for // NOTE: If the returned integer is used for
// DataQuery.setRange(int, int), then it needs to be // DataQuery.setRange(int, int), then it needs to be
@ -281,66 +281,74 @@ public class Paginator extends SimpleContainer implements Resettable {
} }
/** /**
* Returns the builder that is used to retrieve the total number * Returns the builder that is used to retrieve the total number of items to
* of items to paginate. * paginate.
* *
* @return The builder used to compute the total number of items * @return The builder used to compute the total number of items to
* to paginate. * paginate.
**/ *
*/
public PaginationModelBuilder getPaginationModelBuilder() { public PaginationModelBuilder getPaginationModelBuilder() {
return m_builder; return m_builder;
} }
/** /**
* Specifies whether this component is hidden if there is only a * Specifies whether this component is hidden if there is only a single page
* single page of items to display. * of items to display.
* *
* @return Returns <code>true</code> if this component is hidden * @return Returns
* when there is only a single page to view. * <code>true</code> if this component is hidden when there is only a single
**/ * page to view.
*
*/
public boolean isHiddenIfSinglePage() { public boolean isHiddenIfSinglePage() {
return m_hiddenIfSinglePage; return m_hiddenIfSinglePage;
} }
/** /**
* Sets whether or not this component should be hidden if * Sets whether or not this component should be hidden if there is only a
* there is only a single page of items to display. * single page of items to display.
* *
* @param isHidden By default, this component will be hidden when * @param isHidden By default, this component will be hidden when there is
* there is only a single page to display. Set this to * only a single page to display. Set this to
* <code>false</code> if this is not the desired effect. * <code>false</code> if this is not the desired effect.
**/ *
*/
public void setHiddenIfSinglePage(boolean isHidden) { public void setHiddenIfSinglePage(boolean isHidden) {
m_hiddenIfSinglePage = isHidden; m_hiddenIfSinglePage = isHidden;
} }
/** /**
* Returns <code>true</code> if this component is visible. * Returns
* This component will not be visible if the paginator * <code>true</code> if this component is visible. This component will not
* model builder's isVisible method reports false. * be visible if the paginator model builder's isVisible method reports
* If this component is set to be hidden when there is only * false. If this component is set to be hidden when there is only a single
* a single page to display, then the total page size returned * page to display, then the total page size returned from the {@link PaginationModelBuilder}
* from the {@link PaginationModelBuilder} object must be * object must be greater than the number of items per page.
* greater than the number of items per page.
* *
* @param state Represents the current state of the request. * @param state Represents the current state of the request.
* @return Returns <code>true</code> if this component is visible. * @return Returns
* <code>true</code> if this component is visible.
* *
* @see #getPageSize(PageState) * @see #getPageSize(PageState)
* @see PaginationModelBuilder#getTotalSize(Paginator, PageState) * @see PaginationModelBuilder#getTotalSize(Paginator, PageState)
**/ *
*/
@Override
public boolean isVisible(PageState state) { public boolean isVisible(PageState state) {
return ( super.isVisible(state) && return (super.isVisible(state)
m_builder.isVisible(state) && && m_builder.isVisible(state)
( (!m_hiddenIfSinglePage) || && ((!m_hiddenIfSinglePage)
m_builder.getTotalSize(this, state) > getPageSize(state)) ); || m_builder.getTotalSize(this, state) > getPageSize(state)));
} }
/** /**
* Register the page size selection model. * Register the page size selection model.
* *
* @param p The page to register with. * @param p The page to register with.
**/ *
*/
@Override
public void register(Page p) { public void register(Page p) {
super.register(p); super.register(p);
p.setVisibleDefault(m_spacePanel, false); p.setVisibleDefault(m_spacePanel, false);
@ -351,20 +359,21 @@ public class Paginator extends SimpleContainer implements Resettable {
* Resets this component by clearing the selected page. * Resets this component by clearing the selected page.
* *
* @param state Represents the current state of the request. * @param state Represents the current state of the request.
**/ *
*/
public void reset(PageState state) { public void reset(PageState state) {
m_pageNumModel.clearSelection(state); m_pageNumModel.clearSelection(state);
} }
/** /**
* This class was added to provide greater flexibility in * This class was added to provide greater flexibility in displaying the
* displaying the page links. Links can be displayed in a space * page links. Links can be displayed in a space separated list to support
* separated list to support wrapping or in a table with a fixed * wrapping or in a table with a fixed number of page links per row. By
* number of page links per row. By default the page links will be * default the page links will be rendered inside a one-cell table. If the
* rendered inside a one-cell table. If the number of page links * number of page links to display per line is specified, then each page
* to display per line is specified, then each page link will be * link will be rendered in it's own cell.
* rendered in it's own cell. *
**/ */
private class PaginatorList extends List { private class PaginatorList extends List {
public PaginatorList(ListModelBuilder builder) { public PaginatorList(ListModelBuilder builder) {
@ -372,30 +381,29 @@ public class Paginator extends SimpleContainer implements Resettable {
} }
/** /**
* If the number of page links to display per line is * If the number of page links to display per line is specified then the
* specified then the generated xml will be similar to that of * generated xml will be similar to that of a Table. Else, it will be
* a Table. Else, it will be similar to a simple container. * similar to a simple container.
* *
* @param state Represents the current state of the request. * @param state Represents the current state of the request.
* @param parent The element to which to attach the XML. * @param parent The element to which to attach the XML.
**/ *
*/
@Override
public void generateXML(PageState state, Element parent) { public void generateXML(PageState state, Element parent) {
if ( ! this.isVisible(state)) { if (!this.isVisible(state)) {
return; return;
} }
// maybe display the Previous arrow // maybe display the Previous arrow
if (getSelectedPageNum(state) > 1) { if (getSelectedPageNum(state) > 1) {
state.setControlEvent state.setControlEvent(this, _SELECT_EVENT,
(this, _SELECT_EVENT, Integer.toString(getSelectedPageNum(state) - 1));
Integer.toString(getSelectedPageNum(state) - 1));
(new ControlLink(new Label("<"))).generateXML(state, parent); (new ControlLink(new Label("<"))).generateXML(state, parent);
(new Label(" ")).generateXML(state, parent); (new Label(" ")).generateXML(state, parent);
state.setControlEvent state.setControlEvent(this, _SELECT_EVENT,
(this, _SELECT_EVENT, Integer.toString(getSelectedPageNum(state) - 1));
Integer.toString(getSelectedPageNum(state) - 1)); (new ControlLink(new Label(GlobalizationUtil.globalize("bebop.previous")))).generateXML(state, parent);
(new ControlLink(new Label(GlobalizationUtil.globalize("bebop.previous"))))
.generateXML(state, parent);
(new Label(" ")).generateXML(state, parent); (new Label(" ")).generateXML(state, parent);
} }
@ -407,30 +415,26 @@ public class Paginator extends SimpleContainer implements Resettable {
String key = m.getKey(); String key = m.getKey();
// Converting both keys to String for comparison // Converting both keys to String for comparison
// since ListModel.getKey returns a String // since ListModel.getKey returns a String
boolean selected = (selKey != null) && (key != null) && boolean selected = (selKey != null) && (key != null)
selKey.toString().equals(key.toString()); && selKey.toString().equals(key.toString());
state.setControlEvent state.setControlEvent(this, _SELECT_EVENT, m.getKey());
(this, _SELECT_EVENT, m.getKey());
c = getCellRenderer().getComponent(this, state, m.getElement(), c = getCellRenderer().getComponent(this, state, m.getElement(),
m.getKey(), i, selected); m.getKey(), i, selected);
c.generateXML(state, parent); c.generateXML(state, parent);
m_space.generateXML(state,parent); m_space.generateXML(state, parent);
i += 1; i += 1;
} }
// maybe display the next arrow // maybe display the next arrow
if (getSelectedPageNum(state) < getTotalPages(state)) { if (getSelectedPageNum(state) < getTotalPages(state)) {
state.setControlEvent state.setControlEvent(this, _SELECT_EVENT,
(this, _SELECT_EVENT, Integer.toString(getSelectedPageNum(state) + 1));
Integer.toString(getSelectedPageNum(state) + 1));
(new Label(" ")).generateXML(state, parent); (new Label(" ")).generateXML(state, parent);
(new ControlLink(new Label(GlobalizationUtil.globalize("bebop.next")))) (new ControlLink(new Label(GlobalizationUtil.globalize("bebop.next")))).generateXML(state, parent);
.generateXML(state, parent);
(new Label(" ")).generateXML(state, parent); (new Label(" ")).generateXML(state, parent);
state.setControlEvent state.setControlEvent(this, _SELECT_EVENT,
(this, _SELECT_EVENT, Integer.toString(getSelectedPageNum(state) + 1));
Integer.toString(getSelectedPageNum(state) + 1));
(new ControlLink(new Label(">"))).generateXML(state, parent); (new ControlLink(new Label(">"))).generateXML(state, parent);
} }
@ -440,15 +444,16 @@ public class Paginator extends SimpleContainer implements Resettable {
/** /**
* A list model builder for the pagination list. * A list model builder for the pagination list.
**/ *
*/
private class PageListModelBuilder extends LockableImpl private class PageListModelBuilder extends LockableImpl
implements ListModelBuilder { implements ListModelBuilder {
Paginator m_paginator; Paginator m_paginator;
PaginationModelBuilder m_builder; PaginationModelBuilder m_builder;
public PageListModelBuilder(Paginator paginator, public PageListModelBuilder(Paginator paginator,
PaginationModelBuilder builder) { PaginationModelBuilder builder) {
super(); super();
m_paginator = paginator; m_paginator = paginator;
m_builder = builder; m_builder = builder;
@ -456,17 +461,18 @@ public class Paginator extends SimpleContainer implements Resettable {
public ListModel makeModel(List list, PageState state) { public ListModel makeModel(List list, PageState state) {
return new PageListModel(m_builder.getTotalSize(m_paginator, state), return new PageListModel(m_builder.getTotalSize(m_paginator, state),
getPageSize(state), getPageSize(state),
getSelectedPageNum(state)); getSelectedPageNum(state));
} }
} }
/** /**
* A list model for the pagination list which is used to generate * A list model for the pagination list which is used to generate the text
* the text for the page links. * for the page links.
**/ *
*/
private class PageListModel extends LockableImpl private class PageListModel extends LockableImpl
implements ListModel { implements ListModel {
int m_totalSize; int m_totalSize;
int m_pageSize; int m_pageSize;
@ -490,17 +496,15 @@ public class Paginator extends SimpleContainer implements Resettable {
} }
public Object getElement() { public Object getElement() {
/* TODO: Remove or relocate this /*
int begin = ((m_pageCount-1) * m_pageSize) + 1; * TODO: Remove or relocate this int begin = ((m_pageCount-1) *
int end = (m_pageCount) * m_pageSize; * m_pageSize) + 1; int end = (m_pageCount) * m_pageSize; if (end >
if (end > m_totalSize) { * m_totalSize) { end = m_totalSize; } return "" + begin + "-" +
end = m_totalSize; * end;
} */
return "" + begin + "-" + end;
*/
if (Math.abs(m_current - m_pageCount) <= 5 if (Math.abs(m_current - m_pageCount) <= 5
|| m_pageCount == 1 || m_pageCount == 1
|| m_pageCount * m_pageSize >= m_totalSize){ || m_pageCount * m_pageSize >= m_totalSize) {
return Integer.toString(m_pageCount); return Integer.toString(m_pageCount);
} else { } else {
return "."; return ".";

View File

@ -22,6 +22,7 @@ import com.arsdigita.bebop.FormSection;
import com.arsdigita.bebop.BoxPanel; import com.arsdigita.bebop.BoxPanel;
import com.arsdigita.bebop.Container; import com.arsdigita.bebop.Container;
import com.arsdigita.bebop.form.Submit; import com.arsdigita.bebop.form.Submit;
import com.arsdigita.bebop.util.GlobalizationUtil;
/** /**
* A form section with two buttons (Save and Cancel) aligned to * A form section with two buttons (Save and Cancel) aligned to
@ -59,10 +60,10 @@ public class SaveCancelSection extends FormSection {
private void createWidgets() { private void createWidgets() {
m_saveWidget = new Submit("save"); m_saveWidget = new Submit("save");
m_saveWidget.setButtonLabel("Save"); m_saveWidget.setButtonLabel(GlobalizationUtil.globalize("bebop.save"));
m_cancelWidget = new Submit("cancel"); m_cancelWidget = new Submit("cancel");
m_cancelWidget.setButtonLabel("Cancel"); m_cancelWidget.setButtonLabel(GlobalizationUtil.globalize("bebop.cancel"));
} }
/** /**

View File

@ -91,3 +91,5 @@ bebop.subject=Subject
bebop.body=Body bebop.body=Body
bebop.are_you_sure=Are you sure? bebop.are_you_sure=Are you sure?
bebop.the_model_is_empty=The Model is Empty bebop.the_model_is_empty=The Model is Empty
bebop.save=Save
bebop.cancel=Cancel

View File

@ -67,27 +67,29 @@ bebop.demo.workflow.add_dependency=Add dependency
bebop.demo.workflow.none=None bebop.demo.workflow.none=None
bebop.demo.workflow.h4workflow_templatesh4=<h4>Workflow Templates</h4> bebop.demo.workflow.h4workflow_templatesh4=<h4>Workflow Templates</h4>
bebop.demo.workflow.add_template=add template bebop.demo.workflow.add_template=add template
bebop.page=Page: bebop.page=Seite:
bebop.previous=Previous bebop.previous=Zur\u00fcck
bebop.next=Next bebop.next=Weiter
bebop.please_select_choice_from_the_list_on_the_left=Please select choice from the list on the left bebop.please_select_choice_from_the_list_on_the_left=Please select choice from the list on the left
bebop.send_email_to_everybody=Send email to everybody bebop.send_email_to_everybody=Sende E-Mail an alle
bebop.basic_item_metadata=Basic Item Metadata bebop.basic_item_metadata=Basic Item Metadata
bebop.title=Title: bebop.title=Titel:
bebop.click_here=click here bebop.click_here=click here
bebop.demo.foo_is_null=foo is null. bebop.demo.foo_is_null=foo is null.
bebop.demo.this_link_showshides_the_blurb=This link shows/hides the Blurb bebop.demo.this_link_showshides_the_blurb=This link shows/hides the Blurb
bebop.demo.no_action=no action bebop.demo.no_action=no action
bebop.event.default_text=Default text bebop.event.default_text=Default text
bebop.event.call_no=Call no. bebop.event.call_no=Call no.
bebop.first_name=First Name: bebop.first_name=Vorname:
bebop.last_name=Last Name: bebop.last_name=Nachname:
bebop.hello_world=Hello World bebop.hello_world=Hello World
bebop.edit_the_foo_property=Edit the Foo property bebop.edit_the_foo_property=Edit the Foo property
bebop.table.=&nbsp; bebop.table.=&nbsp;
bebop.the_table_is_empty=The table is empty bebop.the_table_is_empty=The table is empty
bebop.util.some_text=Some Text bebop.util.some_text=Some Text
bebop.subject=Subject bebop.subject=Betreff
bebop.body=Body bebop.body=Body
bebop.are_you_sure=Are you sure? bebop.are_you_sure=Sind Sie sicher?
bebop.the_model_is_empty=The Model is Empty bebop.the_model_is_empty=The Model is Empty
bebop.save=Speichern
bebop.cancel=Abbrechen

View File

@ -90,4 +90,6 @@ bebop.util.some_text=TRANSLATE THIS: Some Text (bebop.util.some_text)
bebop.subject=TRANSLATE THIS: Subject (bebop.subject) bebop.subject=TRANSLATE THIS: Subject (bebop.subject)
bebop.body=TRANSLATE THIS: Body (bebop.body) bebop.body=TRANSLATE THIS: Body (bebop.body)
bebop.are_you_sure=TRANSLATE THIS: Are you sure? (bebop.are_you_sure) bebop.are_you_sure=TRANSLATE THIS: Are you sure? (bebop.are_you_sure)
bebop.the_model_is_empty=TRANSLATE THIS: The Model is Empty (bebop.the_model_is_empty) bebop.the_model_is_empty=TRANSLATE THIS: The Model is Empty (bebop.the_model_is_empty)
bebop.save=TRANSLATE THIS: Previous (bebop.save)
bebop.cancel=TRANSLATE THIS: Previous (bebop.cancel)