prompt Package wsglm... create or replace package wsglm is /********************************************************************** ** Caption: The text forms the caption/prompt for an item ** (1-100) **********************************************************************/ -- The text displaced in radio groups and lists which represents a null value -- in an optional column based on a domain. CAP001_UNKNOWN constant varchar2(100) := 'Bilinmiyor'; -- The text used in link to an insert form.
is replaced by the zone -- caption CAP002_ADD_LINK constant varchar2(100) := 'Yeni
kaydı ilave et'; -- Query Form: Default Caption for Find Button CAP003_QF_FIND constant varchar2(100) := 'Bul'; -- Query Form: Default Caption for Clear Button CAP004_QF_CLEAR constant varchar2(100) := 'Temizle'; -- View Form: Default Caption for Requery Button CAP005_VF_REQUERY constant varchar2(100) := 'YenidenSorgula'; -- View Form: Default Caption for Update Button CAP006_VF_UPDATE constant varchar2(100) := 'Güncelle'; -- View Form: Default Caption for Delete Button CAP007_VF_DELETE constant varchar2(100) := 'Sil'; -- View Form: Default Caption for Revert Button CAP008_VF_REVERT constant varchar2(100) := 'Geri Al'; -- Insert Form: Default Caption for Insert Button CAP009_IF_INSERT constant varchar2(100) := 'Ekle'; -- Insert Form: Default Caption for Clear Button CAP010_IF_CLEAR constant varchar2(100) := 'Temizle'; -- Record List: Default Caption for Next Button CAP011_RL_NEXT constant varchar2(100) := 'İleri'; -- Record List: Default Caption for Previous Button CAP012_RL_PREVIOUS constant varchar2(100) := 'Geri'; -- Record List: Default Caption for First Button CAP013_RL_FIRST constant varchar2(100) := 'İlk'; -- Record List: Default Caption for Last Button CAP014_RL_LAST constant varchar2(100) := 'Son'; -- Record List: Default Caption for Count Button CAP015_RL_COUNT constant varchar2(100) := 'Say'; -- Record List: Default Caption for Requery Button CAP016_RL_REQUERY constant varchar2(100) := 'YenidenSorgula'; -- Record List: Default Caption for Find Button CAP017_LOV_FIND constant varchar2(100) := 'Bul'; -- Record List: Default Caption for Close Button CAP018_LOV_CLOSE constant varchar2(100) := 'Kapat'; -- List of Values: Caption for search criterion field in LOV.
is the caption
-- of the data field
CAP019_LOV_FILTER_CAPTION constant varchar2(100) := 'Kapat is replaced with the
-- number of the record
DSP109_RECORD constant varchar2(100) := 'Kayıt ';
-- Text displayed when more than one row is in record list. is replaced
-- with the number of the first record, and is replaced with the total
DSP111_OF_TOTAL constant varchar2(100) := ' ';
-- Text displayed when no row is in record list.
DSP112_NO_RECORDS constant varchar2(100) := 'Hiç Kayıt Yoktur';
-- Text used in link to a detail if the number of rows are to be displayed.
-- is replaced withthe number of rows
DSP113_DETAIL_ROWS constant varchar2(100) := '( Sıralar )';
-- Text displayed at start of a QueryForm, where there is no module
-- component caption
DSP115_ENTER_QRY constant varchar2(100) := 'Sorgu Ölçütlerini Giriniz';
-- Text displayed at start of a QueryForm, where there is a module
-- component caption. is replaced with that caption
DSP116_ENTER_QRY_CAPTION constant varchar2(100) := ' için Sorgu Ölçütlerini Giriniz';
-- Text displayed at start of a Inset Form, is replaced with module
-- component caption. Note: the module component caption could be null.
DSP117_ENTER_NEW_ROW constant varchar2(100) := 'Yeni kaydının değerini giriniz';
-- Text displayed at start of a Delete Form.
DSP118_CONFIRM_DELETE constant varchar2(100) := 'Lütfen Sil emrini teyit ediniz';
-- Text displayed between two range controls in a Query Form
DSP119_RANGE_TO constant varchar2(100) := 'git';
-- Date prompt in standard footer
DSP120_DATE constant varchar2(100) := 'Tarih';
-- Text displayed at top of form after a successful insert/update
DSP121_SUCCESS constant varchar2(100) := 'Başarılı';
-- Text displayed at top of form after an unsuccessful insert/update
DSP122_ERROR constant varchar2(100) := 'Hata';
-- Caption for a list of values form
DSP123_LOV_CAPTION constant varchar2(100) := ' Değerleri Listesi';
-- Text displayed when a search criterion is required for a List of Values. is the
-- caption of the fieldwhich the search is applied
DSP124_LOV_ENTER_SEARCH constant varchar2(100) := 'Lütfen is replaced by WSGL.MAX_ROWS.
MSG203_MAX_ROWS constant varchar2(100) := 'Maksimum sayıda kayıt ( ) döndürüldü';
-- Message issued when an attempt is made to access a row which has been deleted
-- (presumably by another user)
MSG204_ROW_DELETED constant varchar2(100) := 'Sıra başka bir kullanıcı tarafından silindi';
-- Message issued after a successful row update
MSG207_ROW_UPDATED constant varchar2(100) := 'Sıra Güncellendi';
-- Message issued after a successful row insert
MSG208_ROW_INSERTED constant varchar2(100) := 'Sıra Eklendi';
-- Message issued when an invalid value has been entered in a domain
MSG209_INVALID_DV constant varchar2(100) := 'Geçersiz Değer';
-- Message issued when an invalid value has been entered in a query field.
-- The is replaced by the field caption.
MSG210_INVALID_QRY constant varchar2(100) := ' alanında(alanlarında) geçersiz değer';
-- Action text issued when an invalid value has been entered in a date
-- Query field. The is replaced by the current date in the required format
MSG211_EXAMPLE_TODAY constant varchar2(100) := 'Gösterilen formatda giriniz : ';
-- Part of the message issued when a column which has a format mask fails
-- some basic validation. is replaced by the format mask.
MSG212_FOMAT_MASK constant varchar2(100) := '(Format Maskesi )';
-- Message issued when attempting to navigate beyond the first record set
MSG213_AT_FIRST constant varchar2(100) := 'İlk Sırada';
-- Message issued when attempting to navigate beyond the last record set
MSG214_AT_LAST constant varchar2(100) := 'Son Sırada';
-- Message issued if browser does not support multiple submit buttons.
MSG215_NO_MULTIPLE_SUBMITS constant varchar2(200) :=
'Kullanılan gözatıcı çoklu formda tuşlarla çalışmıyor, bu sebeple istenilen uygulamayı çalıştıramıyor';
-- Message issued after a successful row delete
MSG216_ROW_DELETED constant varchar2(100) := 'Sıra silindi';
-- Message issued if an unhandled exception occurs. is replaced by the name of the
-- routine
MSG217_EXCEPTION constant varchar2(200) := 'Gösterilen hata rutininde meydana gelmiştir';
-- Message issued as suggested action following an unhandled exception.
MSG218_CONTACT_SUPPORT constant varchar2(100) := 'Lütfen teknik destek temsilcinize başvurun';
-- Message issued if mandatory field is missing. is the field caption.
MSG219_MISSING_MANDATORY constant varchar2(100) := ' Bir değer girilmelidir';
-- Message issued if numeric precision is wrong. Değerde is the field caption.
MSG222_SCALE_ERROR2 constant varchar2(100) := ' Değerde katsayı hanesi bulunamaz';
-- Message issued if value is not in range.