This topic contains a post which is marked as Best Answer. Press here if you would like to see it.
*

vazzo

  • **
  • 14 posts
hidden translation
« on: October 12, 2022, 05:48:52 PM »
Hello, does anyone know how to change the translation of the words highlighted in the attached screenshot? I can't find them anywhere ... Thanks
« Last Edit: October 14, 2022, 02:39:19 PM by vazzo »

*

MB Themes

Re: hidden translation
« Reply #1 on: October 12, 2022, 07:09:14 PM »
Theme translation file.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

vazzo

  • **
  • 14 posts
Re: hidden translation
« Reply #2 on: October 13, 2022, 10:17:23 AM »
sorry, you are right. It had escaped me.
But do you by any chance know where I find this? If it can be translated ...

*

MB Themes

Re: hidden translation
« Reply #3 on: October 13, 2022, 12:52:55 PM »
In osclass core.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

vazzo

  • **
  • 14 posts
Re: hidden translation
« Reply #4 on: October 13, 2022, 03:06:59 PM »
nothing to do, I've searched everywhere but can't find it. Can you give me some more information? Thank you.

Marked as best answer by frosticek on October 13, 2022, 05:28:04 PM
*

mwindey

  • *****
  • 465 posts
Re: hidden translation
« Reply #5 on: October 13, 2022, 04:44:07 PM »
Not everywhere i guess or not close enough :-)
Text is in: oc-content/languages/en_US/core.po

*

MB Themes

Re: hidden translation
« Reply #6 on: October 13, 2022, 05:28:19 PM »
Yes thats the core
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

vazzo

  • **
  • 14 posts
Re: hidden translation
« Reply #7 on: October 13, 2022, 05:43:23 PM »
In my core.po there is no translation of this sentence. Did you send me one of yours? So I see what line it refers to?

*

mwindey

  • *****
  • 465 posts
Re: hidden translation
« Reply #8 on: October 13, 2022, 05:49:15 PM »
@vazzo

Line in original core is:

Click or Drop for upload images

Maybe an older version you have?

*

vazzo

  • **
  • 14 posts
Re: hidden translation
« Reply #9 on: October 13, 2022, 05:55:37 PM »
is the latest version. I bought it two days ago. But there is not!
If you send me a .po file of yours, I'll add it manually.

*

vazzo

  • **
  • 14 posts
Re: hidden translation
« Reply #10 on: October 13, 2022, 05:59:07 PM »
or at least the string to add
for example:

#: admin/configure.php:311
msgid "Cascading drop-downs"
msgstr "Drop-down a cascata"

(My .po file is translated into Italian)

*

vazzo

  • **
  • 14 posts
Re: hidden translation
« Reply #11 on: October 13, 2022, 06:02:47 PM »
the sentence I try to translate is:
"Drop files here to upload"

not

"Click or Drop for upload images"

*

mwindey

  • *****
  • 465 posts
Re: hidden translation
« Reply #12 on: October 13, 2022, 06:07:26 PM »
@vazzo

Witch Osclass version do you use?

*

vazzo

  • **
  • 14 posts
Re: hidden translation
« Reply #13 on: October 13, 2022, 06:11:59 PM »
the last, 8.02

*

mwindey

  • *****
  • 465 posts
Re: hidden translation
« Reply #14 on: October 14, 2022, 03:23:46 PM »
can you check oc-includes/osclass/frm/Item.form.class starting on line 1848 there should be next text if latest osclass is in use...
The text you are referring to is different but it's the only place where the text is set.... Correct me if i am wrong MB Themes.  ;)
Code: [Select]
          text: {
            uploadButton: '<?php echo osc_esc_js(__('Click or Drop for upload images')); ?>',
            waitingForResponse: '<?php echo osc_esc_js(__('Processing...')); ?>',
            rotateButton: '<?php echo osc_esc_js(__('Rotate')); ?>',
            retryButton: '<?php echo osc_esc_js(__('Retry')); ?>',
            cancelButton: '<?php echo osc_esc_js(__('Cancel')); ?>',
            failUpload: '<?php echo osc_esc_js(__('Upload failed')); ?>',
            deleteButton: '<?php echo osc_esc_js(__('Delete')); ?>',
            deletingStatusText: '<?php echo osc_esc_js(__('Deleting...')); ?>',
            formatProgress: '<?php echo osc_esc_js(__('{percent}% of {total_size}')); ?>'
          }