translates update

master
A1Gard 1 day ago
parent 73e3025917
commit 4a9ecdc6ca

@ -99,28 +99,26 @@ class ContentSEOAnalyzer {
// Adjust the readability analysis to be more accurate with the new sentence detection // Adjust the readability analysis to be more accurate with the new sentence detection
analyzeReadability() { analyzeReadability() {
const sentences = this.getSentences(); const avgSentenceLength = this.sentences.length ?
const avgSentenceLength = sentences.length ? this.wordCount / this.sentences.length : 0;
this.wordCount / sentences.length : 0;
// Calculate words per sentence more accurately const avgParagraphLength = this.paragraphs.length ?
const sentenceLengths = sentences.map(sentence => this.wordCount / this.paragraphs.length : 0;
sentence.split(/\s+/).filter(word => word.length > 0).length
); // Increased threshold for complex sentences
const complexSentences = this.sentences.filter(sentence =>
sentence.split(/\s+/).filter(word => word.length > 0).length > 25
).length;
// More accurate complex sentence detection const complexSentencePercentage = this.sentences.length ?
const complexSentences = sentenceLengths.filter(length => length > 25).length; (complexSentences / this.sentences.length) * 100 : 0;
const complexSentencePercentage = sentences.length ?
(complexSentences / sentences.length) * 100 : 0;
return { return {
avgSentenceLength, avgSentenceLength,
avgWordsPerSentence: avgSentenceLength, avgParagraphLength,
sentenceCount: sentences.length,
complexSentencePercentage, complexSentencePercentage,
sentenceLengthVariation: this.calculateVariation(sentenceLengths),
totalParagraphs: this.paragraphs.length, totalParagraphs: this.paragraphs.length,
readabilityScore: this.calculateReadabilityScore(sentenceLengths) totalSentences: this.sentences.length
}; };
} }
@ -229,7 +227,7 @@ class ContentSEOAnalyzer {
// 1. Content Length (2 points) // 1. Content Length (2 points)
if (this.wordCount >= 300) score += 2; if (this.wordCount >= 300) score += 2;
else feedback.push('Content is too short. Aim for at least 300 words.'); else feedback.push(window.TR.contentShort);
// 2. Keyword Usage (2 points) // 2. Keyword Usage (2 points)
if (keywordAnalysis.density >= 0.5 && keywordAnalysis.density <= 2.5) score += 0.5; if (keywordAnalysis.density >= 0.5 && keywordAnalysis.density <= 2.5) score += 0.5;
@ -237,11 +235,11 @@ class ContentSEOAnalyzer {
if (keywordAnalysis.headingsWithKeyword > 0) score += 1; if (keywordAnalysis.headingsWithKeyword > 0) score += 1;
if (keywordAnalysis.count >= 2) score += 0; if (keywordAnalysis.count >= 2) score += 0;
if (keywordAnalysis.density < 0.5) feedback.push('Keyword density is too low'); if (keywordAnalysis.density < 0.5) feedback.push(window.TR.destinyLow);
if (keywordAnalysis.density > 3.5) feedback.push('Keyword density is too high'); if (keywordAnalysis.density > 3.5) feedback.push(window.TR.destinyHigh);
if (keywordAnalysis.shortKeyword) feedback.push('Keyword is too short fix keyword to better analyze'); if (keywordAnalysis.shortKeyword) feedback.push(window.TR.shortKeyword);
if (!keywordAnalysis.firstParagraphHasKeyword) feedback.push('Include keyword in the first paragraph'); if (!keywordAnalysis.firstParagraphHasKeyword) feedback.push(window.TR.keywordFirstParagraph);
if (keywordAnalysis.headingsWithKeyword === 0) feedback.push('Include keyword in at least one heading'); if (keywordAnalysis.headingsWithKeyword === 0) feedback.push(window.TR.keywordHeading);
// 3. Readability (4 points) // 3. Readability (4 points)
if (readabilityAnalysis.avgSentenceLength <= 30) score += 1; if (readabilityAnalysis.avgSentenceLength <= 30) score += 1;
@ -249,10 +247,10 @@ class ContentSEOAnalyzer {
if (readabilityAnalysis.complexSentencePercentage <= 25) score += 1; if (readabilityAnalysis.complexSentencePercentage <= 25) score += 1;
if (this.paragraphs.length >= 3) score += 1; if (this.paragraphs.length >= 3) score += 1;
if (readabilityAnalysis.avgSentenceLength > 30) feedback.push('Sentences are too long'); if (readabilityAnalysis.avgSentenceLength > 30) feedback.push(window.TR.sentencesLong);
if (readabilityAnalysis.avgParagraphLength > 150) feedback.push('Paragraphs are too long'); if (readabilityAnalysis.avgParagraphLength > 150) feedback.push(window.TR.paragraphsLong);
if (readabilityAnalysis.complexSentencePercentage > 25) feedback.push('Too many complex sentences'); if (readabilityAnalysis.complexSentencePercentage > 25) feedback.push(window.TR.sentencesComplex);
if (this.paragraphs.length < 3) feedback.push('Add more paragraphs to improve structure'); if (this.paragraphs.length < 3) feedback.push(window.TR.paragraphAdd);
// 4. Structure & Formatting (2 points) // 4. Structure & Formatting (2 points)
const hasHeadings = /<h[1-6][^>]*>/i.test(this.content); const hasHeadings = /<h[1-6][^>]*>/i.test(this.content);
@ -261,9 +259,10 @@ class ContentSEOAnalyzer {
if (hasHeadings) score += 1; if (hasHeadings) score += 1;
if (hasLists) score += 1; if (hasLists) score += 1;
if (!hasHeadings) feedback.push('Add headings to structure your content'); if (!hasHeadings) feedback.push(window.TR.headingAdd );
if (!hasLists) feedback.push('Consider using lists to improve readability'); if (!hasLists) feedback.push(window.TR.useList);
console.log(readabilityAnalysis);
return { return {
score: Math.min(10, Math.round(score * 10) / 10), score: Math.min(10, Math.round(score * 10) / 10),
feedback, feedback,
@ -289,9 +288,9 @@ class ContentSEOAnalyzer {
// Function to determine score status // Function to determine score status
getScoreStatus(score) { getScoreStatus(score) {
if (score >= 7) return { class: 'good', text: 'Good' }; if (score >= 7) return { class: 'good', text: window.TR.good };
if (score >= 5) return { class: 'average', text: 'Needs Improvement' }; if (score >= 5) return { class: 'average', text: window.TR.averageNeeed };
return { class: 'poor', text: 'Poor' }; return { class: 'poor', text: window.TR.poor };
} }
// Function to create and display the report // Function to create and display the report
@ -315,14 +314,14 @@ class ContentSEOAnalyzer {
</div> </div>
</div> </div>
<div class="seo-status"> <div class="seo-status">
<h3>SEO Score: ${scoreStatus.text}</h3> <h3>${ window.TR.SEOScore}: ${scoreStatus.text}</h3>
<p>Based on content analysis and keyword optimization</p> <p>${window.TR.basedOnKeyword}</p>
</div> </div>
</div> </div>
<div class="seo-details"> <div class="seo-details">
<div class="seo-feedback"> <div class="seo-feedback">
<h4>Recommendations</h4> <h4>${window.TR.recommendations}</h4>
<ul> <ul>
${report.feedback.map(item => `<li>${item}</li>`).join('')} ${report.feedback.map(item => `<li>${item}</li>`).join('')}
</ul> </ul>
@ -330,30 +329,30 @@ class ContentSEOAnalyzer {
<div class="seo-metrics"> <div class="seo-metrics">
<div class="metric-card"> <div class="metric-card">
<h4>Content Length</h4> <h4>${window.TR.contentLength}</h4>
<div class="metric-value">${report.details.wordCount} words</div> <div class="metric-value">${report.details.wordCount} ${ window.TR.words}</div>
</div> </div>
<div class="metric-card"> <div class="metric-card">
<h4>Keyword Usage</h4> <h4>${window.TR.keywordUsage}</h4>
<div class="metric-value"> <div class="metric-value">
${report.details.keywordUsage.count} times ${report.details.keywordUsage.count} ${ window.TR.times}
(${report.details.keywordUsage.density}) (${report.details.keywordUsage.density})
</div> </div>
</div> </div>
<div class="metric-card"> <div class="metric-card">
<h4>Average Sentence Length</h4> <h4>${window.TR.avgSenLen}</h4>
<div class="metric-value"> <div class="metric-value">
${report.details.readability.avgWordsPerSentence} words ${report.details.readability.avgWordsPerSentence} ${ window.TR.words}
</div> </div>
</div> </div>
<div class="metric-card"> <div class="metric-card">
<h4>Paragraph Structure</h4> <h4>${window.TR.avgParaStruc}</h4>
<div class="metric-value"> <div class="metric-value">
${report.details.readability.paragraphCount} paragraphs ${report.details.readability.paragraphCount} ${ window.TR.paragraphs}
(avg ${report.details.readability.avgWordsPerParagraph} words) (avg ${report.details.readability.avgWordsPerParagraph} ${ window.TR.words})
</div> </div>
</div> </div>
</div> </div>

@ -25,6 +25,8 @@
"Add": "افزودن", "Add": "افزودن",
"Add another one": "افزودن یک مورد دیگر", "Add another one": "افزودن یک مورد دیگر",
"Add cover to better results": "یک کاور جهت بهتر شدن نتایج اضافه کنید", "Add cover to better results": "یک کاور جهت بهتر شدن نتایج اضافه کنید",
"Add headings to structure your content": "سر تیتر یا heading به محتوای خود اضافه کنید",
"Add more paragraphs to improve structure": "برای بهینه تر شدم بندهای بیشتری به نوشته خود اضافه کنید",
"Add new adv": "افزودن یک تبلیغ", "Add new adv": "افزودن یک تبلیغ",
"Add new attachment": "افزودن یک پیوست", "Add new attachment": "افزودن یک پیوست",
"Add new category": "افزودن یک دسته", "Add new category": "افزودن یک دسته",
@ -93,9 +95,11 @@
"Auth code send successfully": "کد احراز هویت ارسال شد", "Auth code send successfully": "کد احراز هویت ارسال شد",
"Authentication Mail": "ایمیل احراز هویت", "Authentication Mail": "ایمیل احراز هویت",
"Avatar": "آواتار", "Avatar": "آواتار",
"Average Sentence Length": "میانگین طول جملات",
"Back to profile": "بازگشت به نمایه", "Back to profile": "بازگشت به نمایه",
"Background image": "تصویر زمینه", "Background image": "تصویر زمینه",
"Base price": "مبلغ پایه", "Base price": "مبلغ پایه",
"Based on content analysis and keyword optimization": "بر اساس تحلیل محتوا و بهینه سازی کلیدواژگان",
"Basic data": "اطلاعات پایه", "Basic data": "اطلاعات پایه",
"Batch delete": "حذف چندگانه", "Batch delete": "حذف چندگانه",
"Batch restore": "بازیافت چندگانه", "Batch restore": "بازیافت چندگانه",
@ -137,8 +141,11 @@
"Compare": "مقایسه", "Compare": "مقایسه",
"Compare products": "مقایسه محصولات", "Compare products": "مقایسه محصولات",
"Confirm Password": "تایید گذرواژه", "Confirm Password": "تایید گذرواژه",
"Consider using lists to improve readability": "استفاده از لیست ها را برای بهبود خوانایی در نظر بگیرید",
"Contact us": "تماس با ما", "Contact us": "تماس با ما",
"Contacts list": "فهرست تماس‌ها", "Contacts list": "فهرست تماس‌ها",
"Content Length": "طول محتوا",
"Content is too short. Aim for at least 300 words": "محتوا بسیار کوتاه است، برای نتیجه بهتر حداقل به ۳۰۰ واژه نیاز دارید",
"Contents": "محتوا", "Contents": "محتوا",
"Continue": "ادامه", "Continue": "ادامه",
"Count": "تعداد", "Count": "تعداد",
@ -240,6 +247,7 @@
"Gallery": "گالری", "Gallery": "گالری",
"General": "عمومی", "General": "عمومی",
"Gfxes": "طراحی‌ها", "Gfxes": "طراحی‌ها",
"Good": "خوب",
"Graphic": "گرافیک", "Graphic": "گرافیک",
"Group": "سرفصل", "Group": "سرفصل",
"Group Parent": "والد سرفصل", "Group Parent": "والد سرفصل",
@ -265,6 +273,8 @@
"Image deleted successfully": "تصویر حذف شد", "Image deleted successfully": "تصویر حذف شد",
"Image uploaded successfully": "تصویر افزوده شد", "Image uploaded successfully": "تصویر افزوده شد",
"Images": "تصاویر", "Images": "تصاویر",
"Include keyword in at least one heading": "حداقل یک مرتبه کلیدواژه را به عنوان اضافه کنید",
"Include keyword in the first paragraph": "کلیدواژه را در بند (پاراگراف) اول اضافه نمایید",
"Increase \/ decrease by Admin": "افزودن \/ کاهش توسط مدیر سایت", "Increase \/ decrease by Admin": "افزودن \/ کاهش توسط مدیر سایت",
"Increase by Admin removed:": "افزودنت توسط مدیر حذف شد", "Increase by Admin removed:": "افزودنت توسط مدیر حذف شد",
"Index": "صفحه نخست", "Index": "صفحه نخست",
@ -284,6 +294,11 @@
"Is fillable": "قابل نمایش", "Is fillable": "قابل نمایش",
"Item": "آیتم", "Item": "آیتم",
"Key": "کلید", "Key": "کلید",
"Keyword": "کلیدواژه کانونی",
"Keyword Usage": "استفاده از کلیدواژه",
"Keyword density is too high": "تراکم کلید واژه بسیار است",
"Keyword density is too low": "تراکم کلیدواژه کم است",
"Keyword is too short fix keyword to better analyze": "کلیدواژه بسیار کوتاه است، برای بررسی بهتر اصلاح نمایید",
"Label": "برچسب", "Label": "برچسب",
"Languages": "زبان‌ها", "Languages": "زبان‌ها",
"Languages list": "فهرست زبان‌ها", "Languages list": "فهرست زبان‌ها",
@ -321,12 +336,15 @@
"Name": "نام", "Name": "نام",
"Name and lastname": "نام و نام‌خانوادگی", "Name and lastname": "نام و نام‌خانوادگی",
"Need process orders": "سفارشات نیازمند رسیدگی", "Need process orders": "سفارشات نیازمند رسیدگی",
"Needs Improvement": "نیازمند بهینه‌تر شدن",
"Next": "بعدی", "Next": "بعدی",
"No parent": "بدون والد", "No parent": "بدون والد",
"Not required": "غیر ضرروری", "Not required": "غیر ضرروری",
"Order removed successfully": "سفارش با موفقیت حذف شد", "Order removed successfully": "سفارش با موفقیت حذف شد",
"Orders": "سفارشاات", "Orders": "سفارشاات",
"Orders count": "تعداد سفارش", "Orders count": "تعداد سفارش",
"Paragraph Structure": "ساختار بند",
"Paragraphs are too long": "بندها بسیار طولانی هستند",
"Password": "گذرواژه", "Password": "گذرواژه",
"Password or new password is:": "گذرواژه یا گذرواژه جدید عبارت است از:", "Password or new password is:": "گذرواژه یا گذرواژه جدید عبارت است از:",
"Pay now": "پرداخت", "Pay now": "پرداخت",
@ -339,6 +357,7 @@
"Please confirm your password before continuing.": "لطفا پیش از ادامه گذرواژه خود را تایید کنید", "Please confirm your password before continuing.": "لطفا پیش از ادامه گذرواژه خود را تایید کنید",
"Please upload file": "لطفا یک پرونده بارگزاری کنید", "Please upload file": "لطفا یک پرونده بارگزاری کنید",
"Please, Login or complete information to pay": "لطفا وارد شوید یا اطلاعات خود را تکمیل کنید تا اجازه پرداخت داشته باشید", "Please, Login or complete information to pay": "لطفا وارد شوید یا اطلاعات خود را تکمیل کنید تا اجازه پرداخت داشته باشید",
"Poor": "ضعیف",
"Post": "نوشته", "Post": "نوشته",
"Post Text": "متن نوشته", "Post Text": "متن نوشته",
"Post code": "کد پستی", "Post code": "کد پستی",
@ -353,8 +372,8 @@
"Print": "چاپ", "Print": "چاپ",
"Product": "محصول", "Product": "محصول",
"Product added to compare": "محصول به فهرست مقایسه افزوده شد", "Product added to compare": "محصول به فهرست مقایسه افزوده شد",
"Product grid": "کاشی محصول",
"Product added to favorites": "محصول به علاقه‌مندی شما افزوده شد", "Product added to favorites": "محصول به علاقه‌مندی شما افزوده شد",
"Product grid": "کاشی محصول",
"Product removed from compare": "محصول از فهرست مقایسه حذف شد", "Product removed from compare": "محصول از فهرست مقایسه حذف شد",
"Product removed from favorites": "محصول از علاقه مندی های شما حذف شد", "Product removed from favorites": "محصول از علاقه مندی های شما حذف شد",
"Product table": "جدول محصول", "Product table": "جدول محصول",
@ -376,10 +395,11 @@
"Questions list": "فهرست سوالات", "Questions list": "فهرست سوالات",
"RTL": "راست به چپ", "RTL": "راست به چپ",
"Rate": "امتیاز", "Rate": "امتیاز",
"Rates list": "فهرست امتیازها",
"Rates": "امتیازها", "Rates": "امتیازها",
"Rates list": "فهرست امتیازها",
"Read more": "اطلاعات بیشتر", "Read more": "اطلاعات بیشتر",
"Recent posts": "واپسین نوشته‌ها", "Recent posts": "واپسین نوشته‌ها",
"Recommendations": "توصیه‌ها",
"Recommends": "توصیه‌ها", "Recommends": "توصیه‌ها",
"Register": "ثبت‌نام", "Register": "ثبت‌نام",
"Register or Reset password": "ثبت‌نام یا بازیابی گذرواژه", "Register or Reset password": "ثبت‌نام یا بازیابی گذرواژه",
@ -399,6 +419,7 @@
"Role": "نقش", "Role": "نقش",
"Role filter": "صافی نقش‌ها", "Role filter": "صافی نقش‌ها",
"SEO": "سئو", "SEO": "سئو",
"SEO Score": "امتیاز سئو",
"SKU": "", "SKU": "",
"SMS": "پیامک", "SMS": "پیامک",
"Save": "ذخیره", "Save": "ذخیره",
@ -406,7 +427,7 @@
"Search": "جستجو", "Search": "جستجو",
"Search & Filter": "جستجو و صافی", "Search & Filter": "جستجو و صافی",
"Search for": "جستجو برای", "Search for": "جستجو برای",
"Search word is too short": "کلمه مورد جستجو بسیار کوتاه است", "Search word is too short": "واژه مورد جستجو بسیار کوتاه است",
"Searchable": "قابل جستجو", "Searchable": "قابل جستجو",
"Section": "بخش", "Section": "بخش",
"Sections": "بخش‌ها", "Sections": "بخش‌ها",
@ -418,6 +439,7 @@
"Send authenticate code": "ارسال کد احراز هویت", "Send authenticate code": "ارسال کد احراز هویت",
"Send ticket": "ارسال تیکت", "Send ticket": "ارسال تیکت",
"Sent to": "ارسال به", "Sent to": "ارسال به",
"Sentences are too long": "جملات بسیار طولانی هستند",
"Set": "تغییر به", "Set": "تغییر به",
"Setting": "تنظیمات", "Setting": "تنظیمات",
"Setting added to website": "تنظیم به سایت اضافه شد", "Setting added to website": "تنظیم به سایت اضافه شد",
@ -436,8 +458,8 @@
"Signed out successfully": "با موفقیت خارج شدید", "Signed out successfully": "با موفقیت خارج شدید",
"Size": "اندازه", "Size": "اندازه",
"Slider": "اسلایدر", "Slider": "اسلایدر",
"Sliders": "اسلایدرها",
"Slider data": "اطلاعات اسلایدر", "Slider data": "اطلاعات اسلایدر",
"Sliders": "اسلایدرها",
"Sliders list": "فهرست اسلایدر", "Sliders list": "فهرست اسلایدر",
"Slug": "نامک", "Slug": "نامک",
"Sort": "مرتب", "Sort": "مرتب",
@ -478,6 +500,7 @@
"Toggle favorite": "تغییر وضعیت علاقه‌مندی", "Toggle favorite": "تغییر وضعیت علاقه‌مندی",
"Toggle navigation": "", "Toggle navigation": "",
"Toggle selection": "برعکس کردن انتخاب", "Toggle selection": "برعکس کردن انتخاب",
"Too many complex sentences": "جملات پیچیده بسیار هستند",
"Total": "همه", "Total": "همه",
"Total price": "مبلغ کل", "Total price": "مبلغ کل",
"Tracking code": "کد پیگیری", "Tracking code": "کد پیگیری",
@ -562,21 +585,21 @@
"canonical": "کنونیکال", "canonical": "کنونیکال",
"category": "دسته‌بندی", "category": "دسته‌بندی",
"category_id": "دسته‌بندی", "category_id": "دسته‌بندی",
"click here to request another": "برای ایجاد درخواست دیگر اینجا کلیک کنید",
"code": "کد", "code": "کد",
"count": "تعداد", "count": "تعداد",
"country": "کشور", "country": "کشور",
"click here to request another": "برای ایجاد درخواست دیگر اینجا کلیک کنید",
"created_at": "زمان ایجاد", "created_at": "زمان ایجاد",
"customer_id": "مشتری", "customer_id": "مشتری",
"email": "رایانامه", "email": "رایانامه",
"emoji": "ایموجی", "emoji": "ایموجی",
"error in payment.": "خطا در پرداخت", "error in payment.": "خطا در پرداخت",
"error in payment. contact admin.": "خطا در پرداخت با مدیر وبسایت تماس بگیرید", "error in payment. contact admin.": "خطا در پرداخت با مدیر وبسایت تماس بگیرید",
"expire": "انقضا",
"evaluation": "ارزیابی", "evaluation": "ارزیابی",
"evaluation_id": "ارزیابی", "evaluation_id": "ارزیابی",
"group_id": "سرفصل", "expire": "انقضا",
"group": "سرفصل", "group": "سرفصل",
"group_id": "سرفصل",
"hash": "هش", "hash": "هش",
"icon": "نماد", "icon": "نماد",
"image": "تصویر", "image": "تصویر",
@ -585,8 +608,8 @@
"is_default": "پیش فرض", "is_default": "پیش فرض",
"jpg": "", "jpg": "",
"label": "برچسب", "label": "برچسب",
"loggable_type": "مورد ثبت",
"loggable_id": "شماره ثبت", "loggable_id": "شماره ثبت",
"loggable_type": "مورد ثبت",
"menu": "فهرست", "menu": "فهرست",
"minute(s)": "دقیقه", "minute(s)": "دقیقه",
"mobile": "موبایل", "mobile": "موبایل",
@ -594,15 +617,16 @@
"news": "خبر", "news": "خبر",
"not searchable": "غیرقابل جستجو", "not searchable": "غیرقابل جستجو",
"one second ago": "یک ثانیه پیش", "one second ago": "یک ثانیه پیش",
"password repeat": "تکرار گذرواژه", "paragraphs": "بند‌ها",
"parent_id": "والد", "parent_id": "والد",
"password repeat": "تکرار گذرواژه",
"payment success": "پرداخت موفق بود",
"pending": "معلق", "pending": "معلق",
"post": "نوشته", "post": "نوشته",
"price": "مبلغ", "price": "مبلغ",
"prop": "ویژگی",
"product": "محصول", "product": "محصول",
"product_id": "محصول", "product_id": "محصول",
"payment success": "پرداخت موفق بود", "prop": "ویژگی",
"rate": "امتیاز", "rate": "امتیاز",
"rateable_id": "مورد امتیاز", "rateable_id": "مورد امتیاز",
"rateable_type": " نوع امتیاز", "rateable_type": " نوع امتیاز",
@ -617,6 +641,7 @@
"status": "وضعیت", "status": "وضعیت",
"subject": "موضوع", "subject": "موضوع",
"subtitle": "زیرعنوان", "subtitle": "زیرعنوان",
"times": "مرتبه",
"title": "عنوان", "title": "عنوان",
"total_price": "مبلغ کل", "total_price": "مبلغ کل",
"transport": "حمل و نقل", "transport": "حمل و نقل",
@ -624,6 +649,7 @@
"user_id": "کاربر", "user_id": "کاربر",
"view": "بازدید", "view": "بازدید",
"webp": "", "webp": "",
"words": "واژگان",
"xShop": "", "xShop": "",
"yesterday": "دیروز" "yesterday": "دیروز"
} }

@ -6,5 +6,6 @@
var website_font = "{{gfx()['font']}}"; var website_font = "{{gfx()['font']}}";
window.routesList = @json(getAdminRoutes()); window.routesList = @json(getAdminRoutes());
</script> </script>
@include('components.translates')
</body> </body>
</html> </html>

@ -0,0 +1,29 @@
<script>
window.TR = {};
window.TR.contentShort = `{{__("Content is too short. Aim for at least 300 words")}}`;
window.TR.destinyLow = `{{__("Keyword density is too low")}}`;
window.TR.destinyHigh = `{{__("Keyword density is too high")}}`;
window.TR.shortKeyword = `{{__("Keyword is too short fix keyword to better analyze")}}`;
window.TR.keywordFirstParagraph = `{{__("Include keyword in the first paragraph")}}`;
window.TR.keywordHeading = `{{__("Include keyword in at least one heading")}}`;
window.TR.sentencesLong = `{{__("Sentences are too long")}}`;
window.TR.paragraphsLong = `{{__("Paragraphs are too long")}}`;
window.TR.sentencesComplex = `{{__("Too many complex sentences")}}`;
window.TR.paragraphAdd = `{{__("Add more paragraphs to improve structure")}}`;
window.TR.headingAdd = `{{__("Add headings to structure your content")}}`;
window.TR.useList = `{{__("Consider using lists to improve readability")}}`;
window.TR.good = `{{__("Good")}}`;
window.TR.averageNeeed = `{{__("Needs Improvement")}}`;
window.TR.poor = `{{__("Poor")}}`;
window.TR.basedOnKeyword = `{{__("Based on content analysis and keyword optimization")}}`;
window.TR.recommendations = `{{__("Recommendations")}}`;
window.TR.contentLength = `{{__("Content Length")}}`;
window.TR.keywordUsage = `{{__("Keyword Usage")}}`;
window.TR.avgSenLen = `{{__("Average Sentence Length")}}`;
window.TR.avgParaStruc = `{{__("Paragraph Structure")}}`;
window.TR.SEOScore = `{{__("SEO Score")}}`;
window.TR.words = `{{__("words")}}`;
window.TR.times = `{{__("times")}}`;
window.TR.paragraphs = `{{__("paragraphs")}}`;
</script>
Loading…
Cancel
Save