From 2cd1c6da021d66dfa9dd207893fc1209597748f6 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 9 Jun 2020 20:05:48 +0000 Subject: [PATCH] Bug 25687: Switch Y/N in EDI accounts table for Yes and No for better translatability This patch changes the list of EDI accounts shown in EDI administration so that columns which previously used "Y" or "N" now show "Yes" or "No." To test, apply the patch and go to Administration -> EDI accounts. If necessary, add an EDI account. In the table of information about the EDI account, the columns with information about quotes, orders, invoices, responses, and auto-ordering should show "Yes" or "No" based on the account's settings. Signed-off-by: Kyle M Hall --- .../prog/en/modules/admin/edi_accounts.tt | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt index 79388b8ada..8f69e04767 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/edi_accounts.tt @@ -282,29 +282,29 @@ [% account.san | html %] [% IF account.quotes_enabled %] - Y + Yes [% ELSE %] - N + No [% END %] [% IF account.orders_enabled %] - Y + Yes [% ELSE %] - N + No [% END %] [% IF account.invoices_enabled %] - Y + Yes [% ELSE %] - N + No [% END %] [% IF account.responses_enabled %] - Y + Yes [% ELSE %] - N + No [% END %] [% IF account.auto_orders %] - Y + Yes [% ELSE %] - N + No [% END %] Edit Delete -- 2.24.1 (Apple Git-126)