Re: Make prep_status() message translatable

2025-04-18 Thread Fujii Masao
On 2025/04/17 13:12, Fujii Masao wrote: I've updated the patch to reflect this comment. Barring any objections, I'm thinking to commit this patch. Pushed. Thanks! Regards, -- Fujii Masao Advanced Computing Technology Center Research and Development Headquarters NTT DATA CORPORATION

Re: Make prep_status() message translatable

2025-04-16 Thread Fujii Masao
On 2025/04/07 16:26, Fujii Masao wrote: On 2025/04/07 15:55, Kyotaro Horiguchi wrote: Hello, The recent commit 173c97812ff made the following change: -    prep_status("Adding \".old\" suffix to old global/pg_control"); +    prep_status("Adding \".old\" suffix to old " XLOG_CONTROL_FILE);

Re: Make prep_status() message translatable

2025-04-07 Thread Fujii Masao
On 2025/04/07 15:55, Kyotaro Horiguchi wrote: Hello, The recent commit 173c97812ff made the following change: - prep_status("Adding \".old\" suffix to old global/pg_control"); + prep_status("Adding \".old\" suffix to old " XLOG_CONTROL_FILE); This change results in a message tha

Make prep_status() message translatable

2025-04-06 Thread Kyotaro Horiguchi
64b5 Mon Sep 17 00:00:00 2001 From: Kyotaro Horiguchi Date: Mon, 7 Apr 2025 15:48:43 +0900 Subject: [PATCH] Make prep_status() message translatable Avoid string literal concatenation involving XLOG_CONTROL_FILE, which was introduced by commit 73c97812ff and made the message untranslatable.