12345678910111213141516171819202122232425262728293031323334 |
- /*******************************************************************************
- * IBM Confidential
- *
- * OCO Source Materials
- *
- * A and PM: PD
- *
- * (c) Copyright IBM Corp. 2014
- *
- * The source code for this program is not published or otherwise divested of
- * its trade secrets, irrespective of what has been deposited with the U.S.
- * Copyright Office.
- ******************************************************************************/
- define(["pd/i18n"], function() {
- return [
- {
- name: "added",
- label: PDMSG.ANA.IDS_ANA_ADDED_COLUMNS,
- groupLabel: PDMSG.ACC.IDS_ACC_GROUP_LABEL_ADDED_COLUMN,
- contentLabel: PDMSG.ACC.IDS_ACC_GROUP_LABEL_ADDED_COLUMN_CONTENT
- },{
- name: "removed",
- label: PDMSG.ANA.IDS_ANA_REMOVED_COLUMNS,
- groupLabel: PDMSG.ACC.IDS_ACC_GROUP_LABEL_REMOVED_COLUMN,
- contentLabel: PDMSG.ACC.IDS_ACC_GROUP_LABEL_REMOVED_COLUMN_CONTENT
- },{
- name: "typeChanged",
- label: PDMSG.ANA.IDS_ANA_TYPE_CHANGED_COLUMNS,
- groupLabel: PDMSG.ACC.IDS_ACC_GROUP_LABEL_COLUMN_TYPE_CHANGED,
- contentLabel: PDMSG.ACC.IDS_ACC_GROUP_LABEL_COLUMN_TYPE_CHANGED_CONTENT
- }
- ]
- });
|