forked from layerfsd/Roomer-PMS-1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPrjConst.pas
2099 lines (1854 loc) · 126 KB
/
PrjConst.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit PrjConst;
interface
uses SysUtils
;
resourcestring
SVersion = 'Version ';
SDatabase = 'Database ';
function GetTranslatedText(nameOfConstant : String) : String;
procedure GenerateTranslateTextTableForConstants;
procedure GenerateTranslateTextTableForAllForms;
implementation
uses uAppGlobal,
uProvideARoom2,
uRoomerLanguage,
// uInvoiceInfo,
uReservationProfile,
uInvoicePayment,
uControlData,
uFrmBusyMessage,
uFinishedInvoices2,
// uRoomStatus,
// uInvoiceCompress,
uInvoiceList,
uConverts,
ufrmSelLang,
// uHotelListMissing,
uMaidActions,
uMaidActionsEdit,
uInvoiceSummeryOBJ,
// uMakeReservation,
uRoomDateProblem,
uResProblem,
// uStatisticsForcast,
uRptFinance,
uConvertGroups,
uInvoiceList2,
// uRptCustomer,
uDayNotes,
uChangeRRdates,
uChangeRate,
uOpenInvoicesNew,
uResMemos,
uHomeDate,
uAllotmentToRes,
uGoToRoomAndDate,
uHiddenInfo,
uDownPayment,
uFrmChannelTogglingRules,
uLodgingTaxReport2,
uCancelReservation3,
uCancelReservation2,
uNationalReport3,
uAddAccommodation,
uCountries,
uPayGroups,
uPriceCodes,
uGuestProfile2,
uPayTypes,
uCountryGroups,
uVatCodes,
uRebuildReservationStats,
uMakeReservationQuick,
uSplashRoomer,
RoomerLoginForm,
uAboutRoomer,
uChannelAvailabilityManager,
ueditRoomPrice,
uRoomCleanMaintenanceStatus,
uRates,
uSeasons2,
uRoomRates,
uRoomTypesGroups2,
uRoomTypes2,
uPackageItems,
uRooms3,
uCustomers2,
uStaffEdit2,
uStaffMembers2,
uCustomerEdit2,
uChannels,
// uSystemTriggers,
// uCreatePassword,
// uSystemServers,
// uSystemActions,
// uChannelRates,
uStaffTypes2,
uItems2,
uItemTypes2,
uLocations2,
uCurrencies,
uChannelManager,
uCommunicationTest,
uHouseKeeping,
// uTableEditForm,
uRptResStats,
uGuestSearch,
// uRptResDates,
uMultiSelection,
uPersonviptypes,
uPersoncontacttype,
ufrmKeyPairSelector,
uFrmResources,
uAssignPayment,
ufDownPayments,
uTaxes,
uFrmMessagesTemplates,
uFrmNotepad,
uRptResInvoices,
uRptTotallist,
uRptCustInvoices,
uFrmRBEContainer,
uFrmRbePreferences,
urptRoomrentStatistics,
uFrmHandleBookKeepingException,
uRoomClassEdit,
urptReservations,
uFrmPostInvoices,
uGuestCheckInForm,
uRptNotes,
// uRptGuests,
uReservationHintHolder,
uEmbOccupancyView,
uFrmRateQuery,
uRptTurnoverAndPayments,
uRptResStatsRooms,
uRptReservationsCust,
uEmailingDialog,
uMakeKreditInvoice,
uGuestProfiles,
uGuestPortfolioEdit,
uBookKeepingCodes,
uFrmEditResourceProperties,
uRptBookkeeping,
uReservationEmailingDialog,
uFrmReservationCancellationDialog,
uRptCashier,
uPhoneRates,
uGroupGuests,
uEmailExcelSheet,
// uInvoice2015,
uFrmMergePortfolios,
uStaffComm,
uFrmCheckOut,
uFrmStaffNote,
uFrmMessageViewer,
uInvoiceCompare,
uFrmAlertEdit,
uFrmAlertDialog,
uAlertEditPanel,
uFrmCustomerDepartmentEdit
, uRptDepartures
, uRptStockItems
, ufrmPaymentReqRoomtypeGroup
, uOfflineReportGrid
, uHotelStatusOfflineReport
, uHotelArrivalsOfflineReport
, uRptArrivals
, uFrmRoomReservationCancellationDialog
, uCleaningNotes
, uCleaningNotesEdit
, uRptDailyRevenues
, uRptHouseKeeping
, uDayClosingTimes
, uEditFinanceExportProperties
, uRptReservationStatusPerDay
, uFrmFinanceConnect
, uPCITokenReport
, uFrmOptInMessage
, uFrmTokenChargeHistory
, uFrmViewChargeInfo
, uFrmPayCardCreateNew
, uFrmChargePayCard
, uFrmManagePCIConnection
, uItemTransactionsReport
, ufrmInvoiceEdit
, uUtils
, Generics.Collections
, uFrmConnectionsStatistics
, uResGuestList, uRptBreakfastList;
const PRE_KEY_NAME = 'PrjConst.Constants.';
procedure OriginalConstants;
begin
constants.Add('SVersion', 'Version ');
constants.Add('sDatabase', 'Database ');
//uMain
constants.Add('sh0070', 'Version');
constants.Add('sh0080', 'Ver');
constants.Add('shWrongLoginAttempts', 'Wrong username or password - %d attempts.');
constants.Add('shStillWorkingInInvoice',
'You still are working on an invoice!' + #13#13 +
'Please finish working on the current invoice before proceeding.');
constants.Add('sh1004', 'Quit ROOMER?');
constants.Add('sh1007', 'Can not access from Guest view');
constants.Add('sh1008', 'Can not access from period view');
constants.Add('sh1010', 'Room status is Checked-in');
constants.Add('shCheckInGroupOfRoom', 'Check in the group that this room [%s] belongs to?');
constants.Add('shCheckOutGroupOfRoom', 'Check Out the group that this room [%s] belongs to?');
constants.Add('shChangeStateOfFullReservation', 'Change state of all rooms of reservation [%d] into [%s]?');
constants.Add('shChangeStateReservationFailedSomeROoms', 'Changing the state of the reservation failed for some rooms.' + #10 +
'Check individual states in the reservation profile.');
constants.Add('sh1013', 'Room status is blocked and check in or check out is not possible');
constants.Add('sh1014', 'Room status is checked-out');
constants.Add('sh1015', 'Room status is reserved (not checked-in)');
constants.Add('sh1016', 'Room status is overbooked');
constants.Add('sh1017', 'Room status is reserved');
constants.Add('sh1018', 'Room status is allotment');
constants.Add('sh1019', 'Room status is no-show');
constants.Add('sh1020', 'Room status is Chanceled');
constants.Add('sh1021', 'Room status is Tmp1');
constants.Add('sh1022', 'Room status is Tmp2');
constants.Add('shCheckOutSelectedRoom', 'Check-out room %s?');
constants.Add('shCannotCheckoutRoom', '%s - Can not check-out room %s.');
constants.Add('shStatusIsNoShowFirstChange', 'Status is NO-show.' + #13#13 + 'You need to change the status first.');
constants.Add('sh1080', 'error - rooms Grid');
constants.Add('sh1081', 'error - no-Rooms-grid');
constants.Add('sh1091', 'error raised, with message');
constants.Add('sh1092a', 'The program to execute');
constants.Add('sh1092b', 'not found');
constants.Add('sh1045', 'Invoice: <b>Not made or unknown</b>.');
constants.Add('sh1046', 'Invoice: <b>Compressed lines - Unknown</b>.');
constants.Add('shOneDayGetReservationRoom', '%s / Reservation: %s (%d rooms) / %s');
constants.Add('shRooms', 'Rooms');
constants.Add('shMainFormStatisticsRooms', 'Rooms');
constants.Add('shRoom', 'Room');
constants.Add('shNoRoom', 'No room');
constants.Add('shCheckRoom', 'Check in room %s');
constants.Add('shType', 'Type');
constants.Add('shGuestReservation', 'Guest/reservation');
constants.Add('shArrival', 'Arrival');
constants.Add('shDeparture', 'Departure');
constants.Add('shRoomInformation', 'Room information');
constants.Add('shBookingIdText', 'Channel Booking Id');
constants.Add('shRoomNotAssignedYet', 'This reservation has not been assigned a room yet');
constants.Add('shWAITINGLIST', 'WAITINGLIST');
//constants.Add('shALOTMENT', 'ALOTMENT');
constants.Add('shALOTMENT', 'ALLOTMENT');
constants.Add('shNOSHOW', 'NO-SHOW');
constants.Add('shBLOCKED', 'BLOCKED');
constants.Add('shCanceled', 'CANCELED'); //*HJ 140206
constants.Add('shTMP1', 'TMP1'); //*HJ 140206
constants.Add('shTMP2', 'TMP2'); //*HJ 140206
constants.Add('shTelephone', 'Telephone');
constants.Add('shFax', 'Fax');
constants.Add('shPrice', 'Price');
constants.Add('shPriceAfterDiscount', 'Price after discount');
constants.Add('shDiscount', 'Discount');
constants.Add('shInvoice', 'Invoice');
constants.Add('shRoomMemo', 'Room Memo');
constants.Add('shPaymentInfo', 'Payment info');
// constants.Add('shRefrence', 'Refrence');
constants.Add('shRefrence', 'Reference');
constants.Add('shReserved', 'Reserved : ');
constants.Add('shResMemo', 'Res Memo');
constants.Add('shToOneDay', 'To one day');
constants.Add('shHideText', 'Hide text');
constants.Add('shShowText', 'Show text');
constants.Add('shCreated', 'Created');
constants.Add('shUser', 'User');
constants.Add('shGroups', 'Groups');
constants.Add('shArriving', 'Arriving');
constants.Add('shDeparting', 'Departing');
constants.Add('shPasswordNoMatch', 'Passwords Don''t match');
constants.Add('shAll', 'All');
//Login
constants.Add('shDaysLeft', 'Days left');
// TfrmMakeReservationQuick
constants.Add('shNotF_star', '** not found **');
constants.Add('shNotF_upph', ' not found !!');
constants.Add('shPriceFor', 'price for ');
constants.Add('shAndCurrency', 'and Currency ');
constants.Add('shAndPersonVipType', 'and Person VIP Type ');
constants.Add('shAndPersonContactType', 'and Person Contact Type ');
constants.Add('shCurrencyRate', 'Rate');
// uCountryGroups;
constants.Add('shDeleteCountrygroup', 'Delete countrygroup');
constants.Add('shDeleteChannelManager', 'Delete channel manager');
constants.Add('shDeleteConvertItem', 'Delete convert item');
constants.Add('shDeleteCountry', 'Delete country');
constants.Add('shDeleteCurrency', 'Delete currency');
constants.Add('shDeletePersonVipType', 'Delete Person VIP Type');
constants.Add('shDeletePersonContactType', 'Delete Person Contact Type');
constants.Add('shDeletePhoneRate', 'Delete Phone rate');
constants.Add('shDeletepaygroup', 'Delete paygroup');
constants.Add('shDeletepayType', 'Delete paytype');
constants.Add('shDeleteRateRule', 'Delete Rate rule');
constants.Add('shDeleteRoomRate', 'Delete Room rate');
constants.Add('shDeleteRoomClass', 'Delete Room class');
constants.Add('shDeleteSeason', 'Delete season');
constants.Add('shDeleteItemtype', 'Delete item type');
constants.Add('shDeleteItem', 'Delete item');
constants.Add('shDeleteSelectedLine', 'Delete selected line');
constants.Add('shDeleteSelectedLines', 'Deleting ALL selected lines.');
constants.Add('shDeleteLocation', 'Delete location');
constants.Add('shDeleteRoom', 'Delete Room');
constants.Add('shDeleteMarketSegment', 'Delete marketsegment');
constants.Add('shDeleteCustomer', 'Delete customer');
constants.Add('shDeleteStaffType', 'Delete stafftype');
constants.Add('shDeleteStaffMember', 'Delete staffMember');
constants.Add('shDeleteChannel', 'Delete channel');
constants.Add('shDeleteSystemServers', 'Delete SystemServer');
constants.Add('shDeleteSystemAction', 'Delete SystemAction');
constants.Add('shDeleteSystemTrigger', 'Delete SystemTrigger');
constants.Add('shDeletePackage', 'Delete Package');
constants.Add('shDeletePackageItem', 'Delete Package item');
constants.Add('shDeletePerson', 'Delete Person');
constants.Add('shDeleteVATCode', 'Delete VAT Code');
constants.Add('shDeleteBookKeepingCode', 'Delete book-keeping code');
constants.Add('shDeleteDynamicPriceRule', 'Delete the selected dynamic price rule?');
//
constants.Add('shFilterOnRecordsOf', 'Filter on - %d records of %d are visible');
constants.Add('shEnterTextToFilterGrid', 'Enter text to filter grid');
constants.Add('shFilter', 'Filter : ');
constants.Add('shClear', 'Clear');
constants.Add('shExistsInRelatedData', 'exists in related data');
constants.Add('shCanNotDelete', 'can not delete');
constants.Add('shExistsInRelatedDataCannotDelete', '%s %s exists in related data' + #10 + 'Cannot delete!');
constants.Add('shContinue', 'Continue ?');
constants.Add('shNewValueExistInAnotherRecor', 'New value exist in another record. Use [ESC] to cancel');
constants.Add('shOldValueUsedInRelatedDataC', ' Old value used in related data can not change - Use [ESC] to cancel');
constants.Add('shCustomer_CannotDeleteRackCustomer', 'Default customer cannot be deleted');
end;
procedure AddConstants_1;
begin
constants.Add('shTx_AuthNeeded', ' Authentication needed... ');
constants.Add('shTx_Available', 'Available');
constants.Add('shTx_ChannelAvailable', 'Channel');
constants.Add('shTx_Class', 'Class');
constants.Add('shTx_Authenticating', ' Authenticating... ');
constants.Add('shTx_AuthSuccess', ' Authentication successful ');
constants.Add('shTx_Taken', 'Taken');
constants.Add('shTx_NoRm', 'NoRm');
constants.Add('shTx_Free', 'Free');
constants.Add('shTx_Netto', 'Netto');
constants.Add('shTx_Cancelled', 'Cancel');
constants.Add('shTx_NoFilterActive', 'No filter is currently active.');
constants.Add('shTx_SearchAndFilterActive', 'Search for ''%s'' AND filter currently active.');
constants.Add('shTx_SearchActive', 'Search for ''%s'' currently active.');
constants.Add('shTx_FilterActive', 'Filter is currently active.');
constants.Add('shTx_FreeRoomsFilterActive', 'Filter on Rooms that are free for the next %d currently active.');
constants.Add('shTx_Location', 'Location');
constants.Add('shTx_Description', 'Description');
constants.Add('shTx_Floor', 'Floor');
constants.Add('shTx_NumGuests', 'Num guests');
constants.Add('shTx_ReportedBy', 'Reported by');
constants.Add('shTx_CleaningNotes', 'Cleaning notes');
constants.Add('shTx_CleaningNoteServiceType_Interval', 'Interval');
constants.Add('shTx_CleaningNoteServiceType_Once', 'Once');
constants.Add('shTx_CleaningNoteintervalType_Checkin', 'Checkin');
constants.Add('shTx_CleaningNoteintervalType_BeforeCheckout', 'Day Before Checkout');
constants.Add('shTx_CleaningNoteintervalType_CheckOut', 'At Checkout');
constants.Add('shTx_CleaningNoteintervalType_XthDay', 'On Xth day of stay');
constants.Add('shTx_CleaningNoteintervalType_XdaysAfterCheckout', 'X days after checkout');
// constants.Add('shTx_MaintenanceNotes', 'Mainteance notes');
constants.Add('shTx_MaintenanceNotes', 'Maintenance notes');
constants.Add('shTx_LostAndFount', 'Lost and found');
constants.Add('shTx_Equipment', 'Equipment');
constants.Add('shTx_Status', 'Status');
constants.Add('shTx_PerNight', '/night');
constants.Add('shTx_ReceivedVia', 'Received via');
constants.Add('shTx_ManuallyEnteredReservation', 'Manually entered reservation');
constants.Add('shTx_GroupAccount', 'Group account');
constants.Add('shTx_Note', 'NOTE');
constants.Add('shTx_UnpaidItemsOnInv', 'Unpaid items on invoice!');
constants.Add('shTx_NoUnpaidItemsOnInv', 'No unpaid items on invoice');
constants.Add('shTx_ReservationIdNotFound', 'Reservation %d not found. Please call Roomer support and provide this reservation number.!');
constants.Add('shTx_UnderDevelopment', 'Under development');
constants.Add('shTx_SaveToCurrencytable', 'Save to currencytable ' + chr(10) + 'Note : This will have effect on all ' + chr(10) + 'unBooked invoices ');
constants.Add('shTx_CurrencyUpdateError', 'Error updating currency rate');
constants.Add('shTx_CancelReservation2_RoomDescriptionAll', 'Room: [%s] %s. - Type: [%s] %s. - Location: %s');
constants.Add('shTx_CancelReservation2_GuestArrivalDeparture', 'Arrival: %s, Departure: %s');
constants.Add('shTx_CancelReservation3_RemovingAllRooms', 'Removing ALL rooms from reservation');
constants.Add('shTx_CancelReservation3_RemovingXRoomsOfYReservedRooms', 'Removing %d rooms of %d reserved rooms');
constants.Add('shTx_ChannelAvailabilityManager_IncorrectAvailability', 'Incorrect availability');
constants.Add('shTx_ChannelAvailabilityManager_EnterValidAvailability', 'Please enter a valid availability value');
constants.Add('shTx_ChannelAvailabilityManager_CurrentRates', 'Current rates on ');
constants.Add('shTx_ChannelAvailabilityManager_AllRoomTypes', 'All Room Types');
constants.Add('shTx_ChannelAvailabilityManager_AllPlanCodes', 'All Plan Codes');
constants.Add('shTx_ChannelAvailabilityManager_Availability', 'Availability');
constants.Add('shTx_ChannelAvailabilityManager_BulkAvailabilityUpdate', 'Bulk availability update');
constants.Add('shTx_ChannelAvailabilityManager_Rate', 'Rate');
constants.Add('shTx_ChannelAvailabilityManager_BulkRateUpdate', 'Bulk rate update');
constants.Add('shTx_ChannelAvailabilityManager_Availability2', 'AVAILABILITY');
constants.Add('shTx_ChannelAvailabilityManager_Rates', 'RATES');
constants.Add('shTx_ChannelAvailabilityManager_OnlineManagement', 'ONLINE MANAGEMENT');
constants.Add('shTx_ChannelAvailabilityManager_ChangesContinue', 'All changes will be lost. Continue?');
constants.Add('shTx_ChannelAvailabilityManager_ConfirmRemoveRates', 'NOTE: This will initiate removal of all current rates for the selected channel manager.'#13''#10''#13''#10'Afterwards rates will be re-read for all classes.'#13''#10''#13''#10' Continue?');
constants.Add('shTx_ChannelAvailabilityManager_EnterValidValue', 'Please enter a valid availability value');
constants.Add('shTx_ChannelAvailabilityManager_RoomAvailability', '%sAvailability: %s%d%s rooms.</font></font></body>');
// constants.Add('shTx_ChannelManager_DescriptionRequired', 'Description is requierd - canceling insert - try again');
constants.Add('shTx_ChannelManager_DescriptionRequired', 'Description is required - canceling insert - try again');
// constants.Add('shTx_ChannelManager_CodeRequired', 'Code is requierd - canceling insert - try again');
constants.Add('shTx_ChannelManager_CodeRequired', 'Code is required - canceling insert - try again');
constants.Add('shTx_ChannelManager_DescriptionError', 'Description');
constants.Add('shTx_ChannelManager_DescriptionError2', 'is required - Use ESC to cancel');
constants.Add('shTx_ChannelManager_EditInGrid', 'edit in grid');
constants.Add('shTx_Channels_UpdateNotOk', 'UPDATE NOT OK');
// constants.Add('shTx_Channels_ChannelRequired', 'Channel is requierd - set value or use [ESC] to cancel ');
constants.Add('shTx_Channels_ChannelRequired', 'Channel is required - set value or use [ESC] to cancel ');
constants.Add('shTx_CommunicationTest_DayGuests', 'Current Day Guests ');
constants.Add('shTx_CommunicationTest_CustomerList', 'Full Customer list ');
// constants.Add('shTx_ControlData_NoAccount', 'Formskrá reiknings fannst ekki'#10'undir liðnum Reikningur er reitur '#10'til að staðsetja skránna '#10'Upphafsnafn (default name) hennar '#10'er islInvoice.fr3 ');
constants.Add('shTx_ControlData_NoAccount', 'Invoice Form not found'#10'in default location '#10'To locate the file '#10'Its default name '#10'is islInvoice.fr3 ');
// constants.Add('shTx_ControlData_Tax', 'Ath: Það er ekki búið að skilgreina vörunúmer gistináttaskatts !');
constants.Add('shTx_ControlData_Tax', 'Note: Overnight tax code has not been specified');
// constants.Add('shTx_ControlData_Indent', 'Veldu undirlið %s');
constants.Add('shTx_ControlData_Indent', 'Select subitem %s');
// constants.Add('shTx_ControlData_NotAForm', '%s er ekki Formskrá (*.fr3) ');
constants.Add('shTx_ControlData_NotAForm', '%s is not a form (*.fr3) ');
constants.Add('shTx_ConvertGroups_CodeIsRequiredUseEsc', 'cgCode code - is required - Use ESC to cancel');
// constants.Add('shTx_ConvertGroups_CodeRequired', 'cgCode code is requierd - canceling insert - try again');
constants.Add('shTx_ConvertGroups_CodeRequired', 'cgCode code is required - canceling insert - try again');
constants.Add('shTx_ConvertGroups_NewData', 'Use editrow to add new data');
constants.Add('shTx_ConvertGroups_EditData', 'Use editrow to edit data');
constants.Add('shTx_Converts_TypeRequired', 'Convert Type - is required - Use ESC to cancel');
constants.Add('shTx_Countries_CodeRequired', 'Country code is required - canceling insert - try again');
constants.Add('shTx_Countries_CountryCodeIsRequired', 'Country code is required - Use ESC to cancel');
constants.Add('shTx_Currencies_Required', 'Currency required - set value or use [ESC] to cancel ');
constants.Add('shTx_Currencies_CodeIsRequired', 'Currency code - is required - Use ESC to cancel');
constants.Add('shTx_Currencies_RateCannotBeZeroCancel', 'Rate can not be 0 - Use ESC to cancel');
constants.Add('shTx_Currencies_EditInGrid', 'Edit in grid');
constants.Add('shTx_PersonVipType_Required', 'Peron VIP Type required - set value or use [ESC] to cancel ');
constants.Add('shTx_PersonVipType_CodeIsRequired', 'Person VIP Type code - is required - Use ESC to cancel');
constants.Add('shTx_PersonVipType_EditInGrid', 'Edit in grid');
constants.Add('shTx_PersonContactType_Required', 'Peron Contact Type required - set value or use [ESC] to cancel ');
constants.Add('shTx_PersonContactType_CodeIsRequired', 'Person Contact Type code - is required - Use ESC to cancel');
constants.Add('shTx_PersonContactType_EditInGrid', 'Edit in grid');
constants.Add('shTx_Roomtypes2_RoomTypeAlreadyExists', 'This room type already exists');
constants.Add('shTx_Rooms3_RoomAlreadyExists', 'This room already exists');
constants.Add('shTx_RoomtypeGroups_RoomTypeGroupAlreadyExists', 'This room class already exists');
constants.Add('shTx_CustomerEdit2_CustomerRequired', 'Customer is required');
constants.Add('shTx_CustomerEdit2_CustomerTypeRequired', 'Customer type is required');
constants.Add('shTx_CustomerEdit2_CustomerCountryRequired', 'Customer country is required');
constants.Add('shTx_CustomerEdit2_CustomerCurrencyRequired', 'Customer payment currency is required');
constants.Add('shTx_CustomerEdit2_CustomerPriceCoceRequired', 'Customer Rate code is required');
constants.Add('shTx_CustomerEdit2_CustomerExists', 'This customer exists ');
constants.Add('shTx_CustomerEdit2_NameRequired', 'Name is required');
// constants.Add('shTx_Customers2_Required', 'Customer requierd - set value or use [ESC] to cancel ');
constants.Add('shTx_Customers2_Required', 'Customer required - set value or use [ESC] to cancel ');
constants.Add('shTx_Customers2_InsertNotOk', 'INSERT NOT OK');
// constants.Add('shTx_CustomerTypes_RegistrationFilter', 'Nýskráning er utan síu og sést því ekki');
constants.Add('shTx_CustomerTypes_RegistrationFilter', 'Registration filtered and cannot be seen');
// constants.Add('shTx_CustomerTypes_DeleteCatagory', 'Eyða Viðskiptaaðilaflokk ');
constants.Add('shTx_CustomerTypes_DeleteCatagory', 'Delete customer group');
// constants.Add('shTx_CustomerTypes_AreYouSure', 'ertu viss ??');
constants.Add('shTx_CustomerTypes_AreYouSure', 'Are you sure ??');
constants.Add('shTx_CustomerTypes2_Description', 'Description ');
// constants.Add('shTx_CustomerTypes2_Required', 'is requierd - Use ESC to cancel');
constants.Add('shTx_CustomerTypes2_Required', 'is required - Use ESC to cancel');
// constants.Add('shTx_CustomerTypes2_CustomerTypeRequired', 'CustomerType is requierd - set value or use [ESC] to cancel ');
constants.Add('shTx_CustomerTypes2_CustomerTypeRequired', 'CustomerType is required - set value or use [ESC] to cancel ');
constants.Add('shTx_CustomerTypes2_Code', 'Code ');
constants.Add('shTx_CustomerTypes2_EditInGrid', 'Edit in grid');
constants.Add('shTx_D_UnableToSaveExceptionMessage', 'Problem: Unable to save the tmpInvoiveLines !' + #13#13 +
'The following exception occurred:' + #13#13 +
'%s' + #13#13 +
'Please write this message down or' + #13 +
'call support with this dialog open!');
constants.Add('shTx_D_UnpaidGroup', 'There are unpaid items on Group-invoice - resolve first');
constants.Add('shTx_D_UnpaidRoom', 'There are unpaid items on room-invoice - resolve first');
// constants.Add('shTx_D_MaidActionsUnavailable', 'Taflan MaidActions ekki til staðar ');
constants.Add('shTx_D_MaidActionsUnavailable', 'The table MaidActions is not available ');
// constants.Add('shTx_D_TableUsingCannotDelete', 'Tegndar töflur nota %s. Ekki er því unnt að eyða.');
constants.Add('shTx_D_TableUsingCannotDelete', 'Related tables use %s. Cannot delete');
// constants.Add('shTx_D_RoomBeingUsedInReservations', 'Herbergi %s er notað í %d pöntunum. ' + #10 + 'Það er því ekki hægt að eyða því');
constants.Add('shTx_D_RoomBeingUsedInReservations', 'Room %s Is booked in %d reservation. ' + #10 + 'cannot be deleted');
constants.Add('shTx_D_CurrencyCancel', 'All rooms in Reservation must use same curency - Canceling!');
constants.Add('shTx_D_DeleteRoom', 'Delete room from reservation ?');
// constants.Add('shTx_D_Cancel', 'Bókaðir reikningar eru á þessari pöntunn - Viltu hætta við ?');
constants.Add('shTx_D_Cancel', 'Invoices have been booked for this reservation - Do you want to cancel ?');
// constants.Add('shTx_D_InvoicesInDeletedBooking', 'Reikningar á eyddri bókun %s' + #10 +
// 'Skrifið niður ef það á að gera kreditreikninga ');
constants.Add('shTx_D_InvoicesInDeletedBooking', 'Invoices in deleted booking %s' + #10 +
'Write down the numbers if creating credit invoice ');
// constants.Add('shTx_D_OrderConfirm', 'Villtu örugglega setja þetta þessa herbergjapöntunn utan herbergja ?');
constants.Add('shTx_D_OrderConfirm', 'Are you sure you want this room reservation outside of the rooms?');
// constants.Add('shTx_D_AllRoomsToNoRoom', 'Viltu örugglega setja ÖLL herbergi pöntunnar ' + #10 +
// 'utan herbergja ?');
constants.Add('shTx_D_AllRoomsToNoRoom', 'Are You sure you want ALL room reservations' + #10 +
'outside of room?');
// constants.Add('shTx_D_FolderNotFound', 'Mappan %s fannst ekki.' + #10 +
// 'Skráin verður vistuð í %s');
constants.Add('shTx_D_FolderNotFound', 'Folder not found' + #10 +
'The file will be saved in %s');
// constants.Add('shTx_D_PathChange', 'Skráin verður vistuð í %s');
constants.Add('shTx_D_PathChange', 'File will be saved in %s');
// constants.Add('shTx_D_AccountReadContinue', 'Það er þegar búið að útlesa reikning %s %d sinnum.' + #10 +
// 'Halda áfram með útlestur ??');
constants.Add('shTx_D_AccountReadContinue', 'When the account %s has been read %d times.' + #10 +
'Continue reading ??');
constants.Add('shTx_D_CheckoutXDaysAgo', 'Should have checked out %d days ago');
constants.Add('shTx_D_CheckoutYesterday', 'Should have checked out yesterday ');
constants.Add('shTx_D_LeavesToday', 'Leaves today');
constants.Add('shTx_D_LeavesTomorrow', 'Leaves tomorrow');
constants.Add('shTx_D_LeavesAfterXDays', 'Leaves after %d days');
constants.Add('shTx_D_CheckedIn', 'Guest is Checked in ');
//constants.Add('shTx_D_AddedNoLogin', 'Added without loggin in');
constants.Add('shTx_D_AddedNoLogin', 'Added without logging in');
constants.Add('shTx_D_CheckDates', 'Check dates - 0 days ');
constants.Add('shTx_D_SomeErrors', ' Some errors ');
constants.Add('shTx_D_Total', ' total ');
// constants.Add('shTx_D_OnlyChangeDeparture', 'ATH Aðeins er hægt að breyta brottfarardegi ');
constants.Add('shTx_D_OnlyChangeDeparture', 'note: Only checkout date can be changed ');
constants.Add('shTx_D_InvoicesBooked', 'Invoices have been booked for this reservation - Cancel the deletion?');
constants.Add('shTx_D_InvoicesBookedNumbersWriteDown', 'Invoices have been booked for this reservation' + #10 +
'Numbers : %s' + #10 +
'Write down the numbers if they need to be credited ');
constants.Add('shTx_D_DeleteAll', 'Delete all rooms in reservation ?');
// constants.Add('shTx_D_RoomAlreadyCheckedin', 'Herbergi %s er þegar innskráð.');
constants.Add('shTx_D_RoomAlreadyCheckedin', 'Room %s is already checked in.');
constants.Add('shTx_DayFinical_NoInvoices', 'There are no unconfirmed invoices');
constants.Add('shTx_DayFinical_NoInvoicesForFromToDate', 'There are no invoices for %s - %s');
constants.Add('shTx_DayFinical_NoConfirmedInvoicesFor', 'There are no confirmed invoices for %s');
constants.Add('shTx_DayFinical_NoInvoices2', 'There is no Confirmed invoices');
constants.Add('shTx_DayFinical_InvoiceConfirmed', 'Invoiced has been confirmed - unconfirm now!');
// constants.Add('shTx_DayFinical_NoUnconfirmedInvoices', 'There is no unConfirmed invoices'); - breytti 'C' i 'c'
constants.Add('shTx_DayFinical_NoUnconfirmedInvoices', 'There is no unconfirmed invoices');
constants.Add('shTx_DayFinical_InvoiceNotConfirmed', 'Invoiced not confirmed - confirm now!');
constants.Add('shTx_DayFinical_Unconfirm', 'Un-confirm NOW');
constants.Add('shTx_DayFinical_Confirm', 'Confirm NOW');
constants.Add('shTx_DayFinical_CashInvoice', 'This is is a cash invoice');
constants.Add('shTx_DayFinical_GroupInvoice', 'This is a group invoice');
(* constants.Add('shTx_DayStats_RoomRental', 'Óreikningsfærð Herbergjaleiga ');
constants.Add('shTx_DayStats_Discount', 'Afsláttur ');
constants.Add('shTx_DayStats_Total', 'Samtals ');
constants.Add('shTx_DayStats_File', 'Skráin ');
constants.Add('shTx_DayStats_NotFound', ' fannst ekki ');
constants.Add('shTx_DayStats_CreateTable', 'Búa til töflur');
constants.Add('shTx_DayStats_ErrorDeleted', 'Villa - Delete');
constants.Add('shTx_DayStats_GetUninvoicedRoom', 'Sækja óreikningsfærða heibergjaleigu ');
constants.Add('shTx_DayStats_GetUninvoicedGoods', 'Sækja óreikningsfærðar vörur ');
constants.Add('shTx_DayStats_UninvoicedGroupGoods', 'Sækja óreikningsfærðar vörur á hópreikningum');
constants.Add('shTx_DayStats_GetInvoicedAccounts', 'Sækja Reikningsfært af herbergja reikningum');
constants.Add('shTx_DayStats_Error1', 'Villa 1');
constants.Add('shTx_DayStats_Error2', 'Villa 2');
constants.Add('shTx_DayStats_Error3', 'Villa 3');
constants.Add('shTx_DayStats_Error4', 'Villa 4');
constants.Add('shTx_DayStats_NumberOfBookings', 'Fjöldi pantana ');
constants.Add('shTx_DayStats_GroupInvoice', ' Reikningsfært á hópreikningi ');
constants.Add('shTx_DayStats_RoomRent', 'Herbergjaleiga');
constants.Add('shTx_DayStats_DiscountRoomRent', 'Afsláttur af herbergjaleigu ');
constants.Add('shTx_DayStats_TotalRoomRent', 'Samtals Herbergjaleiga');
constants.Add('shTx_DayStats_Products', 'Vörur ');
constants.Add('shTx_DayStats_TotalSales', 'Samtals Velta ');
constants.Add('shTx_DayStats_CalcF', 'Reikn.f ');
constants.Add('shTx_DayStats_CalcF2', 'Óreikn.f '); *)
constants.Add('shTx_DayStats_RoomRental', 'Uninvoiced Room Rental ');
constants.Add('shTx_DayStats_Discount', 'Discount ');
constants.Add('shTx_DayStats_Total', 'Total ');
constants.Add('shTx_DayStats_File', 'File ');
constants.Add('shTx_DayStats_NotFound', ' Not found ');
constants.Add('shTx_DayStats_CreateTable', 'Create table');
constants.Add('shTx_DayStats_ErrorDeleted', 'Error - deleted');
constants.Add('shTx_DayStats_GetUninvoicedRoom', 'Get uninvoiced room rental ');
constants.Add('shTx_DayStats_GetUninvoicedGoods', 'Get uninvoiced goods ');
constants.Add('shTx_DayStats_UninvoicedGroupGoods', 'Get uninvoiced goods in group');
constants.Add('shTx_DayStats_GetInvoicedAccounts', 'Get invoiced accounts');
constants.Add('shTx_DayStats_Error1', 'Error 1');
constants.Add('shTx_DayStats_Error2', 'Error 2');
constants.Add('shTx_DayStats_Error3', 'Error 3');
constants.Add('shTx_DayStats_Error4', 'Error 4');
constants.Add('shTx_DayStats_NumberOfBookings', 'Number of bookings ');
constants.Add('shTx_DayStats_GroupInvoice', ' Invoiced on group invoice ');
constants.Add('shTx_DayStats_RoomRent', 'Room rent');
constants.Add('shTx_DayStats_DiscountRoomRent', 'Discount of room rental ');
constants.Add('shTx_DayStats_TotalRoomRent', 'Total room rental');
constants.Add('shTx_DayStats_Products', 'Products ');
constants.Add('shTx_DayStats_TotalSales', 'Total Sales ');
constants.Add('shTx_DayStats_CalcF', 'calc.f ');
constants.Add('shTx_DayStats_CalcF2', 'calc.f ');
constants.Add('shTx_FinishedInvoices2_NoFinishedInvoices', 'No finished invoices found for your selection');
constants.Add('shTx_FinishedInvoices2_Product', 'Product');
constants.Add('shTx_FinishedInvoices2_Description', 'Description');
constants.Add('shTx_FinishedInvoices2_Number', 'Number');
constants.Add('shTx_FinishedInvoices2_Value', 'Value');
constants.Add('shTx_FinishedInvoices2_Total', 'Total');
constants.Add('shTx_FinishedInvoices2_Category', 'Category');
constants.Add('shTx_FinishedInvoices2_Amount', 'Amount');
constants.Add('shTx_FinishedInvoices2_VAT', 'VAT');
constants.Add('shTx_FinishedInvoices2_Date', 'Date');
constants.Add('shTx_FinishedInvoices2_ExtUser', 'User');
constants.Add('shTx_FinishedInvoices2_FileNotFound', 'File %s not found ');
constants.Add('shTx_FinishedInvoices2_NoChange', 'This account will be recreated - no change is made to older account');
constants.Add('shTx_FormCustomInvoicesMD_AllCustomers', 'All Customers');
constants.Add('shTx_FormCustomInvoicesMD_SelectCustomer', 'Select Customer');
constants.Add('shTx_FormCustomInvoicesMD_OneDayDate', 'One Day - select date');
constants.Add('shTx_FormCustomInvoicesMD_PeriodDate', 'Period - select dates');
constants.Add('shTx_FormCustomInvoicesMD_WrongDate', 'Wrong date selection');
(* constants.Add('shTx_G_NotArrived', 'Ókominn');
constants.Add('shTx_G_CheckedIn', 'Innskráður');
constants.Add('shTx_G_CheckedOut', 'Farinn');
constants.Add('shTx_G_WaitingList', 'Biðlisti'); *)
constants.Add('shTx_G_DueToArrive', 'Due to arrive');
constants.Add('shTx_G_NotArrived', 'Not Arrived');
constants.Add('shTx_G_CheckedIn', 'Checked In');
constants.Add('shTx_G_CheckedOut', 'Checked Out');
constants.Add('shTx_G_Alotment', 'Allotment');
constants.Add('shTx_G_NoShow', 'No show');
constants.Add('shTx_G_Blocked', 'Blocked');
constants.Add('shTx_G_DepartingToday', 'Due to check out');
constants.Add('shTx_G_Cancelled', 'Cancelled');
constants.Add('shTx_G_WaitingList', 'Optional Booking');
constants.Add('shTx_G_WaitingListNonOptional', 'Waiting list');
constants.Add('shTx_G_ResStateChangeNotAllowed', 'ReservationState cannot be changed from [%s] to [%s]');
constants.Add('shTx_G_RoomResStateChangeNotAllowed', 'RoomreservationState cannot be changed from [%s] to [%s]');
constants.Add('shTx_G_ResStateChangeNotAllowedOpenInvoice', 'Reservation [%d] cannot be cancelled or deleted due to unpaid invoiceitems');
constants.Add('shTx_G_RoomResStateChangeNotAllowedOpenInvoice', 'Roomreservation [%d] cannot be cancelled or deleted due to unpaid invoiceitems');
// constants.Add('shTx_G_Downpayment', 'Downpayment/innágreiðsla');
constants.Add('shTx_G_Downpayment', 'Downpayment');
constants.Add('shTx_G_ConnectionFail', 'Connection failure!');
constants.Add('shTx_G_ConnectionSuccess', 'Connection successful!');
constants.Add('shTx_G_DeleteRooms', 'Delete selected rooms from reservation ?' + #10 +
'Rooms : %s');
constants.Add('shTx_G_Reservation', 'Reservation');
constants.Add('shTx_G_Guest', 'Guest');
constants.Add('shTx_G_Departed', 'Departed');
constants.Add('shTx_G_Reserved', 'Reserved');
constants.Add('shTx_G_Departing', 'Departing');
constants.Add('shTx_G_Canceled', 'Canceled'); //*HJ 140206
constants.Add('shTx_G_Tmp1', 'Tmp1'); //*HJ 140206
constants.Add('shTx_G_AwaitingPayment', 'Awaiting Payment'); //*HJ 140206
constants.Add('shTx_G_Deleted', 'Deleted'); //*HJ 140206
constants.Add('shTx_G_AwaitingPayConfirm', 'Awaiting Payment Confirmation'); //*HJ 140206
constants.Add('shTx_G_Mixed', 'Mixed'); //*HJ 140206
constants.Add('shTx_GotoRoomAndDate_RoomNotFound', 'RoomReservation not Found');
constants.Add('shTx_GotoRoomAndDate_ReservationNotFound', 'Reservation not Found');
constants.Add('shTx_GotoRoomAndDate_CashNoRoom', 'Cash invoice - No Room');
constants.Add('shTx_GotoRoomAndDate_InvoiceNotFound', 'Invoice not found');
end;
procedure AddConstants_2;
begin
constants.Add('shTx_GuestProfile2_SplitRoom', 'split room to new reservation');
constants.Add('shTx_GuestProfile2_UnableToSplitRoom', 'Problem: Unable to split room to new reservation ' + #13#13 +
'The following exception occurred:' + #13#13 +
'%s' + #13#13 +
'Please write this message down or' + #13 +
'call support with this dialog open!');
constants.Add('shTx_GuestProfile2_NameChange', 'Reservation Name changed - sure ?');
constants.Add('shTx_GuestProfile2_RoomsInReservation', '%d rooms in this reservation with total %d guests');
constants.Add('shTx_GuestProfile2_RoomNoWithGuests', 'Room no. %s with %d guests');
constants.Add('shTx_GuestProfile2_NotesForRoom', 'Notes for room no. %s');
constants.Add('shTx_GuestProfile2_Person', 'Person');
// constants.Add('shTx_GuestProfile2_NameRequired', 'Person name requierd - set value or use [ESC] to cancel ');
constants.Add('shTx_GuestProfile2_NameRequired', 'Person name required - set value or use [ESC] to cancel ');
constants.Add('shTx_GuestProfile2_EditInGrid', 'edit in grid');
constants.Add('shTx_GuestProfile2_ReservationSame', 'Reservation target can not be same reservation');
constants.Add('shTx_GuestProfile2_ReservationNotFound', 'Reservation target not found');
constants.Add('shTx_GuestProfile2_MoveReservationNewResNewCust', 'Move this room to another reservation ' + #10 +
'New Reservation : %s' + #10 +
'New Customer : %s');
constants.Add('shTx_GuestProfile2_ChangeRoom', 'Change room to another reservation');
constants.Add('shTx_GuestProfile2_ProblemChange', 'Problem: Move room to another reservation' + #13#13 +
'The following exception occurred:' + #13#13 +
'%s' + #13#13 +
'Please write this message down or' + #13 +
'call support with this dialog open!');
constants.Add('shTx_GuestProfile2_NoRooms', 'No Rooms is in reservation %d');
constants.Add('shTx_HiddenInfo_CreateNew', 'Create New ?');
constants.Add('shTx_HiddenInfo_SaveChanges', 'Save changes ?');
constants.Add('shTx_HouseKeeping_Created', 'Create at : %s');
constants.Add('shTx_HouseKeeping_User', 'User : %s');
constants.Add('shTx_HouseKeeping_Code_O', 'Out of order');
constants.Add('shTx_HouseKeeping_Code_M', 'Maintenance Needed');
constants.Add('shTx_HouseKeeping_Code_S', 'Clean but needs maintenance');
constants.Add('shTx_HouseKeeping_Code_F', 'Maintenance in progress');
constants.Add('shTx_HouseKeeping_Code_W', 'Being Cleaned');
constants.Add('shTx_HouseKeeping_Code_U', 'Not Clean');
constants.Add('shTx_HouseKeeping_Code_R', 'Ready For Inspection');
constants.Add('shTx_HouseKeeping_Code_C', 'Clean');
constants.Add('shTx_HouseKeeping_Code_L', 'Wait For Checkout');
constants.Add('shTx_HouseKeeping_Code_D', 'Do Not Disturb');
constants.Add('shTx_HouseKeeping_Code_', 'Unknown status');
constants.Add('shTx_SetAllRoomsCleanConfirmation', 'Setting all rooms to Clean. Are you sure?');
constants.Add('shTx_SetAllRoomsUnCleanConfirmation', 'Setting all rooms to UnClean. Are you sure?');
constants.Add('shTx_HouseKeeping_NumberOfGuests', ' %d guests.');
constants.Add('shTx_HouseKeeping_GuestWaitingForGuestToDepart', 'Wait for guest to depart.');
constants.Add('shTx_HouseKeeping_GuestDepartedNewArrival', 'Guests departed, new arrival.');
constants.Add('shTx_HouseKeeping_GuestDepartedNoNewArrival', 'Guests departed, No arrival.');
constants.Add('shTx_HouseKeeping_GuestLeavesToday', 'Guests Leaves today, new arrival.');
constants.Add('shTx_HouseKeeping_LeavesTomorrow', 'which leaves tomorrow. ');
constants.Add('shTx_HouseKeeping_StayingForDays', 'staying for %d days.');
constants.Add('shTx_HouseKeeping_ArrivesToday', 'Guest arrives today.');
constants.Add('shTx_HouseKeeping_TodayNoArrival', 'Guest leaves today. No arrival. ');
constants.Add('shTx_HouseKeeping_GuestTomorrow', 'Guest leaves tomorrow. ');
constants.Add('shTx_HouseKeeping_CheckinNever', ' - Next Checkin unknown. ');
constants.Add('shTx_HouseKeeping_NextTomorrow', ' - Next Tomorrow. ');
constants.Add('shTx_HouseKeeping_CheckinAfterDays', ' - Next Checkin after %d days.');
constants.Add('shTx_HouseKeeping_RoomUnoccupied', 'Room is and stays unoccupied.');
constants.Add('shTx_HouseKeeping_OccupiedXDays', 'Occupied. Guest stays for %d more days.');
constants.Add('shTx_HouseKeeping_Beds', 'Beds');
constants.Add('shTx_HouseKeeping_CleaningSuspended', 'Suspend cleaning!');
constants.Add('shTx_HouseKeeping_FullCleaning', 'Prepare for new guests');
constants.Add('shTx_HouseKeeping_FullCleaningAdditionalBed', 'Prepare for new guests. Add extra bed.');
constants.Add('shTx_HouseKeeping_DailyCleaning', '50% - Daily Cleaning.');
constants.Add('shTx_HouseKeeping_DailyCleaningPlusBeds', '50% - Daily Cleaning + Beds.');
constants.Add('shTx_HouseKeeping_SpecialRequirements', 'Special Requirements');
constants.Add('shTx_HouseKeeping_RoomStatusDate', 'Room Status - Date : %s');
constants.Add('shTx_Housekeepinglist_Departure', 'Departure');
constants.Add('shTx_Housekeepinglist_Arriving', 'Arriving');
constants.Add('shTx_Housekeepinglist_StayOver', 'Stayover');
constants.Add('shTx_Invoice_SaveInvoice', 'Save invoice and room price changes?');
constants.Add('shTx_Invoice_SaveChanges', 'Save invoice changes?');
constants.Add('shTx_Invoice_NotANumber', '%s is not a number');
constants.Add('shTx_Invoice_InvoiceNumber', 'Invoice number %s not found');
constants.Add('shTx_Invoice_CreditInvoice', 'This is a credit invoice');
// constants.Add('shTx_Invoice_Value_Unchangeable', 'Gildi [%s] eru meðhöndluð af kerfinu og því ekki hægt að breyta ');
constants.Add('shTx_Invoice_Value_Unchangeable', 'Value [%s] is handled by the system and cannot be changed');
constants.Add('shTx_Invoice_NotAllowed', 'You are not allowed to use the System''s Payment code directly');
constants.Add('shTx_Invoice_UnableToSaveInvoiceMessage', 'Problem: Unable to save the invoice!' + #13#13 +
'While saving invoice the following exception occurred:' + #13#13 +
'%s' + #13#13 +
'Please write this message down or' + #13 +
'call support with this dialog open!');
constants.Add('shTx_Invoice_UnableSavePaymentsMessage', 'Problem: Unable to save the Payments !' + #13#13 +
'While saving payments the following exception occurred:' + #13#13 +
'%s' + #13#13 +
'Please write this message down or' + #13 +
'call support with this dialog open!');
constants.Add('shTx_Invoice_PaymentTotalInvoice', 'Payment needs to total to the same amount as the total invoice');
constants.Add('shTx_Invoice_CreatingInvoice', 'Creating Invoice ');
constants.Add('shTx_Invoice_OpenInvoiceAfterPrintCredit', 'Open a new invoice with the original amounts' + #10 +
'when finished printing credit invoice ?');
constants.Add('shTx_Invoice_GroupInvoice', 'This is a Group invoice');
constants.Add('shTx_Invoice_RoomInvoice', 'Cannot move the item to the same room invoice.');
constants.Add('shTx_Invoice_RoomrentToGroupAndSaveChanges', 'Move roomrent to Group invoice ' + #10 +
'and save other changes ?');
constants.Add('shTx_Invoice_RoomrentToRoomAndSaveChanges', 'Move roomrent to Room invoice ' + #10 +
'and save other changes ?');
constants.Add('shTx_Invoice_TransferRoomToRoom', 'Move roomrent to invoice of room %s ?');
// constants.Add('shTx_Invoice_ReferenceNumberNotFound', 'Tilvísunarnúmer %d fannst ekki ');
constants.Add('shTx_Invoice_ReferenceNumberNotFound', 'Reference number %d not found ');
constants.Add('shTx_Invoice_Nights', 'Nights.');
constants.Add('shTx_Invoice_SaveChanges2', 'Save changes');
constants.Add('shTx_Invoice_PPNotAllowed', 'Print and pay not allowed while performing price changes');
constants.Add('shTx_Invoice_CurrencyDifferent', 'Customer''s currency is different from currency of this invoice.');
constants.Add('shTx_Invoice_PrintAndPay', 'Print and pay not allowed when in price changes');
constants.Add('shTx_Invoice_DeleteItem', 'Delete item ');
constants.Add('shTx_Invoice_DeleteSelectedItems', 'Delete selected items ');
constants.Add('shTx_Invoice_SetTemp', 'Set room to temp ');
constants.Add('shTx_Invoice_SaleNotSelected', 'Sale item not selected !');
constants.Add('shTx_Invoice_TakeItemFromInvoice', 'Take [%s] from invoice?');
constants.Add('shTx_Invoice_CanNotDelete', 'System item can not delete ');
constants.Add('shTx_InvoiceUnableToSave', 'We are unable to save the invoice. Select [Retry] to try again or [Cancel] '
+ #13 + 'to temporarily stop the work with this invoice');
constants.Add('shTx_Invoice_BlankLine', 'Blank Line');
constants.Add('shTx_Invoice_ErrorInTotal', 'Error in total %s');
constants.Add('shTx_Invoice_MoveItemToGroupInvoice', 'Move item %s: %s' + #10 +
'to group invoice? ');
constants.Add('shTx_Invoice_MoveSelectedItemsToGroupInvoice', 'Move selected items to group invoice? ');
constants.Add('shTx_Invoice_MoveItemToRoomInvoice', 'Move item %s: %s' + #10 +
'to room %s? ');
constants.Add('shTx_Invoice_FailedGroupInvoice', 'Moving to group invoice failed - Cancel ' + #10 +
'Error : %s');
constants.Add('shTx_Payment_FailedGroupInvoice', 'Moving payment to group invoice failed' + #10 +
'Error : %s');
constants.Add('shTx_Payment_FailedRoomInvoice', 'Moving payment to Room %s failed' + #10 +
'Error : %s');
constants.Add('shTx_Invoice_EmptyInvoice', 'Empty invoiceline');
constants.Add('shTx_Invoice_CompressionNotReversibleMessage',
'Compressing the room rental lines is not reversible.' + #13#13 +
'After compressing the lines, you will need to manage the prices' + #13 +
'and all related issues manually without the system interfering.' + #13#13 +
'Please confirm by clicking [Yes] or [Cancel] the process.');
constants.Add('shTx_Invoice_invalidInvoiceNr', 'Invalid invoicenumber [%d]. Printing invoice is cancelled.');
constants.add('shTxInvoicePayments_RevertPayment', 'Reverting payment [%s] Amount [%s %s].' + #10 + 'Are you Sure?');
constants.add('shTxInvoicePayments_Reverted', ' (reverted)');
constants.add('shTx_Invoice_CannotEditDeletePCITokenPayment', 'Modifying or deleting a CreditCard charge is not allowed');
constants.add('shTX_CCTokenInfoNotAvailable', '<Carddetails available via cardinfo button>');
(* constants.Add('shTx_InvoiceList2_BookingNumber', 'Númer bókunnar er tala');
constants.Add('shTx_InvoiceList2_CashAccount', 'Þetta er staðgreiðslureikningur');
constants.Add('shTx_InvoiceList2_GroupInvoice', 'Þetta er hópreikningur');
constants.Add('shTx_InvoiceList2_NotRoomInvoice', 'Þessi reikninguer er ekki herbergjareikningur'); *)
constants.Add('shTx_InvoiceList2_BookingNumber', 'Booking Number is a number');
constants.Add('shTx_InvoiceList2_CashAccount', 'This is a cash invoice');
constants.Add('shTx_InvoiceList2_GroupInvoice', 'This is a group invoice');
constants.Add('shTx_InvoiceList2_NotRoomInvoice', 'This invoice is not the Room invoice');
constants.Add('shTx_InvoiceList2_NoRoomFound', 'No room found');
constants.Add('shTx_InvoiceList2_ExportDisabled', '<export disabled>');
constants.Add('shTx_InvoicePayment_DownPayment', 'Down payment');
constants.Add('shTx_InvoicePayment_InvoicePayment', 'Invoice Payment');
constants.Add('shTx_InvoicePayment_ConfirmCode', 'Confirm code');
constants.Add('shTx_InvoicePayment_Code', 'Code :');
constants.Add('shTx_InvoicePayment_ExceedsInvoice', 'Payments exceed total invoice?!');
constants.Add('shTx_InvoicePayment_PaycardPayTypeNotFound', 'Charge has been registered but paytype cannot be found for cardtype %s');
constants.Add('shTx_Items2_ItemTypeRequired', 'Item type is required - set value or use [ESC] to cancel ');
// constants.Add('shTx_Items2_ItemRequired', 'Item is requierd - set value or use [ESC] to cancel ');
constants.Add('shTx_Items2_ItemRequired', 'Item is required - set value or use [ESC] to cancel ');
constants.Add('shTx_Items2_DescriptionIsRequired', 'Description - is required - Use ESC to cancel');
constants.Add('shTx_Items2_ItemCodeIsRequired', 'Item code - is required - Use ESC to cancel');
constants.Add('shTx_Items2_Required', 'is required - Use ESC to cancel');
constants.Add('shTx_Items2_EditInGrid', 'Edit in grid');
constants.Add('shTx_Items2_Item', 'Item');
constants.Add('shTx_ItemsTypes2_UpdateNotOk', 'UPDATE NOT OK');
// constants.Add('shTx_ItemsTypes2_ItemTypeRequired', 'ItemType is requierd - set value or use [ESC] to cancel ');
constants.Add('shTx_ItemsTypes2_ItemTypeRequired', 'ItemType is required - set value or use [ESC] to cancel ');
// constants.Add('shTx_ItemsTypes2_VATCodeRequired', 'VAT code is requierd - set value or use [ESC] to cancel ');
constants.Add('shTx_ItemsTypes2_VATCodeRequired', 'VAT code is required - set value or use [ESC] to cancel ');
constants.Add('shTx_ItemsTypes2_InsertNotOK', 'INSERT NOT OK');
constants.Add('shTx_ItemsTypes2_Description', 'Description ');
constants.Add('shTx_ItemsTypes2_Required', 'is required - Use ESC to cancel');
constants.Add('shTx_ItemsTypes2_ItemCode', 'Item code ');
constants.Add('shTx_ItemsTypes2_VATCode', 'VAT code ');
constants.Add('shTx_ItemsTypes2_EditInGrid', 'Edit in grid');
constants.Add('shTx_Items_TaxPriceEditInTaxTable', 'The price of staytax is defined in the Taxes table and cannot be edited here.');
constants.Add('shTx_Locations2_LocationRequired', 'Location is required - set value or use [ESC] to cancel ');
constants.Add('shTx_Locations2_DescriptionIsRequired', 'Description - is required - Use ESC to cancel');
constants.Add('shTx_Locations2_EditInGrid', 'Edit in grid');
constants.Add('shTx_MaidActions_RegisterNotFound', 'Registration outside of filer, not found');
constants.Add('shTx_MaidActions_DeleteMaidAction', 'Delete Maid Action %s: %s' + #10 +
'Are You Sure ?');
constants.Add('shTx_MaidActionsEdit_CodeMaidAction', 'Maid Action Code mude be specified');
constants.Add('shTx_MainActionsEdit_MaidActionAvailable', 'Maid Action Available - Try Again');
constants.Add('shTx_MainActionsEdit_NameMaid', 'Maid Action Name must be specified.');
constants.Add('shTx_Main_AutoLoggedOff', ' Automatically logged off due to inactivity.');
constants.Add('shTx_Main_Downloading', 'Downloading...');
constants.Add('shTx_Main_Ready', 'Ready.');
constants.Add('shTx_Main_LoggedOut', ' User logged out.');
constants.Add('shTx_Main_DepricatedFunction', 'Depricated function. Please open Room Profile to change settings.');
constants.Add('shTx_Main_ForcedLogout', ' Server forced logout.');
constants.Add('shTx_Main_LogginAgain', ' Please try logging in again in a few seconds...');
constants.Add('shTx_Main_ReservationCancelled', 'Reservation Canceled');
constants.Add('shTx_MakeBlockReservation_PriceFor', 'price for ');
constants.Add('shTx_MakeBlockReservation_Currency', ' and Currency ');
constants.Add('shTx_MakeBlockReservation_NotFound', ' not found !!');
constants.Add('shTx_MakeBlockReservation_NotFound2', '** Not Found **');
constants.Add('shTx_MakeReservationBH_PriceFor', 'Price for ');
constants.Add('shTX_TotalListheaderDates', 'Dates');
constants.Add('shTX_TotalListheaderTotal', 'Totals');
constants.Add('shTX_TotalListheaderArrival', 'Arrivals');
constants.Add('shTX_TotalListheaderInhouse', 'In House');
constants.Add('shTX_TotalListheaderDeparture', 'Departures');
constants.Add('shTX_TotalListheaderStayOver', 'Stay overs');
constants.Add('shTX_TotalListheaderOptionalBooking', 'Optional Bookings');
constants.Add('shTX_TotalListheaderAllotments', 'Allotments');
constants.Add('shTX_TotalListheaderBlocked', 'Blocked');
constants.Add('shTX_TotalListheaderOutOfOrder', 'Out of order');
constants.Add('shTX_TotalListheaderWaitingList', 'Waiting list');
constants.Add('shTX_TotalListheaderNoShow', 'Noshows');
end;
procedure AddConstants_3;
begin
constants.Add('shTx_QuickReservation_NewReservationQuick', 'New Reservation - Quick Mode');
constants.Add('shTx_QuickReservation_NewReservation', 'New Reservation');
// constants.Add('shTx_ManageFiles_Delete', 'Do you want to delete file "%s"?');
// constants.Add('shTx_ManageFiles_UnableToUpload', 'Unable to upload file "%s"');
// constants.Add('shTx_ManageFiles_RetrieveList', 'Please first retrieve the list of files to be worked with (ReadFileList)');
constants.Add('shTx_NationalReport_Created', 'Created : ');
constants.Add('shTx_NationalReport_User', 'User : ');
constants.Add('shTx_NationalReport_NationalReportWasSuccessfullySentToHagstofan', 'National report was successfully sent to Hagstofan');
constants.Add('shTx_NationalReport_SelectFullMonthForHagstofan', 'Sending to Hagstofan is only possible when a full month is selected');
constants.Add('shTx_NationalReport_NationalReportToSentToHagstofanError', 'Hagstofan was unable to process the report.' + #10 +
'The following problem was reported:' + #10#10 +
'%s');
constants.Add('shTx_NationalReport_InknownCountries', 'There still are unknown nationlities and therefore' + #10 +
'Hagstofa will not accept any data.');
constants.Add('shTx_NationalReport_ChangeNationalityFromTo', 'Change nationality of all guests ' + #10 +
' from %s to %s ' + #10 +
'Confirm ?');
constants.Add('shTx_NationalReport_ChangeMarketFromTo', 'Change the type of market for the selected reservation (%s)' + #10#10 +
'From %s to %s? ');
constants.Add('shTx_NationalReport_NoChangeCountry', 'Not able to change country');
constants.Add('shTx_NationalReport_NoChangeMarket', 'Not able to change market type');
constants.Add('shTx_OpenInvoiceNew_NotValidNumber', 'Not Valid Reservation Number');
constants.Add('shTx_OpenInvoiceNew_Group', 'Group');
constants.Add('shTx_OpenInvoiceNew_CashInvoice', 'This is a cash invoice');
constants.Add('shTx_OpenInvoiceNew_CashInvoice2', 'This is cash invoice - not related to any reservation');
constants.Add('shTx_Invoice_WarningCloseCashInvoice', 'Cash invoice will not be saved. Are you sure you want to close?');
constants.Add('shTx_InvoiceIndexHintText', 'SalesItems: %s'#13 +
'RoomRent: %s'#13 +
'Payments: %s');
constants.Add('shTx_OpenInvoiceNew_Guest', 'Guest');
constants.Add('shTx_OpenInvoiceNew_NotArrived', 'Not Arrived');
constants.Add('shTx_OpenInvoiceNew_Departed', 'Departed');
constants.Add('shTx_OpenInvoiceNew_NoShow', 'No Show');
constants.Add('shTx_OpenInvoiceNew_Allotment', 'Allotment');
constants.Add('shTx_OpenInvoiceNew_WaitingList', 'Waitinglist');
constants.Add('shTx_OpenInvoiceNew_Blocked', 'Blocked');
constants.Add('shTx_OpenInvoiceNew_Unknown', 'Unknown');
constants.Add('shTx_PackagedItems_UpdateNotOK', 'UPDATE NOT OK');
constants.Add('shTx_PackagedItems_DescriptionRequired', 'Description is required - set value or use [ESC] to cancel ');
constants.Add('shTx_PackagedItems_ItemRequired', 'Item is required - set value or use [ESC] to cancel ');
constants.Add('shTx_PackagedItems_DescriptionIsRequired', 'Description - is required - Use ESC to cancel');
constants.Add('shTx_PackagedItems_ItemIsRequired', 'Item - is required - Use ESC to cancel');
constants.Add('shTx_Packages_PackageRequired', 'Package is required - set value or use [ESC] to cancel ');
constants.Add('shTx_Packages_Package', 'Package');
constants.Add('shTx_Packages_DescriptionIsRequired', 'Description - is required - Use ESC to cancel');
constants.Add('shTx_Packages_PackageCodeIsRequired', 'Package code - is required - Use ESC to cancel ');
constants.Add('shTx_Packages_Exists', 'exists in Items table ');
constants.Add('shTx_ReservationProfile_MustBeOver1Day', 'Number of days must be atleast 1 day - Check the dates ! ');
constants.Add('shTx_ReservationProfile_CopyHidden', 'Copy to hidden :');
constants.Add('shTx_ReservationProfile_ChangeNationalityConfirm',
'Change nationality of all guests to %s.' + #10#10 +
' Yes: All guests in this room' + #10 +
' All: All guests in this reservation' + #10 +
' No: Cancel all changes');
constants.Add('shTx_ReservationProfile_ChangeCountryConfirm',
'Change country of origin of all guests to %s.' + #10#10 +
' Yes: All guests in this room' + #10 +
' All: All guests in this reservation' + #10 +
' No: Cancel all changes');
constants.Add('shTx_ReservationProfile_NationalityChangeFailed', 'Changing nationality failed');
constants.Add('shTx_ReservationProfile_CountryChangeFailed', 'Changing country failed');
constants.Add('shTx_ReservationProfile_Outdated', 'OutDated');
constants.Add('shTx_ReservationProfile_ChangeAllRooms', 'Change all rooms to ');
constants.Add('shTx_ReservationProfile_BreakfastInc', 'Breakfast included ?');
constants.Add('shTx_ReservationProfile_BreakfastNotInc', 'Breakfast NOT included ?');
constants.Add('shTx_ReservationProfile_Included', 'Breakfast (Included)');
constants.Add('shTx_ReservationProfile_NotIncluded', 'Breakfast (Not included)');
constants.Add('shTx_ReservationProfile_NoBreakfast', 'No Breakfast');
constants.Add('shTx_ReservationProfile_GroupAccount', 'Group Account ?');
constants.Add('shTx_ReservationProfile_RoomAccount', 'Room Account ?');
constants.Add('shTx_ReservationProfile_NotArrived', 'Not arrived');
constants.Add('shTx_ReservationProfile_CheckedIn', 'Checked in');
constants.Add('shTx_ReservationProfile_Departed', 'Departed');
constants.Add('shTx_ReservationProfile_WaitingList', 'Waitinglist');
constants.Add('shTx_ReservationProfile_Allotment', 'Allotment');
constants.Add('shTx_ReservationProfile_NoShow', 'No-show');
constants.Add('shTx_ReservationProfile_Blocked', 'Blocked');
constants.Add('shTx_ReservationProfile_canceled', 'Canceled');
constants.Add('shTx_ReservationProfile_Tmp1', 'Other 1');
constants.Add('shTx_ReservationProfile_Tmp2', 'Other 2');
constants.Add('shTx_ReservationProfile_ChangeStatus', 'Change status on all room reservations in %s?' + #10);
constants.Add('shTx_ReservationProfile_MoreThanOneRoomUseForm', 'More than one room in Reservation ' + #10 +
'Use RoomReservation Form - for each room to change ');
constants.Add('shTx_ReservationProfile_AddRoomError', 'Add Room error : %s');
constants.Add('shTx_FrmReservationprofile_ReservationNumber', 'Reservation number');
constants.Add('shTx_FrmReservationprofile_Status', 'State');
constants.Add('shTx_FrmReservationprofile_ChangeStatus', 'Change State');
constants.Add('shTx_FrmReservationprofile_Balance', 'Balance');
constants.Add('shTx_FrmReservationprofile_CreatedBy', 'Created by');