1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24#ifndef _DBU_CONTROL_HRC_ 25#include "dbu_control.hrc" 26#endif 27 28String STR_TABLE_PRIV_NAME 29{ 30 Text [ en-US ] = "Table name"; 31}; 32 33String STR_TABLE_PRIV_INSERT 34{ 35 Text [ en-US ] = "Insert data"; 36}; 37 38String STR_TABLE_PRIV_DELETE 39{ 40 Text [ en-US ] = "Delete data"; 41}; 42 43String STR_TABLE_PRIV_UPDATE 44{ 45 Text [ en-US ] = "Modify data"; 46}; 47 48String STR_TABLE_PRIV_ALTER 49{ 50 Text [ en-US ] = "Alter structure"; 51}; 52String STR_TABLE_PRIV_SELECT 53{ 54 Text [ en-US ] = "Read data"; 55}; 56 57String STR_TABLE_PRIV_REFERENCE 58{ 59 Text [ en-US ] = "Modify references"; 60}; 61 62String STR_TABLE_PRIV_DROP 63{ 64 Text [ en-US ] = "Drop structure"; 65}; 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93