Re: translation of virtual index

2016-09-18 Thread Gavin Smith
On 18 September 2016 at 20:43, mtsio  wrote:
> Hello,
>
> Is it possible to change the following chunk of code to make it ready
> for translation?
> text_buffer_printf (&text,
>   "File: %s,  Node: Index for '%s'\n\n"
>   "Virtual Index\n"
>   "*\n\n"
>   "Index entries that match '%s':\n",
>   fb->filename, index_search, index_search);
>
> It's on indices.c and I' m interested in the fifth lines that says
> "Index entries that match..."

I've made a change that should make this possible.



translation of virtual index

2016-09-18 Thread mtsio
Hello,

Is it possible to change the following chunk of code to make it ready
for translation?
text_buffer_printf (&text,
  "File: %s,  Node: Index for '%s'\n\n"
  "Virtual Index\n"
  "*\n\n"
  "Index entries that match '%s':\n",
  fb->filename, index_search, index_search);

It's on indices.c and I' m interested in the fifth lines that says
"Index entries that match..."

Thanks.