@jjlmoya/utils-books 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/npm-publish.yml +40 -0
- package/.gitignore +6 -0
- package/.stylelintrc.json +98 -0
- package/astro.config.mjs +19 -0
- package/eslint.config.js +201 -0
- package/package.json +79 -0
- package/prompts/create_tool.md +98 -0
- package/prompts/i18n/de.md +16 -0
- package/prompts/i18n/en.md +16 -0
- package/prompts/i18n/es.md +16 -0
- package/prompts/i18n/fr.md +16 -0
- package/prompts/i18n/id.md +16 -0
- package/prompts/i18n/it.md +16 -0
- package/prompts/i18n/ja.md +16 -0
- package/prompts/i18n/ko.md +16 -0
- package/prompts/i18n/nl.md +16 -0
- package/prompts/i18n/pl.md +16 -0
- package/prompts/i18n/pt.md +16 -0
- package/prompts/i18n/ru.md +16 -0
- package/prompts/i18n/sv.md +16 -0
- package/prompts/i18n/tr.md +16 -0
- package/prompts/i18n/zh.md +16 -0
- package/prompts/seo.md +58 -0
- package/prompts/translations/french.md +33 -0
- package/scripts/postinstall.mjs +27 -0
- package/src/category/BooksCategorySEO.astro +9 -0
- package/src/category/i18n/de.ts +21 -0
- package/src/category/i18n/en.ts +21 -0
- package/src/category/i18n/es.ts +21 -0
- package/src/category/i18n/fr.ts +21 -0
- package/src/category/i18n/id.ts +21 -0
- package/src/category/i18n/it.ts +21 -0
- package/src/category/i18n/ja.ts +21 -0
- package/src/category/i18n/ko.ts +21 -0
- package/src/category/i18n/nl.ts +21 -0
- package/src/category/i18n/pl.ts +21 -0
- package/src/category/i18n/pt.ts +21 -0
- package/src/category/i18n/ru.ts +21 -0
- package/src/category/i18n/sv.ts +21 -0
- package/src/category/i18n/tr.ts +21 -0
- package/src/category/i18n/zh.ts +21 -0
- package/src/category/index.ts +24 -0
- package/src/components/PreviewNavSidebar.astro +116 -0
- package/src/components/PreviewToolbar.astro +143 -0
- package/src/data.ts +10 -0
- package/src/entries.ts +6 -0
- package/src/env.d.ts +5 -0
- package/src/index.ts +20 -0
- package/src/layouts/PreviewLayout.astro +118 -0
- package/src/pages/[locale]/[slug].astro +164 -0
- package/src/pages/[locale].astro +251 -0
- package/src/pages/index.astro +4 -0
- package/src/tests/bibliography_wellformed_export.test.ts +46 -0
- package/src/tests/diacritics_density.test.ts +118 -0
- package/src/tests/faq_count.test.ts +18 -0
- package/src/tests/i18n_coverage.test.ts +34 -0
- package/src/tests/inverted_punctuation.test.ts +84 -0
- package/src/tests/locale_completeness.test.ts +23 -0
- package/src/tests/mocks/astro_mock.js +2 -0
- package/src/tests/no_em_dash.test.ts +47 -0
- package/src/tests/no_en_dash.test.ts +70 -0
- package/src/tests/no_h1_in_components.test.ts +48 -0
- package/src/tests/pagespeed_best_practices.test.ts +198 -0
- package/src/tests/qa-test-helpers.ts +32 -0
- package/src/tests/qa_bibliography_links.test.ts +54 -0
- package/src/tests/qa_claim_evidence.test.ts +69 -0
- package/src/tests/qa_logic_reference_coverage.test.ts +46 -0
- package/src/tests/qa_runtime_i18n.test.ts +100 -0
- package/src/tests/schemas_fulfillment.test.ts +23 -0
- package/src/tests/script_density.test.ts +94 -0
- package/src/tests/seo_length.test.ts +23 -0
- package/src/tests/seo_parity.test.ts +60 -0
- package/src/tests/seo_translation_completeness.test.ts +69 -0
- package/src/tests/seo_wellformed_export.test.ts +65 -0
- package/src/tests/shared-test-helpers.ts +56 -0
- package/src/tests/slug_language_code_format.test.ts +23 -0
- package/src/tests/slug_uniqueness.test.ts +81 -0
- package/src/tests/spanish_leakage.test.ts +175 -0
- package/src/tests/title_quality.test.ts +55 -0
- package/src/tests/tool_exports.test.ts +34 -0
- package/src/tests/tool_validation.test.ts +16 -0
- package/src/tests/translation_copy.test.ts +127 -0
- package/src/tool/book-pagination-and-spine-calculator/bibliography.astro +16 -0
- package/src/tool/book-pagination-and-spine-calculator/bibliography.ts +7 -0
- package/src/tool/book-pagination-and-spine-calculator/book-pagination-and-spine-calculator.css +298 -0
- package/src/tool/book-pagination-and-spine-calculator/component.astro +40 -0
- package/src/tool/book-pagination-and-spine-calculator/controller.ts +87 -0
- package/src/tool/book-pagination-and-spine-calculator/dom-views.ts +21 -0
- package/src/tool/book-pagination-and-spine-calculator/entry.ts +27 -0
- package/src/tool/book-pagination-and-spine-calculator/evaluator.ts +12 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/de.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/en.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/es.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/fr.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/id.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/it.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/ja.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/ko.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/nl.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/pl.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/pt.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/ru.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/sv.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/tr.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/i18n/zh.ts +78 -0
- package/src/tool/book-pagination-and-spine-calculator/index.ts +11 -0
- package/src/tool/book-pagination-and-spine-calculator/logic.test.ts +21 -0
- package/src/tool/book-pagination-and-spine-calculator/logic.ts +52 -0
- package/src/tool/book-pagination-and-spine-calculator/seo.astro +16 -0
- package/src/tool/book-pagination-and-spine-calculator/storage.ts +22 -0
- package/src/tool/book-pagination-and-spine-calculator/ui.ts +35 -0
- package/src/tools.ts +5 -0
- package/src/types.ts +69 -0
- package/tsconfig.json +15 -0
- package/vitest.config.ts +20 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BookPaginationUI } from '../ui';
|
|
3
|
+
|
|
4
|
+
const ui: BookPaginationUI = {
|
|
5
|
+
title: '本のページ数と背幅計算機',
|
|
6
|
+
scenarioLabel: 'シナリオ名',
|
|
7
|
+
scenarioPlaceholder: '自分の本',
|
|
8
|
+
wordsLabel: '原稿の語数',
|
|
9
|
+
widthLabel: '仕上がり幅',
|
|
10
|
+
heightLabel: '仕上がり高',
|
|
11
|
+
marginLabel: 'ノド側の余白',
|
|
12
|
+
fontSizeLabel: '文字サイズ (pt)',
|
|
13
|
+
lineHeightLabel: '行間 (×)',
|
|
14
|
+
paperLabel: '本の設定',
|
|
15
|
+
caliperLabel: '用紙の厚さ',
|
|
16
|
+
bindingLabel: '製本方法',
|
|
17
|
+
softcoverLabel: 'ソフトカバー',
|
|
18
|
+
hardcoverLabel: 'ハードカバー',
|
|
19
|
+
saddleLabel: '中綴じ',
|
|
20
|
+
presetLabel: '形式から始める',
|
|
21
|
+
novelPreset: '小説',
|
|
22
|
+
largePrintPreset: '大活字',
|
|
23
|
+
workbookPreset: 'ワークブック',
|
|
24
|
+
metricLabel: 'メートル法 mm',
|
|
25
|
+
imperialLabel: 'ヤードポンド法 inch',
|
|
26
|
+
resetLabel: '小説に戻す',
|
|
27
|
+
pagesLabel: '推定ページ数',
|
|
28
|
+
spineLabel: '背幅',
|
|
29
|
+
coverLabel: '表紙の展開幅',
|
|
30
|
+
wordsPerPageLabel: '1ページの語数',
|
|
31
|
+
linesLabel: '1ページの行数',
|
|
32
|
+
previewLabel: '本のモックアップ',
|
|
33
|
+
previewHint: '紙の束が厚くなるほど背幅も広がります。結果は制作時の目安として使ってください。',
|
|
34
|
+
methodTitle: '印刷前に本の形を整える',
|
|
35
|
+
methodHint: '形式を選び、文字と用紙を調整して、ページ数と表紙の大きさが一緒に変わる様子を確認できます。',
|
|
36
|
+
sourceLabel: 'この推定は入力値を使用します。最終的な背幅は印刷会社、用紙、製本方法に確認してください。',
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const seo: ToolLocaleContent<BookPaginationUI>['seo'] = [
|
|
40
|
+
{ type: 'title', text: '原稿から本のページ数と背幅を計算する', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: '語数とページデザインから、印刷する本の実用的な初期見積もりを作成します。この計算機は、使用できる本文領域、ページあたりのおおよその語数、製本の折り規則、用紙の厚さ、背幅、表紙全体の展開幅を一つの画面でモデル化します。' },
|
|
42
|
+
{ type: 'title', text: '計算機が推定するもの', level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: 'ページ数の推定には仕上がり寸法、余白、文字サイズ、行間を使い、1行の文字数と1ページの行数を近似します。ソフトカバーとハードカバーは偶数ページに、中綴じのワークブックは4の倍数に丸めます。その後、紙の束に製本のための小さな余裕を加えて背幅を求めます。' },
|
|
44
|
+
{ type: 'list', items: ['コンパクトな文庫本の出発点として小説の形式を使います。', '文字サイズでページあたりの語数が変わる場合は大活字を使います。', '幅広のページと4の倍数のページ数が必要ならワークブックを使います。', '本の物理的な大きさを変えずにミリメートルとインチを切り替えられます。'] },
|
|
45
|
+
{ type: 'title', text: '印刷校正ではなく制作時の見積もり', level: 2 },
|
|
46
|
+
{ type: 'paragraph', html: '紙のメーカーによって厚さの示し方は異なり、フォントごとに文字幅も違います。印刷会社には面付けと製本の固有の許容差もあります。著者、編集者、デザイナーのための早い計画用の目安として利用し、発注やデータ書き出しの前に最終的な表紙テンプレートを印刷仕様と照合してください。' },
|
|
47
|
+
{ type: 'tip', title: '読みやすい文字設定を保つ', html: '文字を小さくしたり行間を狭くしたりすると、背幅が減っても本が安っぽく見えたり読みにくくなったりします。形式を画面で比較し、読書体験を基準に決めてください。' },
|
|
48
|
+
];
|
|
49
|
+
|
|
50
|
+
export const content: ToolLocaleContent<BookPaginationUI> = {
|
|
51
|
+
slug: 'book-pagination-and-spine-calculator',
|
|
52
|
+
title: '本のページ数と背幅計算機',
|
|
53
|
+
description: '原稿の語数、判型、文字組み、用紙、製本方法から印刷ページ数、背幅、表紙の展開幅を推定します。',
|
|
54
|
+
ui,
|
|
55
|
+
seo,
|
|
56
|
+
faq: [
|
|
57
|
+
{ question: 'ページ数の推定には何を使いますか?', answer: '原稿の語数、仕上がり寸法、余白、文字サイズ、行間から文字数、行数、ページあたりの語数を推定します。' },
|
|
58
|
+
{ question: 'なぜページ数を丸めるのですか?', answer: 'ソフトカバーとハードカバーは偶数ページに、中綴じの本は折丁の都合で4の倍数に丸めます。' },
|
|
59
|
+
{ question: '背幅はどのように推定しますか?', answer: 'ページ数に1枚あたりの用紙の厚さを掛け、紙の束を半分として、選択した製本方法の余裕を加えます。' },
|
|
60
|
+
{ question: 'この結果は印刷会社にそのまま渡せますか?', answer: 'いいえ。これは計画用の推定値です。用紙の厚さ、表紙寸法、塗り足し、製本の許容差を印刷会社に確認してください。' },
|
|
61
|
+
],
|
|
62
|
+
bibliography: [
|
|
63
|
+
{ name: 'ISO 216:2007 用紙サイズ', url: 'https://www.iso.org/standard/36631.html' },
|
|
64
|
+
{ name: 'Instituto Nacional de Estadística. Producción editorial de libros', url: 'https://www.ine.es/dyngs/INEbase/es/operacion.htm?c=Estadistica_C&cid=1254736176767&idp=1254735573113&menu=ultiDatos' },
|
|
65
|
+
{ name: 'ユネスコ 世界の出版産業に関する報告書', url: 'https://doi.org/10.58337/SRUH6078' },
|
|
66
|
+
],
|
|
67
|
+
howTo: [
|
|
68
|
+
{ name: '形式を選ぶ', text: '小説、大活字、ワークブックのプリセットから始めます。' },
|
|
69
|
+
{ name: '原稿を設定する', text: '語数を入力し、寸法、余白、フォント、行間を調整します。' },
|
|
70
|
+
{ name: '用紙と製本を選ぶ', text: '用紙の厚さを入力し、ソフトカバー、ハードカバー、中綴じを選びます。' },
|
|
71
|
+
{ name: '表紙を確認する', text: '推定した背幅と展開幅をデザインファイルの出発点にします。' },
|
|
72
|
+
],
|
|
73
|
+
schemas: [
|
|
74
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: '本のページ数と背幅計算機', applicationCategory: 'DesignApplication', operatingSystem: 'Any', offers: { '@type': 'Offer', price: '0', priceCurrency: 'JPY' } },
|
|
75
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: [{ '@type': 'Question', name: 'ページ数の推定には何を使いますか?', acceptedAnswer: { '@type': 'Answer', text: '語数、寸法、余白、文字サイズ、行間を使います。' } }, { '@type': 'Question', name: '背幅はどのように推定しますか?', acceptedAnswer: { '@type': 'Answer', text: 'ページ数、用紙の厚さ、製本の余裕を使います。' } }] },
|
|
76
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: '本のページ数と背幅を推定する', step: [{ '@type': 'HowToStep', name: '形式を選ぶ', text: 'プリセットを選びます。' }, { '@type': 'HowToStep', name: '原稿を設定する', text: '語数と文字組みを入力します。' }, { '@type': 'HowToStep', name: '用紙と製本を選ぶ', text: '厚さと製本方法を設定します。' }, { '@type': 'HowToStep', name: '表紙を確認する', text: '背幅と表紙の見積もりを使います。' }] },
|
|
77
|
+
],
|
|
78
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BookPaginationUI } from '../ui';
|
|
3
|
+
|
|
4
|
+
const ui: BookPaginationUI = {
|
|
5
|
+
title: '책 페이지 수와 책등 폭 계산기',
|
|
6
|
+
scenarioLabel: '시나리오 이름',
|
|
7
|
+
scenarioPlaceholder: '내 책',
|
|
8
|
+
wordsLabel: '원고 단어 수',
|
|
9
|
+
widthLabel: '재단 너비',
|
|
10
|
+
heightLabel: '재단 높이',
|
|
11
|
+
marginLabel: '안쪽 여백',
|
|
12
|
+
fontSizeLabel: '글자 크기 (pt)',
|
|
13
|
+
lineHeightLabel: '줄 간격 (×)',
|
|
14
|
+
paperLabel: '책 설정',
|
|
15
|
+
caliperLabel: '종이 두께',
|
|
16
|
+
bindingLabel: '제본',
|
|
17
|
+
softcoverLabel: '무선 제본',
|
|
18
|
+
hardcoverLabel: '양장 제본',
|
|
19
|
+
saddleLabel: '중철 제본',
|
|
20
|
+
presetLabel: '형식으로 시작하기',
|
|
21
|
+
novelPreset: '소설',
|
|
22
|
+
largePrintPreset: '큰 글자',
|
|
23
|
+
workbookPreset: '워크북',
|
|
24
|
+
metricLabel: '미터법 mm',
|
|
25
|
+
imperialLabel: '야드파운드법 inch',
|
|
26
|
+
resetLabel: '소설 설정으로 초기화',
|
|
27
|
+
pagesLabel: '예상 페이지 수',
|
|
28
|
+
spineLabel: '책등 폭',
|
|
29
|
+
coverLabel: '표지 펼침 폭',
|
|
30
|
+
wordsPerPageLabel: '페이지당 단어 수',
|
|
31
|
+
linesLabel: '페이지당 줄 수',
|
|
32
|
+
previewLabel: '책 모형',
|
|
33
|
+
previewHint: '종이 묶음이 두꺼워질수록 책등도 넓어집니다. 결과는 제작 예상치로 사용하세요.',
|
|
34
|
+
methodTitle: '인쇄 전에 책의 형태 다듬기',
|
|
35
|
+
methodHint: '형식 프리셋을 선택한 다음 글자와 종이를 조정하여 페이지 수와 표지 크기가 함께 변하는 모습을 확인하세요.',
|
|
36
|
+
sourceLabel: '이 예상치는 입력값을 사용합니다. 최종 책등 폭은 인쇄소, 종이와 제본 방식으로 확인하세요.',
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const seo: ToolLocaleContent<BookPaginationUI>['seo'] = [
|
|
40
|
+
{ type: 'title', text: '원고로 책 페이지 수와 책등 폭 계산하기', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: '단어 수와 페이지 디자인을 인쇄용 책의 실용적인 첫 예상치로 바꿔 보세요. 이 계산기는 사용 가능한 본문 영역, 페이지당 예상 단어 수, 제본 접지 규칙, 종이 두께, 책등 폭과 펼친 표지 전체 크기를 한 화면에서 모델링합니다.' },
|
|
42
|
+
{ type: 'title', text: '계산기가 예상하는 항목', level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: '페이지 예상치는 재단 크기, 여백, 글자 크기와 줄 간격으로 한 줄의 글자 수와 페이지당 줄 수를 추정합니다. 무선 제본과 양장 제본은 짝수 페이지로, 중철 워크북은 네 페이지의 배수로 반올림합니다. 책등은 종이 묶음에 제본을 위한 작은 여유를 더해 계산합니다.' },
|
|
44
|
+
{ type: 'list', items: ['작고 읽기 좋은 문고본의 시작점으로 소설 프리셋을 사용하세요.', '글자 크기가 커져 페이지당 단어 수가 달라질 때는 큰 글자를 사용하세요.', '더 넓은 페이지와 네 페이지 배수가 필요하면 워크북을 사용하세요.', '책의 물리적 크기를 바꾸지 않고 밀리미터와 인치를 전환하세요.'] },
|
|
45
|
+
{ type: 'title', text: '인쇄 교정본이 아닌 제작 예상치', level: 2 },
|
|
46
|
+
{ type: 'paragraph', html: '종이 제조사마다 두께를 표시하는 방식이 다르고 글꼴마다 폭이 다릅니다. 인쇄소도 고유한 면 배치와 제본 허용 오차를 적용합니다. 저자, 편집자와 디자이너를 위한 빠른 계획 도구로 사용하고, 주문하거나 최종 파일을 내보내기 전에 표지 템플릿을 인쇄소 사양과 대조하세요.' },
|
|
47
|
+
{ type: 'tip', title: '읽기 편한 글자 설정 유지하기', html: '글자를 작게 하거나 줄 간격을 좁히면 책등이 줄어들어도 책이 저렴해 보이고 읽기 어려워질 수 있습니다. 프리셋을 시각적으로 비교하고 독서 경험을 기준으로 결정하세요.' },
|
|
48
|
+
];
|
|
49
|
+
|
|
50
|
+
export const content: ToolLocaleContent<BookPaginationUI> = {
|
|
51
|
+
slug: 'book-pagination-and-spine-calculator',
|
|
52
|
+
title: '책 페이지 수와 책등 폭 계산기',
|
|
53
|
+
description: '원고, 판형, 글꼴, 종이와 제본 방식으로 인쇄 페이지 수와 책등 폭, 표지 펼침 크기를 예상합니다.',
|
|
54
|
+
ui,
|
|
55
|
+
seo,
|
|
56
|
+
faq: [
|
|
57
|
+
{ question: '페이지 수 예상에는 무엇을 사용하나요?', answer: '원고 단어 수, 재단 크기, 여백, 글자 크기와 줄 간격으로 글자 수, 줄 수와 페이지당 단어 수를 예상합니다.' },
|
|
58
|
+
{ question: '페이지 수를 왜 반올림하나요?', answer: '무선 제본과 양장 제본은 짝수로, 중철 제본은 접힌 인쇄물 때문에 네 페이지의 배수로 반올림합니다.' },
|
|
59
|
+
{ question: '책등 폭은 어떻게 예상하나요?', answer: '페이지 수에 장당 종이 두께를 곱하고 종이 묶음을 절반으로 계산한 뒤 선택한 제본의 여유를 더합니다.' },
|
|
60
|
+
{ question: '결과를 인쇄소에 바로 보낼 수 있나요?', answer: '아니요. 계획용 예상치입니다. 종이 두께, 표지 치수, 도련과 제본 허용 오차를 인쇄소에 확인하세요.' },
|
|
61
|
+
],
|
|
62
|
+
bibliography: [
|
|
63
|
+
{ name: 'ISO 216:2007 종이 크기', url: 'https://www.iso.org/standard/36631.html' },
|
|
64
|
+
{ name: 'Instituto Nacional de Estadística. Producción editorial de libros', url: 'https://www.ine.es/dyngs/INEbase/es/operacion.htm?c=Estadistica_C&cid=1254736176767&idp=1254735573113&menu=ultiDatos' },
|
|
65
|
+
{ name: '유네스코 세계 출판 산업 보고서', url: 'https://doi.org/10.58337/SRUH6078' },
|
|
66
|
+
],
|
|
67
|
+
howTo: [
|
|
68
|
+
{ name: '형식 선택하기', text: '소설, 큰 글자 또는 워크북 프리셋으로 시작하세요.' },
|
|
69
|
+
{ name: '원고 설정하기', text: '단어 수를 입력하고 크기, 여백, 글꼴과 줄 간격을 조정하세요.' },
|
|
70
|
+
{ name: '종이와 제본 선택하기', text: '종이 두께를 입력하고 무선, 양장 또는 중철 제본을 선택하세요.' },
|
|
71
|
+
{ name: '표지 검토하기', text: '예상 책등 폭과 표지 펼침 크기를 디자인 파일의 시작점으로 사용하세요.' },
|
|
72
|
+
],
|
|
73
|
+
schemas: [
|
|
74
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: '책 페이지 수와 책등 폭 계산기', applicationCategory: 'DesignApplication', operatingSystem: 'Any', offers: { '@type': 'Offer', price: '0', priceCurrency: 'KRW' } },
|
|
75
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: [{ '@type': 'Question', name: '페이지 수 예상에는 무엇을 사용하나요?', acceptedAnswer: { '@type': 'Answer', text: '단어 수, 크기, 여백, 글자 크기와 줄 간격을 사용합니다.' } }, { '@type': 'Question', name: '책등 폭은 어떻게 예상하나요?', acceptedAnswer: { '@type': 'Answer', text: '페이지 수, 종이 두께와 제본 여유를 사용합니다.' } }] },
|
|
76
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: '책 페이지 수와 책등 폭 예상하기', step: [{ '@type': 'HowToStep', name: '형식 선택하기', text: '프리셋을 선택합니다.' }, { '@type': 'HowToStep', name: '원고 설정하기', text: '단어 수와 글자 설정을 입력합니다.' }, { '@type': 'HowToStep', name: '종이와 제본 선택하기', text: '두께와 제본을 설정합니다.' }, { '@type': 'HowToStep', name: '표지 검토하기', text: '책등과 표지 예상치를 사용합니다.' }] },
|
|
77
|
+
],
|
|
78
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BookPaginationUI } from '../ui';
|
|
3
|
+
|
|
4
|
+
const ui: BookPaginationUI = {
|
|
5
|
+
title: "Rekenmachine voor boekpagina's en rugbreedte",
|
|
6
|
+
scenarioLabel: 'Naam van scenario',
|
|
7
|
+
scenarioPlaceholder: 'Mijn boek',
|
|
8
|
+
wordsLabel: 'Woorden in manuscript',
|
|
9
|
+
widthLabel: 'Snijbreedte',
|
|
10
|
+
heightLabel: 'Snijhoogte',
|
|
11
|
+
marginLabel: 'Binnenmarge',
|
|
12
|
+
fontSizeLabel: 'Lettergrootte (pt)',
|
|
13
|
+
lineHeightLabel: 'Regelafstand (×)',
|
|
14
|
+
paperLabel: 'Boekinstellingen',
|
|
15
|
+
caliperLabel: 'Papierdikte',
|
|
16
|
+
bindingLabel: 'Bindwijze',
|
|
17
|
+
softcoverLabel: 'Softcover',
|
|
18
|
+
hardcoverLabel: 'Hardcover',
|
|
19
|
+
saddleLabel: 'Geniet',
|
|
20
|
+
presetLabel: 'Begin met een formaat',
|
|
21
|
+
novelPreset: 'Roman',
|
|
22
|
+
largePrintPreset: 'Grote letters',
|
|
23
|
+
workbookPreset: 'Werkboek',
|
|
24
|
+
metricLabel: 'Metrisch mm',
|
|
25
|
+
imperialLabel: 'Imperiaal inch',
|
|
26
|
+
resetLabel: 'Terugzetten op roman',
|
|
27
|
+
pagesLabel: "Geschat aantal pagina's",
|
|
28
|
+
spineLabel: 'Rugbreedte',
|
|
29
|
+
coverLabel: 'Omslag uitgevouwen',
|
|
30
|
+
wordsPerPageLabel: 'Woorden per pagina',
|
|
31
|
+
linesLabel: 'Regels per pagina',
|
|
32
|
+
previewLabel: 'Boekmodel',
|
|
33
|
+
previewHint: 'De rug groeit mee met de papierstapel. Gebruik het resultaat als productie-inschatting.',
|
|
34
|
+
methodTitle: 'Geef het boek vorm voor het drukken',
|
|
35
|
+
methodHint: 'Probeer een formaat en stel lettertype en papier bij om paginaaantal en omslag samen te zien veranderen.',
|
|
36
|
+
sourceLabel: 'Deze schatting gebruikt je invoer. Bevestig de uiteindelijke rug met je drukker, papiersoort en bindwijze.',
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const seo: ToolLocaleContent<BookPaginationUI>['seo'] = [
|
|
40
|
+
{ type: 'title', text: "Boekpagina's en rugbreedte berekenen vanuit je manuscript", level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'Maak van een woordenaantal en een paginaontwerp een praktische eerste schatting voor een gedrukt boek. Deze calculator modelleert het bruikbare tekstgebied, het geschatte aantal woorden per pagina, vouwregels van de bindwijze, papierdikte, rugbreedte en de volledige omslag in één visuele werkruimte.' },
|
|
42
|
+
{ type: 'title', text: 'Wat de calculator schat', level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: 'De paginaberekening gebruikt snijformaat, marges, lettergrootte en regelafstand om tekens per regel en regels per pagina te benaderen. Het resultaat wordt afgerond op een even aantal voor softcover en hardcover, of op een veelvoud van vier voor geniet werkboeken. Daarna combineert de rug de papierstapel met een kleine bindmarge.' },
|
|
44
|
+
{ type: 'list', items: ['Gebruik het romanformaat als startpunt voor een compacte paperback.', 'Kies grote letters wanneer een groter lettertype het aantal woorden per pagina verandert.', 'Gebruik werkboek voor een bredere pagina en paginatalen die een veelvoud van vier zijn.', 'Wissel tussen millimeters en inches zonder het fysieke boek te veranderen.'] },
|
|
45
|
+
{ type: 'title', text: 'Een productieschatting en geen drukproef', level: 2 },
|
|
46
|
+
{ type: 'paragraph', html: 'Papierfabrikanten geven diktes op verschillende manieren aan, lettertypes hebben verschillende breedtes en drukkers gebruiken eigen toleranties voor inslag en binding. Zie het resultaat als snelle planning voor auteurs, redacteuren en ontwerpers. Controleer het definitieve omslagbestand aan de hand van de specificaties van je drukker voordat je bestelt of bestanden exporteert.' },
|
|
47
|
+
{ type: 'tip', title: 'Houd de typografie leesbaar', html: 'Een kleiner lettertype of krappere regelafstand kan een boek goedkoper laten ogen en moeilijker leesbaar maken, ook als de rug smaller wordt. Vergelijk de formaten visueel en baseer je keuze op de leeservaring.' },
|
|
48
|
+
];
|
|
49
|
+
|
|
50
|
+
export const content: ToolLocaleContent<BookPaginationUI> = {
|
|
51
|
+
slug: 'boekpaginas-en-rugbreedte-rekenmachine',
|
|
52
|
+
title: "Rekenmachine voor boekpagina's en rugbreedte",
|
|
53
|
+
description: "Schat gedrukte pagina's, rugbreedte en omslag uit manuscript, formaat, typografie, papier en bindwijze.",
|
|
54
|
+
ui,
|
|
55
|
+
seo,
|
|
56
|
+
faq: [
|
|
57
|
+
{ question: 'Welke gegevens gebruikt de paginaberekening?', answer: 'De calculator gebruikt manuscriptwoorden, snijformaat, marges, lettergrootte en regelafstand om tekens, regels en woorden per pagina te schatten.' },
|
|
58
|
+
{ question: "Waarom worden pagina's afgerond?", answer: "Softcover en hardcover worden afgerond op even pagina's. Geniete boeken worden door gevouwen katernen afgerond op veelvouden van vier." },
|
|
59
|
+
{ question: 'Hoe wordt de rugbreedte geschat?', answer: "De calculator vermenigvuldigt het aantal pagina's met de papierdikte per vel, deelt de stapel door twee en voegt een kleine marge voor de gekozen bindwijze toe." },
|
|
60
|
+
{ question: 'Is het resultaat klaar voor de drukker?', answer: 'Nee. Het is een planningsschatting. Controleer papierdikte, omslagmaten, afloop en bindingstoleranties bij je drukker.' },
|
|
61
|
+
],
|
|
62
|
+
bibliography: [
|
|
63
|
+
{ name: 'ISO 216:2007 Papierformaten', url: 'https://www.iso.org/standard/36631.html' },
|
|
64
|
+
{ name: 'Instituto Nacional de Estadística. Producción editorial de libros', url: 'https://www.ine.es/dyngs/INEbase/es/operacion.htm?c=Estadistica_C&cid=1254736176767&idp=1254735573113&menu=ultiDatos' },
|
|
65
|
+
{ name: 'UNESCO rapport over de wereldwijde uitgeverij', url: 'https://doi.org/10.58337/SRUH6078' },
|
|
66
|
+
],
|
|
67
|
+
howTo: [
|
|
68
|
+
{ name: 'Kies een formaat', text: 'Begin met het preset voor roman, grote letters of werkboek.' },
|
|
69
|
+
{ name: 'Stel het manuscript in', text: 'Voer het woordenaantal in en pas formaat, marges, lettertype en regelafstand aan.' },
|
|
70
|
+
{ name: 'Kies papier en bindwijze', text: 'Voer de papierdikte in en kies softcover, hardcover of geniet.' },
|
|
71
|
+
{ name: 'Controleer de omslag', text: 'Gebruik rugbreedte en uitgevouwen omslag als startpunt voor je ontwerpbestand.' },
|
|
72
|
+
],
|
|
73
|
+
schemas: [
|
|
74
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: 'Boekpagina en rugbreedte calculator', applicationCategory: 'DesignApplication', operatingSystem: 'Any', offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' } },
|
|
75
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: [{ '@type': 'Question', name: 'Welke gegevens gebruikt de paginaberekening?', acceptedAnswer: { '@type': 'Answer', text: 'De calculator gebruikt woorden, formaat, marges, lettergrootte en regelafstand.' } }, { '@type': 'Question', name: 'Hoe wordt de rugbreedte geschat?', acceptedAnswer: { '@type': 'Answer', text: "De calculator gebruikt pagina's, papierdikte en een bindmarge." } }] },
|
|
76
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: "Boekpagina's en rugbreedte schatten", step: [{ '@type': 'HowToStep', name: 'Kies een formaat', text: 'Selecteer een preset.' }, { '@type': 'HowToStep', name: 'Stel het manuscript in', text: 'Voer woorden en typografie in.' }, { '@type': 'HowToStep', name: 'Kies papier en bindwijze', text: 'Stel dikte en bindwijze in.' }, { '@type': 'HowToStep', name: 'Controleer de omslag', text: 'Gebruik de schatting voor rug en omslag.' }] },
|
|
77
|
+
],
|
|
78
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BookPaginationUI } from '../ui';
|
|
3
|
+
|
|
4
|
+
const ui: BookPaginationUI = {
|
|
5
|
+
title: 'Kalkulator stron i grzbietu książki',
|
|
6
|
+
scenarioLabel: 'Nazwa scenariusza',
|
|
7
|
+
scenarioPlaceholder: 'Moja książka',
|
|
8
|
+
wordsLabel: 'Słowa w rękopisie',
|
|
9
|
+
widthLabel: 'Szerokość po obcięciu',
|
|
10
|
+
heightLabel: 'Wysokość po obcięciu',
|
|
11
|
+
marginLabel: 'Margines wewnętrzny',
|
|
12
|
+
fontSizeLabel: 'Rozmiar czcionki (pt)',
|
|
13
|
+
lineHeightLabel: 'Interlinia (×)',
|
|
14
|
+
paperLabel: 'Ustawienia książki',
|
|
15
|
+
caliperLabel: 'Grubość papieru',
|
|
16
|
+
bindingLabel: 'Oprawa',
|
|
17
|
+
softcoverLabel: 'Oprawa miękka',
|
|
18
|
+
hardcoverLabel: 'Oprawa twarda',
|
|
19
|
+
saddleLabel: 'Zszywana',
|
|
20
|
+
presetLabel: 'Zacznij od formatu',
|
|
21
|
+
novelPreset: 'Powieść',
|
|
22
|
+
largePrintPreset: 'Duży druk',
|
|
23
|
+
workbookPreset: 'Zeszyt ćwiczeń',
|
|
24
|
+
metricLabel: 'Metryczne mm',
|
|
25
|
+
imperialLabel: 'Imperialne cale',
|
|
26
|
+
resetLabel: 'Przywróć ustawienia powieści',
|
|
27
|
+
pagesLabel: 'Szacowana liczba stron',
|
|
28
|
+
spineLabel: 'Szerokość grzbietu',
|
|
29
|
+
coverLabel: 'Rozłożona okładka',
|
|
30
|
+
wordsPerPageLabel: 'Słowa na stronę',
|
|
31
|
+
linesLabel: 'Wiersze na stronę',
|
|
32
|
+
previewLabel: 'Makieta książki',
|
|
33
|
+
previewHint: 'Grzbiet rośnie wraz ze stosem papieru. Traktuj wynik jako szacunek produkcyjny.',
|
|
34
|
+
methodTitle: 'Nadaj książce kształt przed drukiem',
|
|
35
|
+
methodHint: 'Wybierz format, a następnie dopasuj tekst i papier, aby zobaczyć wspólną zmianę liczby stron i okładki.',
|
|
36
|
+
sourceLabel: 'Szacunek korzysta z Twoich danych. Potwierdź końcowy grzbiet z drukarnią, dla wybranego papieru i oprawy.',
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const seo: ToolLocaleContent<BookPaginationUI>['seo'] = [
|
|
40
|
+
{ type: 'title', text: 'Oblicz strony książki i szerokość grzbietu z rękopisu', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'Zamień liczbę słów i projekt strony w praktyczny wstępny szacunek drukowanej książki. Kalkulator modeluje użyteczny obszar tekstu, przybliżoną liczbę słów na stronę, zasady składania oprawy, grubość papieru, szerokość grzbietu i pełne rozłożenie okładki w jednej wizualnej przestrzeni.' },
|
|
42
|
+
{ type: 'title', text: 'Co szacuje kalkulator', level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: 'Szacunek stron wykorzystuje wymiary po obcięciu, marginesy, rozmiar czcionki i interlinię, aby przybliżyć liczbę znaków w wierszu oraz wierszy na stronie. Wynik jest zaokrąglany do liczby parzystej dla oprawy miękkiej i twardej albo do wielokrotności czterech dla zeszytów zszywanych. Następnie grzbiet łączy stos papieru z niewielkim zapasem oprawy.' },
|
|
44
|
+
{ type: 'list', items: ['Użyj formatu powieści jako punktu wyjścia dla zwartej książki kieszonkowej.', 'Wybierz duży druk, gdy większa czcionka zmienia liczbę słów na stronie.', 'Użyj zeszytu ćwiczeń dla szerszej strony i liczby stron będącej wielokrotnością czterech.', 'Przełączaj milimetry i cale bez zmiany fizycznej książki.'] },
|
|
45
|
+
{ type: 'title', text: 'Szacunek produkcyjny, a nie odbitka próbna', level: 2 },
|
|
46
|
+
{ type: 'paragraph', html: 'Producenci papieru różnie podają grubość, kroje pisma mają różną szerokość, a drukarnie stosują własne tolerancje impozycji i oprawy. Traktuj wynik jako szybkie narzędzie planowania dla autorów, redaktorów i projektantów. Przed zamówieniem lub eksportem plików porównaj końcowy szablon okładki ze specyfikacją drukarni.' },
|
|
47
|
+
{ type: 'tip', title: 'Zachowaj czytelną typografię', html: 'Mniejsza czcionka lub ciaśniejsza interlinia może sprawić, że książka będzie wyglądać taniej i czytać się trudniej, nawet gdy grzbiet się zmniejszy. Porównaj formaty wizualnie i zdecyduj na podstawie komfortu czytania.' },
|
|
48
|
+
];
|
|
49
|
+
|
|
50
|
+
export const content: ToolLocaleContent<BookPaginationUI> = {
|
|
51
|
+
slug: 'kalkulator-stron-i-grzbietu-ksiazki',
|
|
52
|
+
title: 'Kalkulator stron i grzbietu książki',
|
|
53
|
+
description: 'Oszacuj strony, szerokość grzbietu i rozłożenie okładki na podstawie rękopisu, formatu, typografii, papieru i oprawy.',
|
|
54
|
+
ui,
|
|
55
|
+
seo,
|
|
56
|
+
faq: [
|
|
57
|
+
{ question: 'Jakie dane wykorzystuje szacunek stron?', answer: 'Korzysta ze słów rękopisu, wymiarów, marginesów, rozmiaru czcionki i interlinii, aby oszacować znaki, wiersze i słowa na stronie.' },
|
|
58
|
+
{ question: 'Dlaczego strony są zaokrąglane?', answer: 'Szacunki oprawy miękkiej i twardej są zaokrąglane do liczby parzystej. Książki zszywane są zaokrąglane do wielokrotności czterech z powodu składanych arkuszy.' },
|
|
59
|
+
{ question: 'Jak szacowana jest szerokość grzbietu?', answer: 'Kalkulator mnoży liczbę stron przez grubość papieru na arkusz, dzieli stos przez dwa i dodaje niewielki zapas dla wybranej oprawy.' },
|
|
60
|
+
{ question: 'Czy wynik można wysłać do drukarni?', answer: 'Nie. To szacunek do planowania. Potwierdź w drukarni grubość papieru, wymiary okładki, spad i tolerancje oprawy.' },
|
|
61
|
+
],
|
|
62
|
+
bibliography: [
|
|
63
|
+
{ name: 'ISO 216:2007 Formaty papieru', url: 'https://www.iso.org/standard/36631.html' },
|
|
64
|
+
{ name: 'Instituto Nacional de Estadística. Producción editorial de libros', url: 'https://www.ine.es/dyngs/INEbase/es/operacion.htm?c=Estadistica_C&cid=1254736176767&idp=1254735573113&menu=ultiDatos' },
|
|
65
|
+
{ name: 'Raport UNESCO o światowym rynku wydawniczym', url: 'https://doi.org/10.58337/SRUH6078' },
|
|
66
|
+
],
|
|
67
|
+
howTo: [
|
|
68
|
+
{ name: 'Wybierz format', text: 'Zacznij od presetu powieści, dużego druku lub zeszytu ćwiczeń.' },
|
|
69
|
+
{ name: 'Ustaw rękopis', text: 'Wpisz liczbę słów i dopasuj wymiary, marginesy, czcionkę oraz interlinię.' },
|
|
70
|
+
{ name: 'Wybierz papier i oprawę', text: 'Wpisz grubość papieru i wybierz oprawę miękką, twardą albo zszywaną.' },
|
|
71
|
+
{ name: 'Sprawdź okładkę', text: 'Użyj szacunku grzbietu i rozłożenia okładki jako punktu wyjścia dla pliku projektu.' },
|
|
72
|
+
],
|
|
73
|
+
schemas: [
|
|
74
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: 'Kalkulator stron i grzbietu książki', applicationCategory: 'DesignApplication', operatingSystem: 'Any', offers: { '@type': 'Offer', price: '0', priceCurrency: 'PLN' } },
|
|
75
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: [{ '@type': 'Question', name: 'Jakie dane wykorzystuje szacunek stron?', acceptedAnswer: { '@type': 'Answer', text: 'Korzysta ze słów, wymiarów, marginesów, rozmiaru czcionki i interlinii.' } }, { '@type': 'Question', name: 'Jak szacowana jest szerokość grzbietu?', acceptedAnswer: { '@type': 'Answer', text: 'Korzysta z liczby stron, grubości papieru i zapasu oprawy.' } }] },
|
|
76
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: 'Oszacować strony i grzbiet książki', step: [{ '@type': 'HowToStep', name: 'Wybierz format', text: 'Wybierz preset.' }, { '@type': 'HowToStep', name: 'Ustaw rękopis', text: 'Wpisz słowa i typografię.' }, { '@type': 'HowToStep', name: 'Wybierz papier i oprawę', text: 'Ustaw grubość i oprawę.' }, { '@type': 'HowToStep', name: 'Sprawdź okładkę', text: 'Użyj szacunku grzbietu i okładki.' }] },
|
|
77
|
+
],
|
|
78
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BookPaginationUI } from '../ui';
|
|
3
|
+
|
|
4
|
+
const ui: BookPaginationUI = {
|
|
5
|
+
title: 'Calculadora de páginas e lombada de livro',
|
|
6
|
+
scenarioLabel: 'Nome do cenário',
|
|
7
|
+
scenarioPlaceholder: 'Meu livro',
|
|
8
|
+
wordsLabel: 'Palavras do manuscrito',
|
|
9
|
+
widthLabel: 'Largura de corte',
|
|
10
|
+
heightLabel: 'Altura de corte',
|
|
11
|
+
marginLabel: 'Margem interna',
|
|
12
|
+
fontSizeLabel: 'Tamanho da fonte (pt)',
|
|
13
|
+
lineHeightLabel: 'Entrelinha (×)',
|
|
14
|
+
paperLabel: 'Configuração do livro',
|
|
15
|
+
caliperLabel: 'Espessura do papel',
|
|
16
|
+
bindingLabel: 'Encadernação',
|
|
17
|
+
softcoverLabel: 'Capa flexível',
|
|
18
|
+
hardcoverLabel: 'Capa dura',
|
|
19
|
+
saddleLabel: 'Grampo canoa',
|
|
20
|
+
presetLabel: 'Comece com um formato',
|
|
21
|
+
novelPreset: 'Romance',
|
|
22
|
+
largePrintPreset: 'Letra grande',
|
|
23
|
+
workbookPreset: 'Caderno de exercícios',
|
|
24
|
+
metricLabel: 'Métrico mm',
|
|
25
|
+
imperialLabel: 'Imperial polegadas',
|
|
26
|
+
resetLabel: 'Voltar ao romance',
|
|
27
|
+
pagesLabel: 'Páginas estimadas',
|
|
28
|
+
spineLabel: 'Largura da lombada',
|
|
29
|
+
coverLabel: 'Abertura da capa',
|
|
30
|
+
wordsPerPageLabel: 'Palavras por página',
|
|
31
|
+
linesLabel: 'Linhas por página',
|
|
32
|
+
previewLabel: 'Maquete do livro',
|
|
33
|
+
previewHint: 'A lombada cresce com o bloco de papel. Use o resultado como uma estimativa de produção.',
|
|
34
|
+
methodTitle: 'Dê forma ao livro antes da impressão',
|
|
35
|
+
methodHint: 'Experimente um formato e ajuste o texto e o papel para ver as páginas e a capa mudarem em conjunto.',
|
|
36
|
+
sourceLabel: 'A estimativa usa os seus dados. Confirme a lombada final com a gráfica, o papel e o método de encadernação.',
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const seo: ToolLocaleContent<BookPaginationUI>['seo'] = [
|
|
40
|
+
{ type: 'title', text: 'Calcule as páginas e a largura da lombada do manuscrito', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'Transforme o número de palavras e o projeto da página numa primeira estimativa prática para um livro impresso. Esta calculadora modela a área de texto útil, as palavras aproximadas por página, as regras de dobra da encadernação, a espessura do papel, a largura da lombada e a abertura completa da capa num único espaço visual.' },
|
|
42
|
+
{ type: 'title', text: 'O que a calculadora estima', level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: 'A estimativa de páginas usa as dimensões de corte, as margens, o tamanho da fonte e a entrelinha para aproximar caracteres por linha e linhas por página. O resultado é arredondado para um número par em capas flexíveis e duras, ou para um múltiplo de quatro em cadernos com grampo canoa. Depois, a lombada combina o bloco de papel com uma pequena margem de encadernação.' },
|
|
44
|
+
{ type: 'list', items: ['Use o formato de romance como ponto de partida para um livro de bolso compacto.', 'Use letra grande quando um tamanho maior alterar as palavras por página.', 'Use caderno de exercícios para uma página mais larga e páginas em múltiplos de quatro.', 'Alterne entre milímetros e polegadas sem mudar o livro físico.'] },
|
|
45
|
+
{ type: 'title', text: 'Uma estimativa de produção e não uma prova de impressão', level: 2 },
|
|
46
|
+
{ type: 'paragraph', html: 'Os fabricantes indicam a espessura do papel de formas diferentes, as fontes têm larguras variadas e as gráficas aplicam as suas próprias tolerâncias de imposição e encadernação. Considere o resultado uma ferramenta rápida para autores, editores e designers. Confira o modelo final da capa com as especificações da gráfica antes de encomendar ou exportar os ficheiros.' },
|
|
47
|
+
{ type: 'tip', title: 'Mantenha uma tipografia confortável', html: 'Uma fonte menor ou uma entrelinha mais apertada pode fazer o livro parecer menos cuidado e dificultar a leitura, mesmo quando reduz a lombada. Compare os formatos visualmente e decida com base na experiência de leitura.' },
|
|
48
|
+
];
|
|
49
|
+
|
|
50
|
+
export const content: ToolLocaleContent<BookPaginationUI> = {
|
|
51
|
+
slug: 'calculadora-de-paginas-e-lombada-de-livro',
|
|
52
|
+
title: 'Calculadora de páginas e lombada de livro',
|
|
53
|
+
description: 'Estime páginas impressas, largura da lombada e abertura da capa a partir do manuscrito, formato, tipografia, papel e encadernação.',
|
|
54
|
+
ui,
|
|
55
|
+
seo,
|
|
56
|
+
faq: [
|
|
57
|
+
{ question: 'Que dados são usados na estimativa de páginas?', answer: 'Usa palavras do manuscrito, formato, margens, tamanho da fonte e entrelinha para estimar caracteres, linhas e palavras por página.' },
|
|
58
|
+
{ question: 'Por que as páginas são arredondadas?', answer: 'As estimativas de capa flexível e dura são arredondadas para um número par. Os livros com grampo canoa são arredondados para múltiplos de quatro devido aos cadernos dobrados.' },
|
|
59
|
+
{ question: 'Como é estimada a largura da lombada?', answer: 'A calculadora multiplica as páginas pela espessura do papel de cada folha, divide o bloco por dois e acrescenta uma pequena margem para a encadernação escolhida.' },
|
|
60
|
+
{ question: 'O resultado está pronto para a gráfica?', answer: 'Não. É uma estimativa de planeamento. Confirme a espessura do papel, as medidas da capa, a sangria e as tolerâncias de encadernação com a gráfica.' },
|
|
61
|
+
],
|
|
62
|
+
bibliography: [
|
|
63
|
+
{ name: 'ISO 216:2007 Formatos de papel', url: 'https://www.iso.org/standard/36631.html' },
|
|
64
|
+
{ name: 'Instituto Nacional de Estadística. Producción editorial de libros', url: 'https://www.ine.es/dyngs/INEbase/es/operacion.htm?c=Estadistica_C&cid=1254736176767&idp=1254735573113&menu=ultiDatos' },
|
|
65
|
+
{ name: 'Relatório da UNESCO sobre a indústria editorial mundial', url: 'https://doi.org/10.58337/SRUH6078' },
|
|
66
|
+
],
|
|
67
|
+
howTo: [
|
|
68
|
+
{ name: 'Escolha um formato', text: 'Comece com o preset de romance, letra grande ou caderno de exercícios.' },
|
|
69
|
+
{ name: 'Configure o manuscrito', text: 'Introduza o número de palavras e ajuste formato, margens, fonte e entrelinha.' },
|
|
70
|
+
{ name: 'Escolha papel e encadernação', text: 'Introduza a espessura do papel e selecione capa flexível, capa dura ou grampo canoa.' },
|
|
71
|
+
{ name: 'Reveja a capa', text: 'Use a lombada e a abertura estimadas como ponto de partida para o seu ficheiro de design.' },
|
|
72
|
+
],
|
|
73
|
+
schemas: [
|
|
74
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: 'Calculadora de páginas e lombada de livro', applicationCategory: 'DesignApplication', operatingSystem: 'Any', offers: { '@type': 'Offer', price: '0', priceCurrency: 'BRL' } },
|
|
75
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: [{ '@type': 'Question', name: 'Que dados são usados na estimativa de páginas?', acceptedAnswer: { '@type': 'Answer', text: 'Usa palavras, formato, margens, tamanho da fonte e entrelinha.' } }, { '@type': 'Question', name: 'Como é estimada a largura da lombada?', acceptedAnswer: { '@type': 'Answer', text: 'Usa páginas, espessura do papel e uma margem de encadernação.' } }] },
|
|
76
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: 'Estimar páginas e lombada de um livro', step: [{ '@type': 'HowToStep', name: 'Escolha um formato', text: 'Selecione um preset.' }, { '@type': 'HowToStep', name: 'Configure o manuscrito', text: 'Introduza palavras e tipografia.' }, { '@type': 'HowToStep', name: 'Escolha papel e encadernação', text: 'Defina a espessura e a encadernação.' }, { '@type': 'HowToStep', name: 'Reveja a capa', text: 'Use a estimativa da lombada e da capa.' }] },
|
|
77
|
+
],
|
|
78
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BookPaginationUI } from '../ui';
|
|
3
|
+
|
|
4
|
+
const ui: BookPaginationUI = {
|
|
5
|
+
title: 'Калькулятор страниц и корешка книги',
|
|
6
|
+
scenarioLabel: 'Название сценария',
|
|
7
|
+
scenarioPlaceholder: 'Моя книга',
|
|
8
|
+
wordsLabel: 'Слов в рукописи',
|
|
9
|
+
widthLabel: 'Ширина обрезного формата',
|
|
10
|
+
heightLabel: 'Высота обрезного формата',
|
|
11
|
+
marginLabel: 'Внутреннее поле',
|
|
12
|
+
fontSizeLabel: 'Размер шрифта (pt)',
|
|
13
|
+
lineHeightLabel: 'Межстрочный интервал (×)',
|
|
14
|
+
paperLabel: 'Настройки книги',
|
|
15
|
+
caliperLabel: 'Толщина бумаги',
|
|
16
|
+
bindingLabel: 'Переплёт',
|
|
17
|
+
softcoverLabel: 'Мягкая обложка',
|
|
18
|
+
hardcoverLabel: 'Твёрдая обложка',
|
|
19
|
+
saddleLabel: 'Скрепление внакидку',
|
|
20
|
+
presetLabel: 'Начать с формата',
|
|
21
|
+
novelPreset: 'Роман',
|
|
22
|
+
largePrintPreset: 'Крупный шрифт',
|
|
23
|
+
workbookPreset: 'Рабочая тетрадь',
|
|
24
|
+
metricLabel: 'Метрические мм',
|
|
25
|
+
imperialLabel: 'Имперские дюймы',
|
|
26
|
+
resetLabel: 'Вернуть формат романа',
|
|
27
|
+
pagesLabel: 'Расчётное число страниц',
|
|
28
|
+
spineLabel: 'Ширина корешка',
|
|
29
|
+
coverLabel: 'Развёртка обложки',
|
|
30
|
+
wordsPerPageLabel: 'Слов на странице',
|
|
31
|
+
linesLabel: 'Строк на странице',
|
|
32
|
+
previewLabel: 'Макет книги',
|
|
33
|
+
previewHint: 'Корешок расширяется вместе со стопой бумаги. Используйте результат как производственную оценку.',
|
|
34
|
+
methodTitle: 'Сформируйте книгу до печати',
|
|
35
|
+
methodHint: 'Выберите пресет и настройте текст и бумагу, чтобы увидеть, как вместе меняются страницы и размер обложки.',
|
|
36
|
+
sourceLabel: 'Оценка основана на ваших данных. Подтвердите итоговый корешок в типографии с учётом бумаги и переплёта.',
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const seo: ToolLocaleContent<BookPaginationUI>['seo'] = [
|
|
40
|
+
{ type: 'title', text: 'Рассчитать страницы книги и ширину корешка по рукописи', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'Превратите число слов и дизайн страницы в практическую предварительную оценку печатной книги. Калькулятор учитывает полезную площадь текста, примерное число слов на странице, правила фальцовки переплёта, толщину бумаги, ширину корешка и полную развёртку обложки в одном визуальном пространстве.' },
|
|
42
|
+
{ type: 'title', text: 'Что оценивает калькулятор', level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: 'Для оценки страниц используются обрезной формат, поля, размер шрифта и межстрочный интервал, чтобы приблизительно определить число знаков в строке и строк на странице. Результат округляется до чётного числа для мягкой и твёрдой обложки или до кратного четырём для брошюр со скреплением внакидку. Затем к стопе бумаги добавляется небольшой запас переплёта для расчёта корешка.' },
|
|
44
|
+
{ type: 'list', items: ['Используйте пресет романа как начало для компактной книги в мягкой обложке.', 'Выбирайте крупный шрифт, если больший размер меняет число слов на странице.', 'Используйте рабочую тетрадь для широких страниц и числа страниц, кратного четырём.', 'Переключайтесь между миллиметрами и дюймами без изменения физической книги.'] },
|
|
45
|
+
{ type: 'title', text: 'Производственная оценка, а не печатная проба', level: 2 },
|
|
46
|
+
{ type: 'paragraph', html: 'Производители по-разному указывают толщину бумаги, шрифты имеют разную ширину, а типографии используют собственные допуски для спуска полос и переплёта. Считайте результат быстрым инструментом планирования для авторов, редакторов и дизайнеров. Перед заказом или экспортом файлов сверьте итоговый шаблон обложки со спецификацией типографии.' },
|
|
47
|
+
{ type: 'tip', title: 'Сохраняйте удобную для чтения типографику', html: 'Меньший шрифт или тесный интервал могут сделать книгу визуально дешевле и затруднить чтение, даже если корешок станет уже. Сравнивайте пресеты визуально и принимайте решение с учётом читательского опыта.' },
|
|
48
|
+
];
|
|
49
|
+
|
|
50
|
+
export const content: ToolLocaleContent<BookPaginationUI> = {
|
|
51
|
+
slug: 'kalkulator-stranic-i-korezhka-knigi',
|
|
52
|
+
title: 'Калькулятор страниц и корешка книги',
|
|
53
|
+
description: 'Оцените страницы, ширину корешка и развёртку обложки по рукописи, формату, типографике, бумаге и переплёту.',
|
|
54
|
+
ui,
|
|
55
|
+
seo,
|
|
56
|
+
faq: [
|
|
57
|
+
{ question: 'Какие данные используются для оценки страниц?', answer: 'Калькулятор использует слова рукописи, обрезной формат, поля, размер шрифта и межстрочный интервал, чтобы оценить знаки, строки и слова на странице.' },
|
|
58
|
+
{ question: 'Почему страницы округляются?', answer: 'Оценки для мягкой и твёрдой обложки округляются до чётного числа. Брошюры со скреплением внакидку округляются до кратного четырём из-за сложенных тетрадей.' },
|
|
59
|
+
{ question: 'Как оценивается ширина корешка?', answer: 'Калькулятор умножает число страниц на толщину бумаги одного листа, делит стопу пополам и добавляет небольшой запас для выбранного переплёта.' },
|
|
60
|
+
{ question: 'Можно ли сразу отправить результат в типографию?', answer: 'Нет. Это оценка для планирования. Подтвердите толщину бумаги, размеры обложки, вылеты и допуски переплёта в типографии.' },
|
|
61
|
+
],
|
|
62
|
+
bibliography: [
|
|
63
|
+
{ name: 'ISO 216:2007 Форматы бумаги', url: 'https://www.iso.org/standard/36631.html' },
|
|
64
|
+
{ name: 'Instituto Nacional de Estadística. Producción editorial de libros', url: 'https://www.ine.es/dyngs/INEbase/es/operacion.htm?c=Estadistica_C&cid=1254736176767&idp=1254735573113&menu=ultiDatos' },
|
|
65
|
+
{ name: 'Доклад ЮНЕСКО о мировой издательской индустрии', url: 'https://doi.org/10.58337/SRUH6078' },
|
|
66
|
+
],
|
|
67
|
+
howTo: [
|
|
68
|
+
{ name: 'Выберите формат', text: 'Начните с пресета романа, крупного шрифта или рабочей тетради.' },
|
|
69
|
+
{ name: 'Настройте рукопись', text: 'Введите число слов и настройте формат, поля, шрифт и межстрочный интервал.' },
|
|
70
|
+
{ name: 'Выберите бумагу и переплёт', text: 'Введите толщину бумаги и выберите мягкую, твёрдую обложку или скрепление внакидку.' },
|
|
71
|
+
{ name: 'Проверьте обложку', text: 'Используйте расчёт корешка и развёртки как основу для файла дизайна.' },
|
|
72
|
+
],
|
|
73
|
+
schemas: [
|
|
74
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: 'Калькулятор страниц и корешка книги', applicationCategory: 'DesignApplication', operatingSystem: 'Any', offers: { '@type': 'Offer', price: '0', priceCurrency: 'RUB' } },
|
|
75
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: [{ '@type': 'Question', name: 'Какие данные используются для оценки страниц?', acceptedAnswer: { '@type': 'Answer', text: 'Используются слова, формат, поля, размер шрифта и межстрочный интервал.' } }, { '@type': 'Question', name: 'Как оценивается ширина корешка?', acceptedAnswer: { '@type': 'Answer', text: 'Используются число страниц, толщина бумаги и запас переплёта.' } }] },
|
|
76
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: 'Оценить страницы и корешок книги', step: [{ '@type': 'HowToStep', name: 'Выберите формат', text: 'Выберите пресет.' }, { '@type': 'HowToStep', name: 'Настройте рукопись', text: 'Введите слова и типографику.' }, { '@type': 'HowToStep', name: 'Выберите бумагу и переплёт', text: 'Настройте толщину и переплёт.' }, { '@type': 'HowToStep', name: 'Проверьте обложку', text: 'Используйте оценку корешка и обложки.' }] },
|
|
77
|
+
],
|
|
78
|
+
};
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
2
|
+
import type { BookPaginationUI } from '../ui';
|
|
3
|
+
|
|
4
|
+
const ui: BookPaginationUI = {
|
|
5
|
+
title: 'Kalkylator för boksidor och ryggbredd',
|
|
6
|
+
scenarioLabel: 'Scenariots namn',
|
|
7
|
+
scenarioPlaceholder: 'Min bok',
|
|
8
|
+
wordsLabel: 'Ord i manuskriptet',
|
|
9
|
+
widthLabel: 'Skärbredd',
|
|
10
|
+
heightLabel: 'Skärhöjd',
|
|
11
|
+
marginLabel: 'Inre marginal',
|
|
12
|
+
fontSizeLabel: 'Teckenstorlek (pt)',
|
|
13
|
+
lineHeightLabel: 'Radavstånd (×)',
|
|
14
|
+
paperLabel: 'Bokens inställningar',
|
|
15
|
+
caliperLabel: 'Papperstjocklek',
|
|
16
|
+
bindingLabel: 'Bindning',
|
|
17
|
+
softcoverLabel: 'Mjuk pärm',
|
|
18
|
+
hardcoverLabel: 'Hård pärm',
|
|
19
|
+
saddleLabel: 'Ryggklamring',
|
|
20
|
+
presetLabel: 'Börja med ett format',
|
|
21
|
+
novelPreset: 'Roman',
|
|
22
|
+
largePrintPreset: 'Stor stil',
|
|
23
|
+
workbookPreset: 'Arbetsbok',
|
|
24
|
+
metricLabel: 'Metriskt mm',
|
|
25
|
+
imperialLabel: 'Imperialtum',
|
|
26
|
+
resetLabel: 'Återställ till roman',
|
|
27
|
+
pagesLabel: 'Uppskattade sidor',
|
|
28
|
+
spineLabel: 'Ryggbredd',
|
|
29
|
+
coverLabel: 'Omslagets utbredning',
|
|
30
|
+
wordsPerPageLabel: 'Ord per sida',
|
|
31
|
+
linesLabel: 'Rader per sida',
|
|
32
|
+
previewLabel: 'Bokmodell',
|
|
33
|
+
previewHint: 'Ryggen växer med pappersblocket. Använd resultatet som en produktionsuppskattning.',
|
|
34
|
+
methodTitle: 'Forma boken före tryck',
|
|
35
|
+
methodHint: 'Prova ett format och justera text och papper för att se sidantal och omslag förändras tillsammans.',
|
|
36
|
+
sourceLabel: 'Uppskattningen använder dina värden. Bekräfta den slutliga ryggen med tryckeriet, papperet och bindningsmetoden.',
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
const seo: ToolLocaleContent<BookPaginationUI>['seo'] = [
|
|
40
|
+
{ type: 'title', text: 'Beräkna boksidor och ryggbredd från ditt manuskript', level: 2 },
|
|
41
|
+
{ type: 'paragraph', html: 'Gör om ett ordantal och en sidlayout till en praktisk första uppskattning av en tryckt bok. Kalkylatorn modellerar användbar textyta, ungefärligt antal ord per sida, bindningens falsregler, papperstjocklek, ryggbredd och hela omslagets utbredning i en visuell arbetsyta.' },
|
|
42
|
+
{ type: 'title', text: 'Det här uppskattar kalkylatorn', level: 2 },
|
|
43
|
+
{ type: 'paragraph', html: 'Siduppskattningen använder skärformat, marginaler, teckenstorlek och radavstånd för att närma sig tecken per rad och rader per sida. Resultatet avrundas till ett jämnt sidantal för mjuk och hård pärm, eller till en multipel av fyra för arbetsböcker med ryggklamring. Ryggen kombinerar sedan pappersblocket med ett litet bindningstillägg.' },
|
|
44
|
+
{ type: 'list', items: ['Använd romanformatet som startpunkt för en kompakt pocketbok.', 'Välj stor stil när större text ändrar antalet ord per sida.', 'Använd arbetsbok för en bredare sida och sidantal som är delbart med fyra.', 'Byt mellan millimeter och tum utan att ändra den fysiska boken.'] },
|
|
45
|
+
{ type: 'title', text: 'En produktionsuppskattning och inte ett tryckprov', level: 2 },
|
|
46
|
+
{ type: 'paragraph', html: 'Papperstillverkare anger tjocklek på olika sätt, typsnitt har olika bredd och tryckerier använder egna toleranser för påläggning och bindning. Se resultatet som ett snabbt planeringsverktyg för författare, redaktörer och formgivare. Kontrollera den slutliga omslagsmallen mot tryckeriets specifikation innan du beställer eller exporterar filer.' },
|
|
47
|
+
{ type: 'tip', title: 'Behåll en lättläst typografi', html: 'Mindre text eller tätare radavstånd kan få boken att se billigare ut och göra den svårare att läsa även om ryggen blir smalare. Jämför formaten visuellt och låt läsupplevelsen styra beslutet.' },
|
|
48
|
+
];
|
|
49
|
+
|
|
50
|
+
export const content: ToolLocaleContent<BookPaginationUI> = {
|
|
51
|
+
slug: 'kalkylator-for-boksidor-och-ryggbredd',
|
|
52
|
+
title: 'Kalkylator för boksidor och ryggbredd',
|
|
53
|
+
description: 'Uppskatta tryckta sidor, ryggbredd och omslag från manuskript, format, typografi, papper och bindning.',
|
|
54
|
+
ui,
|
|
55
|
+
seo,
|
|
56
|
+
faq: [
|
|
57
|
+
{ question: 'Vilka uppgifter används för siduppskattningen?', answer: 'Den använder manuskriptets ord, skärformat, marginaler, teckenstorlek och radavstånd för att uppskatta tecken, rader och ord per sida.' },
|
|
58
|
+
{ question: 'Varför avrundas sidantalet?', answer: 'Mjuk och hård pärm avrundas till jämnt sidantal. Böcker med ryggklamring avrundas till multiplar av fyra på grund av vikta ark.' },
|
|
59
|
+
{ question: 'Hur uppskattas ryggbredden?', answer: 'Kalkylatorn multiplicerar sidantalet med papperstjockleken per ark, delar blocket med två och lägger till ett litet tillägg för den valda bindningen.' },
|
|
60
|
+
{ question: 'Är resultatet klart för tryckeriet?', answer: 'Nej. Det är en planeringsuppskattning. Bekräfta papperstjocklek, omslagsmått, utfall och bindningstoleranser med tryckeriet.' },
|
|
61
|
+
],
|
|
62
|
+
bibliography: [
|
|
63
|
+
{ name: 'ISO 216:2007 Pappersformat', url: 'https://www.iso.org/standard/36631.html' },
|
|
64
|
+
{ name: 'Instituto Nacional de Estadística. Producción editorial de libros', url: 'https://www.ine.es/dyngs/INEbase/es/operacion.htm?c=Estadistica_C&cid=1254736176767&idp=1254735573113&menu=ultiDatos' },
|
|
65
|
+
{ name: 'UNESCO rapport om den globala förlagsbranschen', url: 'https://doi.org/10.58337/SRUH6078' },
|
|
66
|
+
],
|
|
67
|
+
howTo: [
|
|
68
|
+
{ name: 'Välj ett format', text: 'Börja med preset för roman, stor stil eller arbetsbok.' },
|
|
69
|
+
{ name: 'Ställ in manuskriptet', text: 'Ange ordantalet och justera format, marginaler, typsnitt och radavstånd.' },
|
|
70
|
+
{ name: 'Välj papper och bindning', text: 'Ange papperstjockleken och välj mjuk pärm, hård pärm eller ryggklamring.' },
|
|
71
|
+
{ name: 'Granska omslaget', text: 'Använd den uppskattade ryggen och utbredningen som utgångspunkt för designfilen.' },
|
|
72
|
+
],
|
|
73
|
+
schemas: [
|
|
74
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: 'Kalkylator för boksidor och ryggbredd', applicationCategory: 'DesignApplication', operatingSystem: 'Any', offers: { '@type': 'Offer', price: '0', priceCurrency: 'SEK' } },
|
|
75
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: [{ '@type': 'Question', name: 'Vilka uppgifter används för siduppskattningen?', acceptedAnswer: { '@type': 'Answer', text: 'Den använder ord, format, marginaler, teckenstorlek och radavstånd.' } }, { '@type': 'Question', name: 'Hur uppskattas ryggbredden?', acceptedAnswer: { '@type': 'Answer', text: 'Den använder sidantal, papperstjocklek och ett bindningstillägg.' } }] },
|
|
76
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: 'Uppskatta boksidor och ryggbredd', step: [{ '@type': 'HowToStep', name: 'Välj ett format', text: 'Välj ett preset.' }, { '@type': 'HowToStep', name: 'Ställ in manuskriptet', text: 'Ange ord och typografi.' }, { '@type': 'HowToStep', name: 'Välj papper och bindning', text: 'Ställ in tjocklek och bindning.' }, { '@type': 'HowToStep', name: 'Granska omslaget', text: 'Använd uppskattningen för rygg och omslag.' }] },
|
|
77
|
+
],
|
|
78
|
+
};
|