jrgong
(jrgong)
15 مارس 2025، 12:47م
1
مرحباً يا رفاق،
أين يمكنني تغيير رسالة الخطأ التالية، لا يمكنني العثور على مقتطف النص في إعدادات إضافة WP Discourse :
يوجد بالفعل حساب مسجل بالاسم المستخدم الذي قدمه Discourse. إذا كان هذا هو حسابك، قم بتسجيل الدخول عبر WordPress وقم بزيارة صفحة ملفك الشخصي لمزامنة حسابك مع Discourse
في حالتي الخاصة، أرغب في ترجمتها إلى الألمانية وتخصيصها قليلاً
إعجاب واحد (1)
ما هو سياق هذا الخطأ؟ لا يمكنني العثور على أي تكرار بغض النظر عن مكان البحث.
إعجاب واحد (1)
jrgong
(jrgong)
15 مارس 2025، 2:05م
4
يحدث هذا عندما يحاول المستخدم تسجيل الدخول عبر Discourse SSO إلى موقع ويب WP وحساب بنفس البريد الإلكتروني موجود بالفعل على كل من مثيلي Discourse و WP ولكنهما غير مرتبطين بعد.
إعجاب واحد (1)
حسنًا، لقد وجدتها:
$message = __( "There is an exiting account with the email address you are attempting to login with. If you are trying to log in through Discourse, you need to first login through WordPress, visit your profile page, and click on the 'sync accounts' link.", 'wp-discourse' );
$errors->add( 'discourse_sso_existing_user', $message );
break;
case 'expired_nonce':
$message = __( 'Expired Nonce', 'wp-discourse' );
$errors->add( 'discourse_sso_expired_nonce', $message );
break;
case 'existing_user_login':
$message = __( 'There is already an account registered with the username supplied by Discourse. If this is you, login through WordPress and visit your profile page to sync your account with Discourse', 'wp-discourse' );
$errors->add( 'existing_user_login', $message );
break;
case 'no_matching_user':
$message = __( 'No WordPress user matches your Discourse user.', 'wp-discourse' );
$errors->add( 'discourse_sso_no_matching_user', $message );
break;
default:
$message = __( 'Unhandled Error', 'wp-discourse' );
ستحتاج إلى إضافة مثل Loco Translate – WordPress plugin | WordPress.org أو ما شابه ذلك لترجمة سلاسل المكون الإضافي بسهولة.
3 إعجابات
angus
(Angus McLeod)
17 مارس 2025، 8:13ص
6
إذا كنت ترغب في ترجمة جميع النصوص في الإضافة، يرجى استخدام حل مثل Loco Translate أو WPML.
إعجابَين (2)
system
(system)
تم إغلاقه في
16 أبريل 2025، 8:13ص
7
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.