Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'translation'

Viewing 25 results - 1 through 25 (of 958 total)
  • Author
    Search Results
  • #238018

    In reply to: Reply order

    getfree
    Participant

    Thanks Robin. I have WP in Finnish to have proper translations in the forums and that occasionally makes finding the proper settings quite challenging..

    #236750
    tapiohuuhaa
    Participant

    My GD bbPress Toolbox Pro plugin has 50 major new features, including BBCodes implementation that has 40+ shortcodes/BBCodes for bbPress forums, including SPOILER and HIDE, as well as full syntax highlighting SCODE shortcode.

    I looked your pro plugin. Does your additions work with TinyMCE, text editor or both text and graphic editor? For me your BBCode- support is unnecessary wide. I try to find where TinyMCE defines how to print strikeout. I creates DEL-tags. I would just like to replace DEL-tags with SPOILER-tags as I dId for the text editor.
    I found translation. With CSS I can change the text and icon. Dashicon f177 is closest available. With CSS can change the text just defining the font-size of the text 0 an replacing text by using the ::before pseudo-class.

    #236444
    tapiohuuhaa
    Participant

    If the extension works on backend, it is is useless for me. I would need extensions only frontend. I have site for solving crosswords. Honoring other peoples all hints should give as default hided.

    I tried to find the button definitions for text editor. My idea is just replace
    DEL or CODE with SPOILER. If I would find the source code, maybe I could add some codes. That apparently needs alo finding filter code, which defines, which codes are allowed.

    I though also that I could replace some code and related texts and icons of TinyMCE with another code, texts an icons.

    So I would not need to add anything. But I didn’t find, where buttons have been defined for the text editor s d TinyMCE.

    BTW. I didn’t get frontend texts translated in your GD bbPress Tools. I deleted entire translation, which I made for it because filtering worked better, but filtering works only for texts, which don’t have dynamic texts (%s etc). I get with “My WP Translate” translated “WP Sitemap Page”, so the translation tool works. I have another issue here https://wordpress.org/support/topic/translating-into-finnish/. So could you answer there.

    #236011
    shake1
    Participant

    Questions about customization. I am using a translation tool, so my English may be unnatural.

    In [bbp-single-view id='no-replies'], closed topics are also displayed, so I would like to limit it to open topics, does the following code seem ok? Please advise.

    
    add_action( 'bbp_register_views', 'custom_bbp_no_replies' );
    
    function custom_bbp_no_replies() {
    	bbp_register_view(
    		'no-replies', 
    		__( 'Topics with no replies', 'bbpress' ),
    		apply_filters(
    			'bbp_topic_no_replies_query', 
    			array(
    				'post_parent' => 'any', 
    				'post_status' => bbp_get_public_status_id(),  // Changed to show only open topics
    				'meta_key' => '_bbp_reply_count',
    				'meta_value' => 1,
    				'meta_compare' => '<',
    				'meta_type' => 'NUMERIC'
    			)
    		), 
    		false
    	);
    }
    
    
    #236009
    shake1
    Participant

    Excuse me for asking a question about customization.
    I am using a translation tool, so my English may be unnatural.

    I would like to limit the posts displayed in [bbp-single-view id='popular'] to 7 days.

    
    function filter_bbp_get_view_query_args( $args, $view ) {
        // Check if the view exists
        if ( ! bbp_get_view( $view ) ) {
            return new WP_Error( 'invalid_view', __( 'Invalid view specified.', 'bbpress' ), $view );
        }
    
        if ( 'popular' === $view ) {
            $args['date_query'] = array(
                array(
                    'after' => '1 week ago',
                ),
            );
        }
        return $args;
    }
    add_filter( 'bbp_get_view_query_args', 'filter_bbp_get_view_query_args', 10, 2 );
    
    
    #235659
    sapnawp
    Participant

    Step 1: Setting Up Your Hosting
    Step 2: Installing WordPress
    Step 3: Installing Translation Files Manually
    Changing the Language of WordPress Manually
    Switch Languages in the Admin Interface

    To use this plugin:
    Go to the plugins areas of WordPress and click the “Add New” button.
    Search for the plugin, “English WordPress Admin.”
    Install and activate the plugin. This will add a new function to the top admin bar that allows switching from the native language of the WordPress installation to English and vice-versa.

    #234032
    enkoes
    Participant

    I found that “Posts” in the header having meaning “total posts (INCLUDING the starter post”.
    But “Replies” means “total number of replied posts (EXCLUDING the starter post)”.

    Since both terms carry different meaning, mere translation from “posts” to “replies” will add to confusion. Do we need to add/edit the php files for this change?

    #234030
    Robin W
    Moderator

    bbp style pack

    lets you style your forums

    you can also use the translations tab of this to change Posts to Replies

    there is also

    bbPress Styling Crib

    which contains styling guides

    #234031
    Robin W
    Moderator

    bbp style pack

    lets you style your forums

    you can also use the translations tab of this to change Posts to Replies

    there is also

    bbPress Styling Crib

    which contains styling guides

    #233508
    Robin W
    Moderator

    @alex198031 dashboard>settings>bbp style pack>translations

    #231863
    kenjireds08
    Participant

    I am not good with English and use translation software.

    By default, new posts are displayed at the bottom, so I used the plugin “bbPress – Sort topic replies” to change the sort order.

    This plugin allows new posts to appear at the top, but I would like to change the URL in the notification email when a post is made to the board.

    Currently it says “https://✕✕✕✕/forums/topic/bulletin-board/page/19/#post-4536&#8221;

    and when accessed from here, the user is taken to the last page, page 19.
    I would like to delete the “page/19/” part of this URL, but I don’t know where to delete it.

    Please help me.

    #230277
    classjapan
    Participant

    hi,Backend search not working

    forums,topics,replies are not working.

    It shows No replies found even though it definitely exists.

    There are 10,000 translations in the forum alone. Is it because there are too many?

    How can I solve it?
    I am Japan and not good at English. Excuse me.

    #229666

    In reply to: Translate a term

    Robin W
    Moderator

    or you can use

    bbp style pack

    dashboard>settings>bbp style pack>translations

    #229645
    Robin W
    Moderator

    bbp style pack

    We also want it so the “notify me of followup replies” is checked of by default.

    once activated go to

    dashboard>settings>bbp style pack>Topic/Reply Form>item 6

    What I’ve been asked to do is customize where it says “Topic” and “Tag” on the topic page.

    dashboard>settings>bbp style pack>translations

    #227785
    Robin W
    Moderator

    sorry, I’m not sure if you are using a translation, but I do not understand what you wish to achieve.

    by comments do you mean replies?

    if so how can you have them set to ‘100’ in question 1 and at the same time to ‘unlimited’ in question 2?

    #227386

    In reply to: Mixed languages

    epavel
    Participant

    Hi Robin, thanks for the answer. Switching to a default theme (TwentyTwenty) did the trick and the translations works. Is there anything you can recommend me to do or I should reach to the Woffice support?

    #227369
    epavel
    Participant

    Hello, I just installed bbPress into our WP site that is running BuddyPress with a Woffice theme for intranet and I have a problem with language localization.

    The site language and other settings are set to the Czech language. The bbPress seems to be confused and some things are translated, but some things are still displayed in English. I checked the language file with translations and I can clearly see, that the strings that are shown in English ARE actually translated to Czech.

    1/ View on the front end. As you can see, something is in Czech, something in English
    Mixed languages
    screen here > http://folpc.cz/screen11.jpg

    2/ For example, the String “CREATE NEW TOPIC IN…” is translated in bbpress-cs_CZ.po like this, which is correct but unfortunately, it is not shown
    English > Create New Topic in “%s”
    Czech > Vytvořit nové téma ve fóru „%s“

    Any suggestions on what to check? Thanks!

    #226531
    sasasasaaa
    Participant

    Hello,
    if I create a topic or reply to a topic I have to fill out the box “Topic text”. In my form is no description above the texarea which explains what to fill out here. “Topic text” is missing.

    I use a German translation .po. Is might the string not added? Can you give me the name of the englisch “topic text”, so I can check if it works?

    I have looked add the templates/default/bbpress/form-topic.php but couldn’t find the string there.

    Thanks a lot

    #225477
    artmuns
    Participant

    the error is when the ‘nonce’ does not validate.

    https://codex.wordpress.org/WordPress_Nonces

    I suppose I could try using translation to make it a friendly message but would rather try and fix it.

    function my_nonce_message ($translation) {
        if ($translation === 'Are you sure you want to do this?') {
           return 'Please try again.';
        } 
    
        return $translation;
    }
     
    add_filter('gettext', 'my_nonce_message');
    #223795
    mariaat
    Participant

    Portion not translated.

    Trying to figure out why part of the translation isn’t showing up. It concerns the Legend part. In the PO file it’s translated. Anyone an idea what’s wrong? See image.

    https://mariaat.nl/forum-Legend.png

    #223341

    In reply to: legend translation

    Robin W
    Moderator

    sorry, just re-read this properly, and you are falling between 2 stools. It is not a bbpress issue, bbpress uses translations to display the correct names in languages. That the other plugin developer has decided not to is not really a bbpress issue.

    #223333
    Ludovic S. Clain
    Participant

    Hi there,
    I am using a plugin that displays my forum statistics, and after talking to the developer about a translation that is not showing as expected, he replied “My plugin get’s roles from bbPress, it has no influence on the translations for them, and if the bbPress function sends them without translation, there is not much I can do about it.”
    Does anyone have any idea how bbpress can “send a function WITH translation”?
    My regards,
    Ludovic

    Screenshot legend translation

    #221204
    Robin W
    Moderator

    In bbpress 2.6.x the date freshness format has changed.
    If your translation has not been updated this will still display in English.

    install

    bbp style pack

    once activated go to

    dashboard>settings>bbp style pack>Freshness Display

    and you will be able to enter translations there

    #220308
    Robin W
    Moderator

    sorry, lost in translation 🙂

    The default is that participants cannot close their own topics

    #220074

    In reply to: Update Topic On Reply

    Robin W
    Moderator

    sorry, can you explain further.

    There is no ‘update’ button on a topic unless this is lost in translation, there is edit and submit.

    can you detail a series of steps and what you want to happen?

Viewing 25 results - 1 through 25 (of 958 total)
Skip to toolbar