aurochs 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/dist/aurochs-cli +572 -572
  2. package/package.json +4 -27
package/dist/aurochs-cli CHANGED
@@ -1,5 +1,5 @@
1
- #!/usr/bin/env bun
2
- // @bun
1
+ #!/usr/bin/env node
2
+ import { createRequire } from "node:module";
3
3
  var __create = Object.create;
4
4
  var __getProtoOf = Object.getPrototypeOf;
5
5
  var __defProp = Object.defineProperty;
@@ -27,7 +27,7 @@ var __export = (target, all) => {
27
27
  });
28
28
  };
29
29
  var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
30
- var __require = import.meta.require;
30
+ var __require = /* @__PURE__ */ createRequire(import.meta.url);
31
31
 
32
32
  // node_modules/commander/lib/error.js
33
33
  var require_error = __commonJS((exports) => {
@@ -352,7 +352,7 @@ var require_help = __commonJS((exports) => {
352
352
  return Math.max(helper.longestOptionTermLength(cmd, helper), helper.longestGlobalOptionTermLength(cmd, helper), helper.longestSubcommandTermLength(cmd, helper), helper.longestArgumentTermLength(cmd, helper));
353
353
  }
354
354
  wrap(str, width, indent, minColumnWidth = 40) {
355
- const indents = " \\f\\t\\v\xA0\u1680\u2000-\u200A\u202F\u205F\u3000\uFEFF";
355
+ const indents = " \\f\\t\\v   -    \uFEFF";
356
356
  const manualIndent = new RegExp(`[\\n][${indents}]+`);
357
357
  if (str.match(manualIndent))
358
358
  return str;
@@ -364,7 +364,7 @@ var require_help = __commonJS((exports) => {
364
364
  `, `
365
365
  `);
366
366
  const indentString = " ".repeat(indent);
367
- const zeroWidthSpace = "\u200B";
367
+ const zeroWidthSpace = "";
368
368
  const breaks = `\\s${zeroWidthSpace}`;
369
369
  const regex = new RegExp(`
370
370
  |.{1,${columnWidth - 1}}([${breaks}]|$)|[^${breaks}]+?([${breaks}]|$)`, "g");
@@ -607,11 +607,11 @@ var require_suggestSimilar = __commonJS((exports) => {
607
607
 
608
608
  // node_modules/commander/lib/command.js
609
609
  var require_command = __commonJS((exports) => {
610
- var EventEmitter = __require("events").EventEmitter;
611
- var childProcess = __require("child_process");
612
- var path = __require("path");
613
- var fs = __require("fs");
614
- var process2 = __require("process");
610
+ var EventEmitter = __require("node:events").EventEmitter;
611
+ var childProcess = __require("node:child_process");
612
+ var path = __require("node:path");
613
+ var fs = __require("node:fs");
614
+ var process2 = __require("node:process");
615
615
  var { Argument, humanReadableArgName } = require_argument();
616
616
  var { CommanderError } = require_error();
617
617
  var { Help } = require_help();
@@ -1869,7 +1869,7 @@ var require_commander = __commonJS((exports) => {
1869
1869
  });
1870
1870
 
1871
1871
  // node_modules/fflate/esm/index.mjs
1872
- import { createRequire } from "module";
1872
+ import { createRequire as createRequire2 } from "module";
1873
1873
  function deflateSync(data, opts) {
1874
1874
  return dopt(data, opts || {}, 0, 0);
1875
1875
  }
@@ -2649,7 +2649,7 @@ var require2, Worker, u8, u16, i32, fleb, fdeb, clim, freb = function(eb, start)
2649
2649
  wbytes(o, b + 16, e);
2650
2650
  };
2651
2651
  var init_esm = __esm(() => {
2652
- require2 = createRequire("/");
2652
+ require2 = createRequire2("/");
2653
2653
  try {
2654
2654
  Worker = require2("worker_threads").Worker;
2655
2655
  } catch (e) {}
@@ -9421,7 +9421,7 @@ function parseFib(data) {
9421
9421
  // packages/@aurochs-office/doc/src/stream/piece-table.ts
9422
9422
  function parsePieceTable(tableStream, fcClx, lcbClx) {
9423
9423
  if (lcbClx === 0) {
9424
- throw new Error("Clx size is 0 \u2013 no piece table present");
9424
+ throw new Error("Clx size is 0 no piece table present");
9425
9425
  }
9426
9426
  if (fcClx + lcbClx > tableStream.length) {
9427
9427
  throw new Error(`Clx extends beyond table stream: offset ${fcClx} + size ${lcbClx} > stream length ${tableStream.length}`);
@@ -13676,8 +13676,8 @@ var {
13676
13676
  } = import__.default;
13677
13677
 
13678
13678
  // packages/@aurochs-cli/pptx-cli/src/commands/loader.ts
13679
- import * as fs from "fs/promises";
13680
- import { extname } from "path";
13679
+ import * as fs from "node:fs/promises";
13680
+ import { extname } from "node:path";
13681
13681
 
13682
13682
  // packages/@aurochs-office/pptx/src/app/pptx-loader.ts
13683
13683
  init_src();
@@ -17529,7 +17529,7 @@ function parseBullet(pPr) {
17529
17529
  if (buChar) {
17530
17530
  return {
17531
17531
  type: "char",
17532
- char: getAttr(buChar, "char") ?? "\u2022"
17532
+ char: getAttr(buChar, "char") ?? ""
17533
17533
  };
17534
17534
  }
17535
17535
  const buBlip = getChild(pPr, "a:buBlip");
@@ -32649,13 +32649,13 @@ async function runTheme(filePath) {
32649
32649
  }
32650
32650
 
32651
32651
  // packages/@aurochs-cli/pptx-cli/src/commands/build.ts
32652
- import * as fs3 from "fs/promises";
32653
- import * as path4 from "path";
32652
+ import * as fs3 from "node:fs/promises";
32653
+ import * as path4 from "node:path";
32654
32654
  init_src2();
32655
32655
 
32656
32656
  // packages/@aurochs-builder/pptx/src/builders/file-utils.ts
32657
- import * as fs2 from "fs/promises";
32658
- import * as path from "path";
32657
+ import * as fs2 from "node:fs/promises";
32658
+ import * as path from "node:path";
32659
32659
  var IMAGE_EXT_MAP = {
32660
32660
  ".png": "image/png",
32661
32661
  ".jpg": "image/jpeg",
@@ -33199,7 +33199,7 @@ function buildMediaReferenceFromSpec(spec, rId, contentType) {
33199
33199
 
33200
33200
  // packages/@aurochs-builder/pptx/src/builders/background-builder.ts
33201
33201
  init_src2();
33202
- import * as path2 from "path";
33202
+ import * as path2 from "node:path";
33203
33203
 
33204
33204
  // packages/@aurochs-builder/pptx/src/patcher/core/xml-mutator.ts
33205
33205
  init_src2();
@@ -34066,7 +34066,7 @@ function isImageBackground(spec) {
34066
34066
  return typeof spec === "object" && spec.type === "image";
34067
34067
  }
34068
34068
  // packages/@aurochs-builder/pptx/src/builders/registry.ts
34069
- import * as path3 from "path";
34069
+ import * as path3 from "node:path";
34070
34070
  // packages/@aurochs-builder/pptx/src/patcher/serializer/line.ts
34071
34071
  init_src2();
34072
34072
  function serializeLine2(line2) {
@@ -38574,7 +38574,7 @@ function buildBulletStyle(spec) {
38574
38574
  return;
38575
38575
  if (spec.type === "char") {
38576
38576
  return {
38577
- bullet: { type: "char", char: spec.char ?? "\u2022" },
38577
+ bullet: { type: "char", char: spec.char ?? "" },
38578
38578
  colorFollowText: true,
38579
38579
  sizeFollowText: true,
38580
38580
  fontFollowText: true
@@ -40459,8 +40459,8 @@ async function runBuild(specPath) {
40459
40459
  }
40460
40460
 
40461
40461
  // packages/@aurochs-cli/pptx-cli/src/commands/verify.ts
40462
- import * as fs4 from "fs/promises";
40463
- import * as path5 from "path";
40462
+ import * as fs4 from "node:fs/promises";
40463
+ import * as path5 from "node:path";
40464
40464
  function createAssertion(path6, expected, actual) {
40465
40465
  return {
40466
40466
  path: path6,
@@ -40844,20 +40844,20 @@ function createResourceStore() {
40844
40844
 
40845
40845
  // packages/@aurochs-renderer/drawing-ml/src/ascii/ascii-canvas.ts
40846
40846
  var BOX_CHARS = {
40847
- topLeft: "\u250C",
40848
- topRight: "\u2510",
40849
- bottomLeft: "\u2514",
40850
- bottomRight: "\u2518",
40851
- horizontal: "\u2500",
40852
- vertical: "\u2502"
40847
+ topLeft: "",
40848
+ topRight: "",
40849
+ bottomLeft: "",
40850
+ bottomRight: "",
40851
+ horizontal: "",
40852
+ vertical: ""
40853
40853
  };
40854
40854
  var TABLE_CHARS = {
40855
40855
  ...BOX_CHARS,
40856
- topTee: "\u252C",
40857
- bottomTee: "\u2534",
40858
- leftTee: "\u251C",
40859
- rightTee: "\u2524",
40860
- cross: "\u253C"
40856
+ topTee: "",
40857
+ bottomTee: "",
40858
+ leftTee: "",
40859
+ rightTee: "",
40860
+ cross: ""
40861
40861
  };
40862
40862
  function createCanvas(width, height) {
40863
40863
  const cells = [];
@@ -41102,7 +41102,7 @@ function renderAsciiTable(params) {
41102
41102
  `);
41103
41103
  }
41104
41104
  // packages/@aurochs-renderer/chart/src/ascii/bar-renderer.ts
41105
- var BAR_CHAR = "\u2588";
41105
+ var BAR_CHAR = "";
41106
41106
  function renderBarAscii(params) {
41107
41107
  const { series, width } = params;
41108
41108
  if (series.length === 0) {
@@ -41151,7 +41151,7 @@ function renderBarAscii(params) {
41151
41151
 
41152
41152
  // packages/@aurochs-renderer/chart/src/ascii/line-renderer.ts
41153
41153
  var POINT_CHAR = "*";
41154
- var LINE_CHARS = { horizontal: "\u2500", vertical: "\u2502", corner: "\u2514" };
41154
+ var LINE_CHARS = { horizontal: "", vertical: "", corner: "" };
41155
41155
  function renderLineAscii(params) {
41156
41156
  const { series, width } = params;
41157
41157
  if (series.length === 0 || series[0].values.length === 0) {
@@ -41229,8 +41229,8 @@ function renderLineAscii(params) {
41229
41229
  }
41230
41230
 
41231
41231
  // packages/@aurochs-renderer/chart/src/ascii/pie-renderer.ts
41232
- var PIE_MARKERS = ["\u25A0", "\u25A1", "\u25AA", "\u25AB", "\u25CF", "\u25CB", "\u25C6", "\u25C7"];
41233
- var BAR_CHAR2 = "\u2588";
41232
+ var PIE_MARKERS = ["", "", "", "", "", "", "", ""];
41233
+ var BAR_CHAR2 = "";
41234
41234
  function renderPieAscii(params) {
41235
41235
  const { series, width } = params;
41236
41236
  if (series.length === 0) {
@@ -41270,7 +41270,7 @@ function renderChartAscii(params) {
41270
41270
  const lines = [];
41271
41271
  if (title) {
41272
41272
  lines.push(title);
41273
- lines.push("\u2500".repeat(Math.min(title.length + 4, width)));
41273
+ lines.push("".repeat(Math.min(title.length + 4, width)));
41274
41274
  }
41275
41275
  let chart;
41276
41276
  switch (chartType) {
@@ -41915,7 +41915,7 @@ function formatVerifyPretty(data) {
41915
41915
  lines.push(`${status}: ${data.passed}/${total} tests passed`);
41916
41916
  lines.push("");
41917
41917
  for (const result of data.results) {
41918
- const icon = result.passed ? "\u2713" : "\u2717";
41918
+ const icon = result.passed ? "" : "";
41919
41919
  lines.push(`${icon} ${result.name}`);
41920
41920
  if (!result.passed) {
41921
41921
  const failedAssertions = result.assertions.filter((a) => !a.passed);
@@ -42391,8 +42391,8 @@ init_src6();
42391
42391
 
42392
42392
  // packages/@aurochs-cli/docx-cli/src/commands/loader.ts
42393
42393
  init_src6();
42394
- import * as fs5 from "fs/promises";
42395
- import { extname as extname3 } from "path";
42394
+ import * as fs5 from "node:fs/promises";
42395
+ import { extname as extname3 } from "node:path";
42396
42396
  async function loadDocument(filePath) {
42397
42397
  const buffer = await fs5.readFile(filePath);
42398
42398
  if (extname3(filePath).toLowerCase() === ".doc") {
@@ -42851,8 +42851,8 @@ async function runExtract2(filePath, options) {
42851
42851
  }
42852
42852
 
42853
42853
  // packages/@aurochs-cli/docx-cli/src/commands/build.ts
42854
- import * as fs6 from "fs/promises";
42855
- import * as path6 from "path";
42854
+ import * as fs6 from "node:fs/promises";
42855
+ import * as path6 from "node:path";
42856
42856
  async function runBuild2(specPath) {
42857
42857
  try {
42858
42858
  const specJson = await fs6.readFile(specPath, "utf-8");
@@ -42876,8 +42876,8 @@ async function runBuild2(specPath) {
42876
42876
  }
42877
42877
 
42878
42878
  // packages/@aurochs-cli/docx-cli/src/commands/verify.ts
42879
- import * as fs7 from "fs/promises";
42880
- import * as path7 from "path";
42879
+ import * as fs7 from "node:fs/promises";
42880
+ import * as path7 from "node:path";
42881
42881
  function createAssertion2(path8, expected, actual) {
42882
42882
  return {
42883
42883
  path: path8,
@@ -43361,7 +43361,7 @@ function renderNumberedItem(para, width) {
43361
43361
  function renderBulletItem(para, width) {
43362
43362
  const level = para.numbering?.level ?? 0;
43363
43363
  const indent = " ".repeat(level);
43364
- const bullet = `${indent}\u2022 `;
43364
+ const bullet = `${indent} `;
43365
43365
  const lines = wrapText(para.text, width - bullet.length);
43366
43366
  return lines.map((line2, i2) => i2 === 0 ? bullet + line2 : " ".repeat(bullet.length) + line2);
43367
43367
  }
@@ -43380,7 +43380,7 @@ function renderParagraphAscii(para, width) {
43380
43380
  if (para.numbering) {
43381
43381
  return renderNumberedItem(para, width);
43382
43382
  }
43383
- if (para.text.startsWith("\u2022") || para.text.startsWith("-") || para.text.startsWith("*")) {
43383
+ if (para.text.startsWith("") || para.text.startsWith("-") || para.text.startsWith("*")) {
43384
43384
  return renderBulletItem({ ...para, text: para.text.replace(/^[\u2022\-*]\s*/, ""), numbering: { numId: 0, level: 0 } }, width);
43385
43385
  }
43386
43386
  return renderPlainParagraph(para.text, width);
@@ -43549,7 +43549,7 @@ function formatInfoPretty2(data) {
43549
43549
  `Sections: ${data.sectionCount}`
43550
43550
  ];
43551
43551
  if (data.pageSize) {
43552
- lines.push(`Page Size: ${data.pageSize.width}pt \xD7 ${data.pageSize.height}pt (${data.pageSize.orientation ?? "portrait"})`);
43552
+ lines.push(`Page Size: ${data.pageSize.width}pt × ${data.pageSize.height}pt (${data.pageSize.orientation ?? "portrait"})`);
43553
43553
  }
43554
43554
  lines.push(`Styles: ${data.hasStyles ? "yes" : "no"}`);
43555
43555
  lines.push(`Numbering: ${data.hasNumbering ? "yes" : "no"}`);
@@ -43585,7 +43585,7 @@ function formatListPretty2(data) {
43585
43585
  ` Tables: ${section.tableCount}`
43586
43586
  ];
43587
43587
  if (section.pageWidth && section.pageHeight) {
43588
- parts.push(` Page: ${section.pageWidth}pt \xD7 ${section.pageHeight}pt`);
43588
+ parts.push(` Page: ${section.pageWidth}pt × ${section.pageHeight}pt`);
43589
43589
  }
43590
43590
  if (section.orientation) {
43591
43591
  parts.push(` Orientation: ${section.orientation}`);
@@ -43609,7 +43609,7 @@ function formatShowPretty2(data) {
43609
43609
  lines.push(` Type: ${data.sectionProperties.type}`);
43610
43610
  }
43611
43611
  if (data.sectionProperties.pageSize) {
43612
- lines.push(` Page: ${data.sectionProperties.pageSize.width}pt \xD7 ${data.sectionProperties.pageSize.height}pt`);
43612
+ lines.push(` Page: ${data.sectionProperties.pageSize.width}pt × ${data.sectionProperties.pageSize.height}pt`);
43613
43613
  }
43614
43614
  }
43615
43615
  lines.push("");
@@ -43624,7 +43624,7 @@ function formatShowPretty2(data) {
43624
43624
  lines.push(" [P] (empty)");
43625
43625
  }
43626
43626
  } else if (block.type === "table") {
43627
- lines.push(` [T] ${block.rowCount} rows \xD7 ${block.colCount} cols`);
43627
+ lines.push(` [T] ${block.rowCount} rows × ${block.colCount} cols`);
43628
43628
  }
43629
43629
  }
43630
43630
  return lines.join(`
@@ -43643,7 +43643,7 @@ function formatVerifyPretty2(data) {
43643
43643
  const lines = [`Results: ${data.passed} passed, ${data.failed} failed`];
43644
43644
  lines.push("");
43645
43645
  for (const result of data.results) {
43646
- const status = result.passed ? "\u2713" : "\u2717";
43646
+ const status = result.passed ? "" : "";
43647
43647
  lines.push(`${status} ${result.name}`);
43648
43648
  if (!result.passed) {
43649
43649
  for (const assertion of result.assertions.filter((a) => !a.passed)) {
@@ -43777,7 +43777,7 @@ function formatTablesPretty2(data) {
43777
43777
  }
43778
43778
  const lines = [`Tables: ${data.count}`, ""];
43779
43779
  for (const table of data.tables) {
43780
- lines.push(`Table ${table.index + 1}: ${table.rowCount} rows \xD7 ${table.colCount} cols`);
43780
+ lines.push(`Table ${table.index + 1}: ${table.rowCount} rows × ${table.colCount} cols`);
43781
43781
  if (table.style) {
43782
43782
  lines.push(` Style: ${table.style}`);
43783
43783
  }
@@ -43802,7 +43802,7 @@ function formatImagesPretty2(data) {
43802
43802
  if (img.width !== undefined && img.height !== undefined) {
43803
43803
  const widthPx = Math.round(img.width / 9525);
43804
43804
  const heightPx = Math.round(img.height / 9525);
43805
- lines.push(` Size: ${widthPx}px \xD7 ${heightPx}px`);
43805
+ lines.push(` Size: ${widthPx}px × ${heightPx}px`);
43806
43806
  }
43807
43807
  if (img.embedId) {
43808
43808
  lines.push(` Embed ID: ${img.embedId}`);
@@ -44032,7 +44032,7 @@ function createProgram2() {
44032
44032
  }
44033
44033
  // packages/@aurochs-cli/xlsx-cli/src/utils/xlsx-loader.ts
44034
44034
  init_src();
44035
- import * as fs8 from "fs/promises";
44035
+ import * as fs8 from "node:fs/promises";
44036
44036
 
44037
44037
  // packages/@aurochs-office/xlsx/src/domain/style/types.ts
44038
44038
  function createDefaultStyleSheet() {
@@ -48094,8 +48094,8 @@ async function runExtract3(filePath, options = {}) {
48094
48094
  }
48095
48095
 
48096
48096
  // packages/@aurochs-cli/xlsx-cli/src/commands/build.ts
48097
- import * as fs9 from "fs/promises";
48098
- import * as path8 from "path";
48097
+ import * as fs9 from "node:fs/promises";
48098
+ import * as path8 from "node:path";
48099
48099
  async function runBuild3(specPath) {
48100
48100
  try {
48101
48101
  const specJson = await fs9.readFile(specPath, "utf-8");
@@ -48119,8 +48119,8 @@ async function runBuild3(specPath) {
48119
48119
  }
48120
48120
 
48121
48121
  // packages/@aurochs-cli/xlsx-cli/src/commands/verify.ts
48122
- import * as fs10 from "fs/promises";
48123
- import * as path9 from "path";
48122
+ import * as fs10 from "node:fs/promises";
48123
+ import * as path9 from "node:path";
48124
48124
  function createAssertion3(path10, expected, actual) {
48125
48125
  return {
48126
48126
  path: path10,
@@ -48787,7 +48787,7 @@ var sumFunction = {
48787
48787
  category: "aggregate",
48788
48788
  description: {
48789
48789
  en: "Adds all numeric arguments, ignoring empty cells and null values.",
48790
- ja: "\u7A7A\u306E\u30BB\u30EB\u3084null\u3092\u7121\u8996\u3057\u3066\u6570\u5024\u5F15\u6570\u3092\u5408\u8A08\u3057\u307E\u3059\u3002"
48790
+ ja: "空のセルやnullを無視して数値引数を合計します。"
48791
48791
  },
48792
48792
  examples: ["SUM(1, 2, 3)", "SUM(A1:A10)"],
48793
48793
  samples: [
@@ -48796,7 +48796,7 @@ var sumFunction = {
48796
48796
  output: 6,
48797
48797
  description: {
48798
48798
  en: "Sum of three numbers",
48799
- ja: "3\u3064\u306E\u6570\u5024\u306E\u5408\u8A08"
48799
+ ja: "3つの数値の合計"
48800
48800
  }
48801
48801
  },
48802
48802
  {
@@ -48804,7 +48804,7 @@ var sumFunction = {
48804
48804
  output: 100,
48805
48805
  description: {
48806
48806
  en: "Sum of four numbers",
48807
- ja: "4\u3064\u306E\u6570\u5024\u306E\u5408\u8A08"
48807
+ ja: "4つの数値の合計"
48808
48808
  }
48809
48809
  },
48810
48810
  {
@@ -48812,7 +48812,7 @@ var sumFunction = {
48812
48812
  output: 10,
48813
48813
  description: {
48814
48814
  en: "Sum with negative numbers",
48815
- ja: "\u8CA0\u306E\u6570\u3092\u542B\u3080\u5408\u8A08"
48815
+ ja: "負の数を含む合計"
48816
48816
  }
48817
48817
  }
48818
48818
  ],
@@ -48836,7 +48836,7 @@ var productFunction = {
48836
48836
  category: "aggregate",
48837
48837
  description: {
48838
48838
  en: "Multiplies numeric arguments while skipping empty cells and null values.",
48839
- ja: "\u7A7A\u306E\u30BB\u30EB\u3068null\u3092\u7121\u8996\u3057\u3066\u6570\u5024\u5F15\u6570\u3092\u639B\u3051\u5408\u308F\u305B\u307E\u3059\u3002"
48839
+ ja: "空のセルとnullを無視して数値引数を掛け合わせます。"
48840
48840
  },
48841
48841
  examples: ["PRODUCT(2, 3, 4)", "PRODUCT(A1:A3)"],
48842
48842
  samples: [
@@ -48845,7 +48845,7 @@ var productFunction = {
48845
48845
  output: 24,
48846
48846
  description: {
48847
48847
  en: "Product of three numbers",
48848
- ja: "3\u3064\u306E\u6570\u5024\u306E\u7A4D"
48848
+ ja: "3つの数値の積"
48849
48849
  }
48850
48850
  },
48851
48851
  {
@@ -48853,7 +48853,7 @@ var productFunction = {
48853
48853
  output: 50,
48854
48854
  description: {
48855
48855
  en: "Product of two numbers",
48856
- ja: "2\u3064\u306E\u6570\u5024\u306E\u7A4D"
48856
+ ja: "2つの数値の積"
48857
48857
  }
48858
48858
  },
48859
48859
  {
@@ -48861,7 +48861,7 @@ var productFunction = {
48861
48861
  output: 6,
48862
48862
  description: {
48863
48863
  en: "Product with negative numbers",
48864
- ja: "\u8CA0\u306E\u6570\u3092\u542B\u3080\u7A4D"
48864
+ ja: "負の数を含む積"
48865
48865
  }
48866
48866
  }
48867
48867
  ],
@@ -48885,7 +48885,7 @@ var powerFunction = {
48885
48885
  category: "aggregate",
48886
48886
  description: {
48887
48887
  en: "Raises a base number to a given exponent.",
48888
- ja: "\u6307\u5B9A\u3057\u305F\u6307\u6570\u3067\u5E95\u3068\u306A\u308B\u6570\u5024\u3092\u3079\u304D\u4E57\u3057\u307E\u3059\u3002"
48888
+ ja: "指定した指数で底となる数値をべき乗します。"
48889
48889
  },
48890
48890
  examples: ["POWER(2, 3)", "POWER(A1, 0.5)"],
48891
48891
  samples: [
@@ -48894,7 +48894,7 @@ var powerFunction = {
48894
48894
  output: 8,
48895
48895
  description: {
48896
48896
  en: "Two raised to the power of three",
48897
- ja: "2\u306E3\u4E57"
48897
+ ja: "2の3乗"
48898
48898
  }
48899
48899
  },
48900
48900
  {
@@ -48902,7 +48902,7 @@ var powerFunction = {
48902
48902
  output: 25,
48903
48903
  description: {
48904
48904
  en: "Five squared",
48905
- ja: "5\u306E2\u4E57"
48905
+ ja: "5の2乗"
48906
48906
  }
48907
48907
  },
48908
48908
  {
@@ -48910,7 +48910,7 @@ var powerFunction = {
48910
48910
  output: 2,
48911
48911
  description: {
48912
48912
  en: "Square root using fractional exponent",
48913
- ja: "\u5C0F\u6570\u6307\u6570\u3092\u4F7F\u7528\u3057\u305F\u5E73\u65B9\u6839"
48913
+ ja: "小数指数を使用した平方根"
48914
48914
  }
48915
48915
  }
48916
48916
  ],
@@ -48951,7 +48951,7 @@ var roundFunction = {
48951
48951
  category: "aggregate",
48952
48952
  description: {
48953
48953
  en: "Rounds a number to a specified number of digits using half-away-from-zero rounding.",
48954
- ja: "\u6570\u5024\u3092\u6307\u5B9A\u3057\u305F\u6841\u6570\u306B\u3001\u30BC\u30ED\u304B\u3089\u96E2\u308C\u308B\u4E38\u3081\u898F\u5247\u3067\u4E38\u3081\u307E\u3059\u3002"
48954
+ ja: "数値を指定した桁数に、ゼロから離れる丸め規則で丸めます。"
48955
48955
  },
48956
48956
  examples: ["ROUND(1.235, 2)", "ROUND(A1, -1)"],
48957
48957
  samples: [
@@ -48960,7 +48960,7 @@ var roundFunction = {
48960
48960
  output: 1.24,
48961
48961
  description: {
48962
48962
  en: "Round to two decimal places",
48963
- ja: "\u5C0F\u6570\u7B2C2\u4F4D\u306B\u56DB\u6368\u4E94\u5165"
48963
+ ja: "小数第2位に四捨五入"
48964
48964
  }
48965
48965
  },
48966
48966
  {
@@ -48968,7 +48968,7 @@ var roundFunction = {
48968
48968
  output: 16,
48969
48969
  description: {
48970
48970
  en: "Round to nearest integer",
48971
- ja: "\u6700\u3082\u8FD1\u3044\u6574\u6570\u306B\u56DB\u6368\u4E94\u5165"
48971
+ ja: "最も近い整数に四捨五入"
48972
48972
  }
48973
48973
  },
48974
48974
  {
@@ -48976,7 +48976,7 @@ var roundFunction = {
48976
48976
  output: 1200,
48977
48977
  description: {
48978
48978
  en: "Round to hundreds place",
48979
- ja: "\u767E\u306E\u4F4D\u306B\u56DB\u6368\u4E94\u5165"
48979
+ ja: "百の位に四捨五入"
48980
48980
  }
48981
48981
  }
48982
48982
  ],
@@ -49017,7 +49017,7 @@ var roundUpFunction = {
49017
49017
  category: "aggregate",
49018
49018
  description: {
49019
49019
  en: "Rounds a number away from zero to the specified number of digits.",
49020
- ja: "\u6570\u5024\u3092\u30BC\u30ED\u304B\u3089\u9060\u3056\u304B\u308B\u65B9\u5411\u306B\u6307\u5B9A\u6841\u3078\u5207\u308A\u4E0A\u3052\u307E\u3059\u3002"
49020
+ ja: "数値をゼロから遠ざかる方向に指定桁へ切り上げます。"
49021
49021
  },
49022
49022
  examples: ["ROUNDUP(1.21, 1)", "ROUNDUP(A1, -2)"],
49023
49023
  samples: [
@@ -49026,7 +49026,7 @@ var roundUpFunction = {
49026
49026
  output: 1.3,
49027
49027
  description: {
49028
49028
  en: "Round up to one decimal place",
49029
- ja: "\u5C0F\u6570\u7B2C1\u4F4D\u3078\u5207\u308A\u4E0A\u3052"
49029
+ ja: "小数第1位へ切り上げ"
49030
49030
  }
49031
49031
  },
49032
49032
  {
@@ -49034,7 +49034,7 @@ var roundUpFunction = {
49034
49034
  output: 4,
49035
49035
  description: {
49036
49036
  en: "Round up to nearest integer",
49037
- ja: "\u6700\u3082\u8FD1\u3044\u6574\u6570\u3078\u5207\u308A\u4E0A\u3052"
49037
+ ja: "最も近い整数へ切り上げ"
49038
49038
  }
49039
49039
  },
49040
49040
  {
@@ -49042,7 +49042,7 @@ var roundUpFunction = {
49042
49042
  output: -3,
49043
49043
  description: {
49044
49044
  en: "Round negative number away from zero",
49045
- ja: "\u8CA0\u306E\u6570\u3092\u30BC\u30ED\u304B\u3089\u9060\u3056\u3051\u308B\u65B9\u5411\u3078"
49045
+ ja: "負の数をゼロから遠ざける方向へ"
49046
49046
  }
49047
49047
  }
49048
49048
  ],
@@ -49083,7 +49083,7 @@ var roundDownFunction = {
49083
49083
  category: "aggregate",
49084
49084
  description: {
49085
49085
  en: "Rounds a number toward zero to the specified number of digits.",
49086
- ja: "\u6570\u5024\u3092\u30BC\u30ED\u65B9\u5411\u3078\u5207\u308A\u4E0B\u3052\u3066\u6307\u5B9A\u6841\u306B\u63C3\u3048\u307E\u3059\u3002"
49086
+ ja: "数値をゼロ方向へ切り下げて指定桁に揃えます。"
49087
49087
  },
49088
49088
  examples: ["ROUNDDOWN(1.29, 1)", "ROUNDDOWN(A1, -1)"],
49089
49089
  samples: [
@@ -49092,7 +49092,7 @@ var roundDownFunction = {
49092
49092
  output: 1.2,
49093
49093
  description: {
49094
49094
  en: "Round down to one decimal place",
49095
- ja: "\u5C0F\u6570\u7B2C1\u4F4D\u3078\u5207\u308A\u4E0B\u3052"
49095
+ ja: "小数第1位へ切り下げ"
49096
49096
  }
49097
49097
  },
49098
49098
  {
@@ -49100,7 +49100,7 @@ var roundDownFunction = {
49100
49100
  output: 3,
49101
49101
  description: {
49102
49102
  en: "Round down to nearest integer",
49103
- ja: "\u6700\u3082\u8FD1\u3044\u6574\u6570\u3078\u5207\u308A\u4E0B\u3052"
49103
+ ja: "最も近い整数へ切り下げ"
49104
49104
  }
49105
49105
  },
49106
49106
  {
@@ -49108,7 +49108,7 @@ var roundDownFunction = {
49108
49108
  output: -2,
49109
49109
  description: {
49110
49110
  en: "Round negative number toward zero",
49111
- ja: "\u8CA0\u306E\u6570\u3092\u30BC\u30ED\u65B9\u5411\u3078"
49111
+ ja: "負の数をゼロ方向へ"
49112
49112
  }
49113
49113
  }
49114
49114
  ],
@@ -49131,7 +49131,7 @@ var absFunction = {
49131
49131
  category: "aggregate",
49132
49132
  description: {
49133
49133
  en: "Returns the absolute value of a number.",
49134
- ja: "\u6570\u5024\u306E\u7D76\u5BFE\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
49134
+ ja: "数値の絶対値を返します。"
49135
49135
  },
49136
49136
  examples: ["ABS(-5)", "ABS(A1)"],
49137
49137
  samples: [
@@ -49140,7 +49140,7 @@ var absFunction = {
49140
49140
  output: 5,
49141
49141
  description: {
49142
49142
  en: "Absolute value of a negative number",
49143
- ja: "\u8CA0\u306E\u6570\u306E\u7D76\u5BFE\u5024"
49143
+ ja: "負の数の絶対値"
49144
49144
  }
49145
49145
  },
49146
49146
  {
@@ -49148,7 +49148,7 @@ var absFunction = {
49148
49148
  output: 3.14,
49149
49149
  description: {
49150
49150
  en: "Absolute value of a positive number",
49151
- ja: "\u6B63\u306E\u6570\u306E\u7D76\u5BFE\u5024"
49151
+ ja: "正の数の絶対値"
49152
49152
  }
49153
49153
  },
49154
49154
  {
@@ -49156,7 +49156,7 @@ var absFunction = {
49156
49156
  output: 0,
49157
49157
  description: {
49158
49158
  en: "Absolute value of zero",
49159
- ja: "\u30BC\u30ED\u306E\u7D76\u5BFE\u5024"
49159
+ ja: "ゼロの絶対値"
49160
49160
  }
49161
49161
  }
49162
49162
  ],
@@ -49177,7 +49177,7 @@ var isEvenFunction = {
49177
49177
  category: "aggregate",
49178
49178
  description: {
49179
49179
  en: "Returns TRUE if the number is even.",
49180
- ja: "\u6570\u5024\u304C\u5076\u6570\u306A\u3089TRUE\u3092\u8FD4\u3057\u307E\u3059\u3002"
49180
+ ja: "数値が偶数ならTRUEを返します。"
49181
49181
  },
49182
49182
  examples: ["ISEVEN(2)", "ISEVEN(A1)"],
49183
49183
  samples: [
@@ -49186,7 +49186,7 @@ var isEvenFunction = {
49186
49186
  output: true,
49187
49187
  description: {
49188
49188
  en: "2 is even",
49189
- ja: "2 \u306F\u5076\u6570"
49189
+ ja: "2 は偶数"
49190
49190
  }
49191
49191
  },
49192
49192
  {
@@ -49194,7 +49194,7 @@ var isEvenFunction = {
49194
49194
  output: false,
49195
49195
  description: {
49196
49196
  en: "3 is odd",
49197
- ja: "3 \u306F\u5947\u6570"
49197
+ ja: "3 は奇数"
49198
49198
  }
49199
49199
  },
49200
49200
  {
@@ -49202,7 +49202,7 @@ var isEvenFunction = {
49202
49202
  output: true,
49203
49203
  description: {
49204
49204
  en: "Fractional numbers are truncated before parity check",
49205
- ja: "\u5C0F\u6570\u306F\u5207\u308A\u6368\u3066\u305F\u6574\u6570\u90E8\u3067\u5224\u5B9A"
49205
+ ja: "小数は切り捨てた整数部で判定"
49206
49206
  }
49207
49207
  }
49208
49208
  ],
@@ -49222,7 +49222,7 @@ var intFunction = {
49222
49222
  category: "aggregate",
49223
49223
  description: {
49224
49224
  en: "Rounds a number down to the nearest integer less than or equal to it.",
49225
- ja: "\u6570\u5024\u3092\u8D85\u3048\u306A\u3044\u6700\u5927\u306E\u6574\u6570\u306B\u5207\u308A\u4E0B\u3052\u307E\u3059\u3002"
49225
+ ja: "数値を超えない最大の整数に切り下げます。"
49226
49226
  },
49227
49227
  examples: ["INT(5.9)", "INT(A1)"],
49228
49228
  samples: [
@@ -49231,7 +49231,7 @@ var intFunction = {
49231
49231
  output: 5,
49232
49232
  description: {
49233
49233
  en: "Round down positive decimal to integer",
49234
- ja: "\u6B63\u306E\u5C0F\u6570\u3092\u6574\u6570\u306B\u5207\u308A\u4E0B\u3052"
49234
+ ja: "正の小数を整数に切り下げ"
49235
49235
  }
49236
49236
  },
49237
49237
  {
@@ -49239,7 +49239,7 @@ var intFunction = {
49239
49239
  output: -4,
49240
49240
  description: {
49241
49241
  en: "Round down negative number to lower integer",
49242
- ja: "\u8CA0\u306E\u6570\u3092\u4E0B\u306E\u6574\u6570\u306B\u5207\u308A\u4E0B\u3052"
49242
+ ja: "負の数を下の整数に切り下げ"
49243
49243
  }
49244
49244
  },
49245
49245
  {
@@ -49247,7 +49247,7 @@ var intFunction = {
49247
49247
  output: 8,
49248
49248
  description: {
49249
49249
  en: "Integer value remains unchanged",
49250
- ja: "\u6574\u6570\u5024\u306F\u305D\u306E\u307E\u307E"
49250
+ ja: "整数値はそのまま"
49251
49251
  }
49252
49252
  }
49253
49253
  ],
@@ -49268,7 +49268,7 @@ var modFunction = {
49268
49268
  category: "aggregate",
49269
49269
  description: {
49270
49270
  en: "Returns the remainder after division, aligned with the sign of the divisor.",
49271
- ja: "\u9664\u7B97\u306E\u4F59\u308A\u3092\u8FD4\u3057\u3001\u9664\u6570\u306E\u7B26\u53F7\u306B\u63C3\u3048\u307E\u3059\u3002"
49271
+ ja: "除算の余りを返し、除数の符号に揃えます。"
49272
49272
  },
49273
49273
  examples: ["MOD(10, 3)", "MOD(A1, B1)"],
49274
49274
  samples: [
@@ -49277,7 +49277,7 @@ var modFunction = {
49277
49277
  output: 1,
49278
49278
  description: {
49279
49279
  en: "Remainder of positive numbers",
49280
- ja: "\u6B63\u306E\u6570\u306E\u5270\u4F59"
49280
+ ja: "正の数の剰余"
49281
49281
  }
49282
49282
  },
49283
49283
  {
@@ -49285,7 +49285,7 @@ var modFunction = {
49285
49285
  output: 2,
49286
49286
  description: {
49287
49287
  en: "Remainder aligned with positive divisor",
49288
- ja: "\u6B63\u306E\u9664\u6570\u306B\u63C3\u3048\u305F\u5270\u4F59"
49288
+ ja: "正の除数に揃えた剰余"
49289
49289
  }
49290
49290
  },
49291
49291
  {
@@ -49293,7 +49293,7 @@ var modFunction = {
49293
49293
  output: -2,
49294
49294
  description: {
49295
49295
  en: "Remainder aligned with negative divisor",
49296
- ja: "\u8CA0\u306E\u9664\u6570\u306B\u63C3\u3048\u305F\u5270\u4F59"
49296
+ ja: "負の除数に揃えた剰余"
49297
49297
  }
49298
49298
  }
49299
49299
  ],
@@ -49332,7 +49332,7 @@ var quotientFunction = {
49332
49332
  category: "aggregate",
49333
49333
  description: {
49334
49334
  en: "Returns the integer portion of a division, truncating toward zero.",
49335
- ja: "\u9664\u7B97\u306E\u7D50\u679C\u3092\u30BC\u30ED\u65B9\u5411\u306B\u5207\u308A\u6368\u3066\u305F\u6574\u6570\u90E8\u5206\u3092\u8FD4\u3057\u307E\u3059\u3002"
49335
+ ja: "除算の結果をゼロ方向に切り捨てた整数部分を返します。"
49336
49336
  },
49337
49337
  examples: ["QUOTIENT(10, 3)", "QUOTIENT(A1, B1)"],
49338
49338
  samples: [
@@ -49341,7 +49341,7 @@ var quotientFunction = {
49341
49341
  output: 3,
49342
49342
  description: {
49343
49343
  en: "Integer quotient of positive numbers",
49344
- ja: "\u6B63\u306E\u6570\u306E\u6574\u6570\u5546"
49344
+ ja: "正の数の整数商"
49345
49345
  }
49346
49346
  },
49347
49347
  {
@@ -49349,7 +49349,7 @@ var quotientFunction = {
49349
49349
  output: 3,
49350
49350
  description: {
49351
49351
  en: "Division result truncated to integer",
49352
- ja: "\u9664\u7B97\u7D50\u679C\u3092\u6574\u6570\u306B\u5207\u308A\u6368\u3066"
49352
+ ja: "除算結果を整数に切り捨て"
49353
49353
  }
49354
49354
  },
49355
49355
  {
@@ -49357,7 +49357,7 @@ var quotientFunction = {
49357
49357
  output: -3,
49358
49358
  description: {
49359
49359
  en: "Negative division truncated toward zero",
49360
- ja: "\u8CA0\u306E\u9664\u7B97\u3092\u30BC\u30ED\u65B9\u5411\u3078\u5207\u308A\u6368\u3066"
49360
+ ja: "負の除算をゼロ方向へ切り捨て"
49361
49361
  }
49362
49362
  }
49363
49363
  ],
@@ -49385,7 +49385,7 @@ var signFunction = {
49385
49385
  category: "aggregate",
49386
49386
  description: {
49387
49387
  en: "Returns 1 for positive numbers, -1 for negative numbers, and 0 otherwise.",
49388
- ja: "\u6570\u5024\u304C\u6B63\u306A\u30891\u3001\u8CA0\u306A\u3089-1\u3001\u305D\u308C\u4EE5\u5916\u306F0\u3092\u8FD4\u3057\u307E\u3059\u3002"
49388
+ ja: "数値が正なら1、負なら-1、それ以外は0を返します。"
49389
49389
  },
49390
49390
  examples: ["SIGN(-3)", "SIGN(A1)"],
49391
49391
  samples: [
@@ -49394,7 +49394,7 @@ var signFunction = {
49394
49394
  output: 1,
49395
49395
  description: {
49396
49396
  en: "Sign of positive number",
49397
- ja: "\u6B63\u306E\u6570\u306E\u7B26\u53F7"
49397
+ ja: "正の数の符号"
49398
49398
  }
49399
49399
  },
49400
49400
  {
@@ -49402,7 +49402,7 @@ var signFunction = {
49402
49402
  output: -1,
49403
49403
  description: {
49404
49404
  en: "Sign of negative number",
49405
- ja: "\u8CA0\u306E\u6570\u306E\u7B26\u53F7"
49405
+ ja: "負の数の符号"
49406
49406
  }
49407
49407
  },
49408
49408
  {
@@ -49410,7 +49410,7 @@ var signFunction = {
49410
49410
  output: 0,
49411
49411
  description: {
49412
49412
  en: "Sign of zero",
49413
- ja: "\u30BC\u30ED\u306E\u7B26\u53F7"
49413
+ ja: "ゼロの符号"
49414
49414
  }
49415
49415
  }
49416
49416
  ],
@@ -49436,7 +49436,7 @@ var sumIfFunction = {
49436
49436
  category: "aggregate",
49437
49437
  description: {
49438
49438
  en: "Sums values that meet a single condition across a range.",
49439
- ja: "\u7BC4\u56F2\u5185\u3067\u6761\u4EF6\u3092\u6E80\u305F\u3059\u5024\u3092\u5408\u8A08\u3057\u307E\u3059\u3002"
49439
+ ja: "範囲内で条件を満たす値を合計します。"
49440
49440
  },
49441
49441
  examples: ['SUMIF(A1:A10, ">0")', 'SUMIF(A1:A10, "=East", B1:B10)'],
49442
49442
  samples: [
@@ -49445,7 +49445,7 @@ var sumIfFunction = {
49445
49445
  output: 12,
49446
49446
  description: {
49447
49447
  en: "Sum values greater than 2",
49448
- ja: "2\u3088\u308A\u5927\u304D\u3044\u5024\u306E\u5408\u8A08"
49448
+ ja: "2より大きい値の合計"
49449
49449
  }
49450
49450
  },
49451
49451
  {
@@ -49453,7 +49453,7 @@ var sumIfFunction = {
49453
49453
  output: 30,
49454
49454
  description: {
49455
49455
  en: "Sum non-negative values",
49456
- ja: "\u975E\u8CA0\u306E\u5024\u306E\u5408\u8A08"
49456
+ ja: "非負の値の合計"
49457
49457
  }
49458
49458
  },
49459
49459
  {
@@ -49461,7 +49461,7 @@ var sumIfFunction = {
49461
49461
  output: 10,
49462
49462
  description: {
49463
49463
  en: "Sum values equal to 10",
49464
- ja: "10\u306B\u7B49\u3057\u3044\u5024\u306E\u5408\u8A08"
49464
+ ja: "10に等しい値の合計"
49465
49465
  }
49466
49466
  }
49467
49467
  ],
@@ -49496,7 +49496,7 @@ var sumIfsFunction = {
49496
49496
  category: "aggregate",
49497
49497
  description: {
49498
49498
  en: "Sums values that satisfy multiple range/criteria pairs.",
49499
- ja: "\u8907\u6570\u306E\u7BC4\u56F2\u3068\u6761\u4EF6\u3092\u3059\u3079\u3066\u6E80\u305F\u3059\u5024\u3092\u5408\u8A08\u3057\u307E\u3059\u3002"
49499
+ ja: "複数の範囲と条件をすべて満たす値を合計します。"
49500
49500
  },
49501
49501
  examples: ['SUMIFS(C1:C10, A1:A10, "East", B1:B10, ">=2024")', "SUMIFS(A1:A5, B1:B5, 1)"],
49502
49502
  samples: [
@@ -49505,7 +49505,7 @@ var sumIfsFunction = {
49505
49505
  output: 500,
49506
49506
  description: {
49507
49507
  en: "Sum with multiple criteria",
49508
- ja: "\u8907\u6570\u306E\u6761\u4EF6\u3067\u306E\u5408\u8A08"
49508
+ ja: "複数の条件での合計"
49509
49509
  }
49510
49510
  },
49511
49511
  {
@@ -49513,7 +49513,7 @@ var sumIfsFunction = {
49513
49513
  output: 130,
49514
49514
  description: {
49515
49515
  en: "Sum with single criterion",
49516
- ja: "\u5358\u4E00\u6761\u4EF6\u3067\u306E\u5408\u8A08"
49516
+ ja: "単一条件での合計"
49517
49517
  }
49518
49518
  },
49519
49519
  {
@@ -49521,7 +49521,7 @@ var sumIfsFunction = {
49521
49521
  output: 30,
49522
49522
  description: {
49523
49523
  en: "Sum matching both conditions",
49524
- ja: "\u4E21\u65B9\u306E\u6761\u4EF6\u306B\u4E00\u81F4\u3059\u308B\u5408\u8A08"
49524
+ ja: "両方の条件に一致する合計"
49525
49525
  }
49526
49526
  }
49527
49527
  ],
@@ -49666,7 +49666,7 @@ var subtotalFunction = {
49666
49666
  category: "aggregate",
49667
49667
  description: {
49668
49668
  en: "Calculates a subtotal using a selected aggregation and one or more ranges.",
49669
- ja: "\u6307\u5B9A\u3057\u305F\u96C6\u8A08\u65B9\u6CD5\u30671\u3064\u4EE5\u4E0A\u306E\u7BC4\u56F2\u3092\u96C6\u8A08\u3057\u305F\u5C0F\u8A08\u3092\u8FD4\u3057\u307E\u3059\u3002"
49669
+ ja: "指定した集計方法で1つ以上の範囲を集計した小計を返します。"
49670
49670
  },
49671
49671
  examples: ["SUBTOTAL(9, A1:A10)", "SUBTOTAL(1, A1:A5, B1:B5)"],
49672
49672
  samples: [
@@ -49675,7 +49675,7 @@ var subtotalFunction = {
49675
49675
  output: 60,
49676
49676
  description: {
49677
49677
  en: "Sum (function 9) of values",
49678
- ja: "\u5024\u306E\u5408\u8A08\uFF08\u95A2\u65709\uFF09"
49678
+ ja: "値の合計(関数9)"
49679
49679
  }
49680
49680
  },
49681
49681
  {
@@ -49683,7 +49683,7 @@ var subtotalFunction = {
49683
49683
  output: 10,
49684
49684
  description: {
49685
49685
  en: "Average (function 1) of values",
49686
- ja: "\u5024\u306E\u5E73\u5747\uFF08\u95A2\u65701\uFF09"
49686
+ ja: "値の平均(関数1)"
49687
49687
  }
49688
49688
  },
49689
49689
  {
@@ -49691,7 +49691,7 @@ var subtotalFunction = {
49691
49691
  output: 8,
49692
49692
  description: {
49693
49693
  en: "Maximum (function 4) of values",
49694
- ja: "\u5024\u306E\u6700\u5927\uFF08\u95A2\u65704\uFF09"
49694
+ ja: "値の最大(関数4)"
49695
49695
  }
49696
49696
  }
49697
49697
  ],
@@ -49722,7 +49722,7 @@ var aggregateFunction = {
49722
49722
  category: "aggregate",
49723
49723
  description: {
49724
49724
  en: "Performs a selected aggregation with options for skipping hidden or error cells.",
49725
- ja: "\u975E\u8868\u793A\u30BB\u30EB\u3084\u30A8\u30E9\u30FC\u3092\u9664\u5916\u3059\u308B\u30AA\u30D7\u30B7\u30E7\u30F3\u4ED8\u304D\u3067\u96C6\u8A08\u3092\u5B9F\u884C\u3057\u307E\u3059\u3002"
49725
+ ja: "非表示セルやエラーを除外するオプション付きで集計を実行します。"
49726
49726
  },
49727
49727
  examples: ["AGGREGATE(9, 0, A1:A10)", "AGGREGATE(1, 6, A1:A5, B1:B5)"],
49728
49728
  samples: [
@@ -49731,7 +49731,7 @@ var aggregateFunction = {
49731
49731
  output: 30,
49732
49732
  description: {
49733
49733
  en: "Sum (function 9) with default options",
49734
- ja: "\u30C7\u30D5\u30A9\u30EB\u30C8\u30AA\u30D7\u30B7\u30E7\u30F3\u3067\u5408\u8A08\uFF08\u95A2\u65709\uFF09"
49734
+ ja: "デフォルトオプションで合計(関数9)"
49735
49735
  }
49736
49736
  },
49737
49737
  {
@@ -49739,7 +49739,7 @@ var aggregateFunction = {
49739
49739
  output: 5,
49740
49740
  description: {
49741
49741
  en: "Average (function 1) ignoring errors",
49742
- ja: "\u30A8\u30E9\u30FC\u3092\u7121\u8996\u3057\u3066\u5E73\u5747\uFF08\u95A2\u65701\uFF09"
49742
+ ja: "エラーを無視して平均(関数1)"
49743
49743
  }
49744
49744
  },
49745
49745
  {
@@ -49747,7 +49747,7 @@ var aggregateFunction = {
49747
49747
  output: 67,
49748
49748
  description: {
49749
49749
  en: "Maximum (function 4) of values",
49750
- ja: "\u5024\u306E\u6700\u5927\uFF08\u95A2\u65704\uFF09"
49750
+ ja: "値の最大(関数4)"
49751
49751
  }
49752
49752
  }
49753
49753
  ],
@@ -49833,7 +49833,7 @@ var dateFunction = {
49833
49833
  category: "datetime",
49834
49834
  description: {
49835
49835
  en: "Returns the serial number for a specific date, normalising overflowed months and days.",
49836
- ja: "\u6708\u3084\u65E5\u304C\u30AA\u30FC\u30D0\u30FC\u30D5\u30ED\u30FC\u3057\u3066\u3044\u3066\u3082\u6B63\u898F\u5316\u3057\u305F\u65E5\u4ED8\u306E\u30B7\u30EA\u30A2\u30EB\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
49836
+ ja: "月や日がオーバーフローしていても正規化した日付のシリアル値を返します。"
49837
49837
  },
49838
49838
  examples: ["DATE(2024, 1, 31)", "DATE(A1, B1, C1)"],
49839
49839
  samples: [
@@ -49842,7 +49842,7 @@ var dateFunction = {
49842
49842
  output: 45307,
49843
49843
  description: {
49844
49844
  en: "Serial number for January 15, 2024",
49845
- ja: "2024\u5E741\u670815\u65E5\u306E\u30B7\u30EA\u30A2\u30EB\u5024"
49845
+ ja: "2024年1月15日のシリアル値"
49846
49846
  }
49847
49847
  },
49848
49848
  {
@@ -49850,7 +49850,7 @@ var dateFunction = {
49850
49850
  output: 45658,
49851
49851
  description: {
49852
49852
  en: "Overflowed month normalizes to January 1, 2025",
49853
- ja: "\u30AA\u30FC\u30D0\u30FC\u30D5\u30ED\u30FC\u3057\u305F\u6708\u304C2025\u5E741\u67081\u65E5\u306B\u6B63\u898F\u5316"
49853
+ ja: "オーバーフローした月が2025年1月1日に正規化"
49854
49854
  }
49855
49855
  },
49856
49856
  {
@@ -49858,7 +49858,7 @@ var dateFunction = {
49858
49858
  output: 45351,
49859
49859
  description: {
49860
49860
  en: "Overflowed day normalizes to March 1, 2024",
49861
- ja: "\u30AA\u30FC\u30D0\u30FC\u30D5\u30ED\u30FC\u3057\u305F\u65E5\u304C2024\u5E743\u67081\u65E5\u306B\u6B63\u898F\u5316"
49861
+ ja: "オーバーフローした日が2024年3月1日に正規化"
49862
49862
  }
49863
49863
  }
49864
49864
  ],
@@ -49882,7 +49882,7 @@ var timeFunction = {
49882
49882
  category: "datetime",
49883
49883
  description: {
49884
49884
  en: "Converts hour, minute, and second arguments into a fractional-day time serial.",
49885
- ja: "\u6642\u30FB\u5206\u30FB\u79D2\u30921\u65E5\u3092\u57FA\u6E96\u3068\u3057\u305F\u6642\u9593\u30B7\u30EA\u30A2\u30EB\u5024\u306B\u5909\u63DB\u3057\u307E\u3059\u3002"
49885
+ ja: "時・分・秒を1日を基準とした時間シリアル値に変換します。"
49886
49886
  },
49887
49887
  examples: ["TIME(14, 30, 0)", "TIME(A1, B1, C1)"],
49888
49888
  samples: [
@@ -49891,7 +49891,7 @@ var timeFunction = {
49891
49891
  output: 0.5,
49892
49892
  description: {
49893
49893
  en: "Noon as fractional day (0.5)",
49894
- ja: "\u6B63\u5348\u3092\u65E5\u306E\u5C0F\u6570\u5024(0.5)\u3068\u3057\u3066\u8868\u73FE"
49894
+ ja: "正午を日の小数値(0.5)として表現"
49895
49895
  }
49896
49896
  },
49897
49897
  {
@@ -49899,7 +49899,7 @@ var timeFunction = {
49899
49899
  output: 0.6041666666666666,
49900
49900
  description: {
49901
49901
  en: "2:30 PM as fractional day",
49902
- ja: "\u5348\u5F8C2\u664230\u5206\u3092\u65E5\u306E\u5C0F\u6570\u5024\u3068\u3057\u3066\u8868\u73FE"
49902
+ ja: "午後2時30分を日の小数値として表現"
49903
49903
  }
49904
49904
  },
49905
49905
  {
@@ -49907,7 +49907,7 @@ var timeFunction = {
49907
49907
  output: 0.26041666666666663,
49908
49908
  description: {
49909
49909
  en: "6:15:30 AM as fractional day",
49910
- ja: "\u5348\u524D6\u664215\u520630\u79D2\u3092\u65E5\u306E\u5C0F\u6570\u5024\u3068\u3057\u3066\u8868\u73FE"
49910
+ ja: "午前6時15分30秒を日の小数値として表現"
49911
49911
  }
49912
49912
  }
49913
49913
  ],
@@ -49971,7 +49971,7 @@ var dateValueFunction = {
49971
49971
  category: "datetime",
49972
49972
  description: {
49973
49973
  en: "Converts a date string or serial into a serial number representing the date.",
49974
- ja: "\u65E5\u4ED8\u6587\u5B57\u5217\u307E\u305F\u306F\u30B7\u30EA\u30A2\u30EB\u5024\u3092\u65E5\u4ED8\u30B7\u30EA\u30A2\u30EB\u306B\u5909\u63DB\u3057\u307E\u3059\u3002"
49974
+ ja: "日付文字列またはシリアル値を日付シリアルに変換します。"
49975
49975
  },
49976
49976
  examples: ['DATEVALUE("2024-05-10")', "DATEVALUE(A1)"],
49977
49977
  samples: [
@@ -49980,7 +49980,7 @@ var dateValueFunction = {
49980
49980
  output: 45421,
49981
49981
  description: {
49982
49982
  en: "Convert date string to serial number",
49983
- ja: "\u65E5\u4ED8\u6587\u5B57\u5217\u3092\u30B7\u30EA\u30A2\u30EB\u5024\u306B\u5909\u63DB"
49983
+ ja: "日付文字列をシリアル値に変換"
49984
49984
  }
49985
49985
  },
49986
49986
  {
@@ -49988,7 +49988,7 @@ var dateValueFunction = {
49988
49988
  output: 45657,
49989
49989
  description: {
49990
49990
  en: "Convert year-end date to serial",
49991
- ja: "\u5E74\u672B\u65E5\u4ED8\u3092\u30B7\u30EA\u30A2\u30EB\u5024\u306B\u5909\u63DB"
49991
+ ja: "年末日付をシリアル値に変換"
49992
49992
  }
49993
49993
  },
49994
49994
  {
@@ -49996,7 +49996,7 @@ var dateValueFunction = {
49996
49996
  output: 45307,
49997
49997
  description: {
49998
49998
  en: "Extract integer date part from serial",
49999
- ja: "\u30B7\u30EA\u30A2\u30EB\u5024\u304B\u3089\u6574\u6570\u306E\u65E5\u4ED8\u90E8\u5206\u3092\u62BD\u51FA"
49999
+ ja: "シリアル値から整数の日付部分を抽出"
50000
50000
  }
50001
50001
  }
50002
50002
  ],
@@ -50021,7 +50021,7 @@ var timeValueFunction = {
50021
50021
  category: "datetime",
50022
50022
  description: {
50023
50023
  en: "Converts a time string or serial into the fractional-day time component.",
50024
- ja: "\u6642\u9593\u6587\u5B57\u5217\u307E\u305F\u306F\u30B7\u30EA\u30A2\u30EB\u5024\u3092\u65E5\u5185\u6642\u9593\u306E\u5C0F\u6570\u90E8\u306B\u5909\u63DB\u3057\u307E\u3059\u3002"
50024
+ ja: "時間文字列またはシリアル値を日内時間の小数部に変換します。"
50025
50025
  },
50026
50026
  examples: ['TIMEVALUE("12:30:00")', "TIMEVALUE(A1)"],
50027
50027
  samples: [
@@ -50030,7 +50030,7 @@ var timeValueFunction = {
50030
50030
  output: 0.5208333333333334,
50031
50031
  description: {
50032
50032
  en: "Convert time string to fractional day",
50033
- ja: "\u6642\u9593\u6587\u5B57\u5217\u3092\u65E5\u306E\u5C0F\u6570\u5024\u306B\u5909\u63DB"
50033
+ ja: "時間文字列を日の小数値に変換"
50034
50034
  }
50035
50035
  },
50036
50036
  {
@@ -50038,7 +50038,7 @@ var timeValueFunction = {
50038
50038
  output: 0.78125,
50039
50039
  description: {
50040
50040
  en: "Convert evening time to fractional day",
50041
- ja: "\u5915\u65B9\u306E\u6642\u523B\u3092\u65E5\u306E\u5C0F\u6570\u5024\u306B\u5909\u63DB"
50041
+ ja: "夕方の時刻を日の小数値に変換"
50042
50042
  }
50043
50043
  },
50044
50044
  {
@@ -50046,7 +50046,7 @@ var timeValueFunction = {
50046
50046
  output: 0.75,
50047
50047
  description: {
50048
50048
  en: "Extract fractional time from serial",
50049
- ja: "\u30B7\u30EA\u30A2\u30EB\u5024\u304B\u3089\u6642\u9593\u306E\u5C0F\u6570\u90E8\u3092\u62BD\u51FA"
50049
+ ja: "シリアル値から時間の小数部を抽出"
50050
50050
  }
50051
50051
  }
50052
50052
  ],
@@ -50072,7 +50072,7 @@ var todayFunction = {
50072
50072
  category: "datetime",
50073
50073
  description: {
50074
50074
  en: "Returns the current date as a serial number without a time component.",
50075
- ja: "\u73FE\u5728\u306E\u65E5\u4ED8\u3092\u6642\u9593\u6210\u5206\u306A\u3057\u306E\u30B7\u30EA\u30A2\u30EB\u5024\u3067\u8FD4\u3057\u307E\u3059\u3002"
50075
+ ja: "現在の日付を時間成分なしのシリアル値で返します。"
50076
50076
  },
50077
50077
  examples: ["TODAY()"],
50078
50078
  samples: [
@@ -50081,7 +50081,7 @@ var todayFunction = {
50081
50081
  output: 45307,
50082
50082
  description: {
50083
50083
  en: "Returns current date serial (example shows January 15, 2024)",
50084
- ja: "\u73FE\u5728\u306E\u65E5\u4ED8\u306E\u30B7\u30EA\u30A2\u30EB\u5024\u3092\u8FD4\u3059\uFF08\u4F8B\u306F2024\u5E741\u670815\u65E5\uFF09"
50084
+ ja: "現在の日付のシリアル値を返す(例は2024年1月15日)"
50085
50085
  }
50086
50086
  }
50087
50087
  ],
@@ -50100,7 +50100,7 @@ var nowFunction = {
50100
50100
  category: "datetime",
50101
50101
  description: {
50102
50102
  en: "Returns the current date and time as a serial number.",
50103
- ja: "\u73FE\u5728\u306E\u65E5\u4ED8\u3068\u6642\u523B\u3092\u30B7\u30EA\u30A2\u30EB\u5024\u3067\u8FD4\u3057\u307E\u3059\u3002"
50103
+ ja: "現在の日付と時刻をシリアル値で返します。"
50104
50104
  },
50105
50105
  examples: ["NOW()"],
50106
50106
  samples: [
@@ -50109,7 +50109,7 @@ var nowFunction = {
50109
50109
  output: 45307.604166666664,
50110
50110
  description: {
50111
50111
  en: "Returns current date and time serial (example shows January 15, 2024 at 2:30 PM)",
50112
- ja: "\u73FE\u5728\u306E\u65E5\u4ED8\u3068\u6642\u523B\u306E\u30B7\u30EA\u30A2\u30EB\u5024\u3092\u8FD4\u3059\uFF08\u4F8B\u306F2024\u5E741\u670815\u65E5\u5348\u5F8C2\u664230\u5206\uFF09"
50112
+ ja: "現在の日付と時刻のシリアル値を返す(例は2024年1月15日午後2時30分)"
50113
50113
  }
50114
50114
  }
50115
50115
  ],
@@ -50142,7 +50142,7 @@ var eDateFunction = {
50142
50142
  category: "datetime",
50143
50143
  description: {
50144
50144
  en: "Returns the serial number of the date that is the indicated number of months before or after a start date.",
50145
- ja: "\u958B\u59CB\u65E5\u304B\u3089\u6307\u5B9A\u3057\u305F\u6708\u6570\u3060\u3051\u524D\u5F8C\u3057\u305F\u65E5\u4ED8\u306E\u30B7\u30EA\u30A2\u30EB\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
50145
+ ja: "開始日から指定した月数だけ前後した日付のシリアル値を返します。"
50146
50146
  },
50147
50147
  examples: ['EDATE("2024-01-31", 1)', "EDATE(A1, -6)"],
50148
50148
  samples: [
@@ -50151,7 +50151,7 @@ var eDateFunction = {
50151
50151
  output: 45351,
50152
50152
  description: {
50153
50153
  en: "One month after January 31, 2024 (February 29, 2024)",
50154
- ja: "2024\u5E741\u670831\u65E5\u306E1\u30F6\u6708\u5F8C\uFF082024\u5E742\u670829\u65E5\uFF09"
50154
+ ja: "2024年1月31日の1ヶ月後(2024年2月29日)"
50155
50155
  }
50156
50156
  },
50157
50157
  {
@@ -50159,7 +50159,7 @@ var eDateFunction = {
50159
50159
  output: 45557,
50160
50160
  description: {
50161
50161
  en: "Three months after June 15, 2024 (September 15, 2024)",
50162
- ja: "2024\u5E746\u670815\u65E5\u306E3\u30F6\u6708\u5F8C\uFF082024\u5E749\u670815\u65E5\uFF09"
50162
+ ja: "2024年6月15日の3ヶ月後(2024年9月15日)"
50163
50163
  }
50164
50164
  },
50165
50165
  {
@@ -50167,7 +50167,7 @@ var eDateFunction = {
50167
50167
  output: 45351,
50168
50168
  description: {
50169
50169
  en: "One month before March 31, 2024 (February 29, 2024)",
50170
- ja: "2024\u5E743\u670831\u65E5\u306E1\u30F6\u6708\u524D\uFF082024\u5E742\u670829\u65E5\uFF09"
50170
+ ja: "2024年3月31日の1ヶ月前(2024年2月29日)"
50171
50171
  }
50172
50172
  }
50173
50173
  ],
@@ -50194,7 +50194,7 @@ var eoMonthFunction = {
50194
50194
  category: "datetime",
50195
50195
  description: {
50196
50196
  en: "Returns the serial number of the last day of the month a given number of months away.",
50197
- ja: "\u6307\u5B9A\u3057\u305F\u6708\u6570\u3060\u3051\u524D\u5F8C\u3057\u305F\u6708\u306E\u6708\u672B\u65E5\u30B7\u30EA\u30A2\u30EB\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
50197
+ ja: "指定した月数だけ前後した月の月末日シリアル値を返します。"
50198
50198
  },
50199
50199
  examples: ['EOMONTH("2024-01-15", 1)', "EOMONTH(A1, 0)"],
50200
50200
  samples: [
@@ -50203,7 +50203,7 @@ var eoMonthFunction = {
50203
50203
  output: 45322,
50204
50204
  description: {
50205
50205
  en: "Last day of current month (January 31, 2024)",
50206
- ja: "\u5F53\u6708\u306E\u6708\u672B\uFF082024\u5E741\u670831\u65E5\uFF09"
50206
+ ja: "当月の月末(2024年1月31日)"
50207
50207
  }
50208
50208
  },
50209
50209
  {
@@ -50211,7 +50211,7 @@ var eoMonthFunction = {
50211
50211
  output: 45351,
50212
50212
  description: {
50213
50213
  en: "Last day one month later (February 29, 2024)",
50214
- ja: "1\u30F6\u6708\u5F8C\u306E\u6708\u672B\uFF082024\u5E742\u670829\u65E5\uFF09"
50214
+ ja: "1ヶ月後の月末(2024年2月29日)"
50215
50215
  }
50216
50216
  },
50217
50217
  {
@@ -50219,7 +50219,7 @@ var eoMonthFunction = {
50219
50219
  output: 45351,
50220
50220
  description: {
50221
50221
  en: "Last day one month earlier (February 29, 2024)",
50222
- ja: "1\u30F6\u6708\u524D\u306E\u6708\u672B\uFF082024\u5E742\u670829\u65E5\uFF09"
50222
+ ja: "1ヶ月前の月末(2024年2月29日)"
50223
50223
  }
50224
50224
  }
50225
50225
  ],
@@ -50242,7 +50242,7 @@ var dayFunction = {
50242
50242
  category: "datetime",
50243
50243
  description: {
50244
50244
  en: "Returns the day of the month from a serial date.",
50245
- ja: "\u30B7\u30EA\u30A2\u30EB\u65E5\u4ED8\u304B\u3089\u6708\u5185\u306E\u65E5\u3092\u8FD4\u3057\u307E\u3059\u3002"
50245
+ ja: "シリアル日付から月内の日を返します。"
50246
50246
  },
50247
50247
  examples: ['DAY("2024-05-10")', "DAY(A1)"],
50248
50248
  samples: [
@@ -50251,7 +50251,7 @@ var dayFunction = {
50251
50251
  output: 10,
50252
50252
  description: {
50253
50253
  en: "Extract day from date (10)",
50254
- ja: "\u65E5\u4ED8\u304B\u3089\u65E5\u3092\u62BD\u51FA\uFF0810\u65E5\uFF09"
50254
+ ja: "日付から日を抽出(10日)"
50255
50255
  }
50256
50256
  },
50257
50257
  {
@@ -50259,7 +50259,7 @@ var dayFunction = {
50259
50259
  output: 31,
50260
50260
  description: {
50261
50261
  en: "Day from serial (January 31, 2024)",
50262
- ja: "\u30B7\u30EA\u30A2\u30EB\u5024\u304B\u3089\u65E5\u3092\u62BD\u51FA\uFF082024\u5E741\u670831\u65E5\uFF09"
50262
+ ja: "シリアル値から日を抽出(2024年1月31日)"
50263
50263
  }
50264
50264
  },
50265
50265
  {
@@ -50267,7 +50267,7 @@ var dayFunction = {
50267
50267
  output: 25,
50268
50268
  description: {
50269
50269
  en: "Extract day from Christmas date (25)",
50270
- ja: "\u30AF\u30EA\u30B9\u30DE\u30B9\u306E\u65E5\u4ED8\u304B\u3089\u65E5\u3092\u62BD\u51FA\uFF0825\u65E5\uFF09"
50270
+ ja: "クリスマスの日付から日を抽出(25日)"
50271
50271
  }
50272
50272
  }
50273
50273
  ],
@@ -50285,8 +50285,8 @@ var monthFunction = {
50285
50285
  name: "MONTH",
50286
50286
  category: "datetime",
50287
50287
  description: {
50288
- en: "Returns the month number from a serial date (1\u201312).",
50289
- ja: "\u30B7\u30EA\u30A2\u30EB\u65E5\u4ED8\u304B\u3089\u6708\u756A\u53F7(1\u301C12)\u3092\u8FD4\u3057\u307E\u3059\u3002"
50288
+ en: "Returns the month number from a serial date (1–12).",
50289
+ ja: "シリアル日付から月番号(1〜12)を返します。"
50290
50290
  },
50291
50291
  examples: ['MONTH("2024-05-10")', "MONTH(A1)"],
50292
50292
  samples: [
@@ -50295,7 +50295,7 @@ var monthFunction = {
50295
50295
  output: 5,
50296
50296
  description: {
50297
50297
  en: "Extract month from date (May = 5)",
50298
- ja: "\u65E5\u4ED8\u304B\u3089\u6708\u3092\u62BD\u51FA\uFF085\u6708 = 5\uFF09"
50298
+ ja: "日付から月を抽出(5月 = 5"
50299
50299
  }
50300
50300
  },
50301
50301
  {
@@ -50303,7 +50303,7 @@ var monthFunction = {
50303
50303
  output: 1,
50304
50304
  description: {
50305
50305
  en: "Month from serial (January = 1)",
50306
- ja: "\u30B7\u30EA\u30A2\u30EB\u5024\u304B\u3089\u6708\u3092\u62BD\u51FA\uFF081\u6708 = 1\uFF09"
50306
+ ja: "シリアル値から月を抽出(1月 = 1"
50307
50307
  }
50308
50308
  },
50309
50309
  {
@@ -50311,7 +50311,7 @@ var monthFunction = {
50311
50311
  output: 12,
50312
50312
  description: {
50313
50313
  en: "Extract month from Christmas date (December = 12)",
50314
- ja: "\u30AF\u30EA\u30B9\u30DE\u30B9\u306E\u65E5\u4ED8\u304B\u3089\u6708\u3092\u62BD\u51FA\uFF0812\u6708 = 12\uFF09"
50314
+ ja: "クリスマスの日付から月を抽出(12月 = 12"
50315
50315
  }
50316
50316
  }
50317
50317
  ],
@@ -50330,7 +50330,7 @@ var yearFunction = {
50330
50330
  category: "datetime",
50331
50331
  description: {
50332
50332
  en: "Returns the year component from a serial date.",
50333
- ja: "\u30B7\u30EA\u30A2\u30EB\u65E5\u4ED8\u304B\u3089\u5E74\u3092\u8FD4\u3057\u307E\u3059\u3002"
50333
+ ja: "シリアル日付から年を返します。"
50334
50334
  },
50335
50335
  examples: ['YEAR("2024-05-10")', "YEAR(A1)"],
50336
50336
  samples: [
@@ -50339,7 +50339,7 @@ var yearFunction = {
50339
50339
  output: 2024,
50340
50340
  description: {
50341
50341
  en: "Extract year from date (2024)",
50342
- ja: "\u65E5\u4ED8\u304B\u3089\u5E74\u3092\u62BD\u51FA\uFF082024\u5E74\uFF09"
50342
+ ja: "日付から年を抽出(2024年)"
50343
50343
  }
50344
50344
  },
50345
50345
  {
@@ -50347,7 +50347,7 @@ var yearFunction = {
50347
50347
  output: 2024,
50348
50348
  description: {
50349
50349
  en: "Year from serial (2024)",
50350
- ja: "\u30B7\u30EA\u30A2\u30EB\u5024\u304B\u3089\u5E74\u3092\u62BD\u51FA\uFF082024\u5E74\uFF09"
50350
+ ja: "シリアル値から年を抽出(2024年)"
50351
50351
  }
50352
50352
  },
50353
50353
  {
@@ -50355,7 +50355,7 @@ var yearFunction = {
50355
50355
  output: 2025,
50356
50356
  description: {
50357
50357
  en: "Extract year from future date (2025)",
50358
- ja: "\u672A\u6765\u306E\u65E5\u4ED8\u304B\u3089\u5E74\u3092\u62BD\u51FA\uFF082025\u5E74\uFF09"
50358
+ ja: "未来の日付から年を抽出(2025年)"
50359
50359
  }
50360
50360
  }
50361
50361
  ],
@@ -50386,7 +50386,7 @@ var weekDayFunction = {
50386
50386
  category: "datetime",
50387
50387
  description: {
50388
50388
  en: "Returns the day of the week for a date, with configurable numbering schemes.",
50389
- ja: "\u65E5\u4ED8\u306E\u66DC\u65E5\u3092\u53D6\u5F97\u3057\u3001\u756A\u53F7\u4ED8\u3051\u65B9\u5F0F\u3092\u6307\u5B9A\u3067\u304D\u307E\u3059\u3002"
50389
+ ja: "日付の曜日を取得し、番号付け方式を指定できます。"
50390
50390
  },
50391
50391
  examples: ['WEEKDAY("2024-01-07")', "WEEKDAY(A1, 2)"],
50392
50392
  samples: [
@@ -50395,7 +50395,7 @@ var weekDayFunction = {
50395
50395
  output: 1,
50396
50396
  description: {
50397
50397
  en: "Sunday returns 1 (default numbering)",
50398
- ja: "\u65E5\u66DC\u65E5\u306F1\u3092\u8FD4\u3059\uFF08\u30C7\u30D5\u30A9\u30EB\u30C8\u306E\u756A\u53F7\u4ED8\u3051\uFF09"
50398
+ ja: "日曜日は1を返す(デフォルトの番号付け)"
50399
50399
  }
50400
50400
  },
50401
50401
  {
@@ -50403,7 +50403,7 @@ var weekDayFunction = {
50403
50403
  output: 1,
50404
50404
  description: {
50405
50405
  en: "Monday returns 1 (Monday-based numbering)",
50406
- ja: "\u6708\u66DC\u65E5\u306F1\u3092\u8FD4\u3059\uFF08\u6708\u66DC\u59CB\u307E\u308A\u306E\u756A\u53F7\u4ED8\u3051\uFF09"
50406
+ ja: "月曜日は1を返す(月曜始まりの番号付け)"
50407
50407
  }
50408
50408
  },
50409
50409
  {
@@ -50411,7 +50411,7 @@ var weekDayFunction = {
50411
50411
  output: 0,
50412
50412
  description: {
50413
50413
  en: "Monday returns 0 (0-indexed from Monday)",
50414
- ja: "\u6708\u66DC\u65E5\u306F0\u3092\u8FD4\u3059\uFF08\u6708\u66DC\u304B\u30890\u59CB\u307E\u308A\u306E\u756A\u53F7\u4ED8\u3051\uFF09"
50414
+ ja: "月曜日は0を返す(月曜から0始まりの番号付け)"
50415
50415
  }
50416
50416
  }
50417
50417
  ],
@@ -50459,7 +50459,7 @@ var weekNumFunction = {
50459
50459
  category: "datetime",
50460
50460
  description: {
50461
50461
  en: "Returns the week number of a date using Sunday or Monday as the first day of the week.",
50462
- ja: "\u9031\u306E\u958B\u59CB\u66DC\u65E5(\u65E5\u66DC\u307E\u305F\u306F\u6708\u66DC)\u3092\u6307\u5B9A\u3057\u3066\u65E5\u4ED8\u306E\u9031\u756A\u53F7\u3092\u8FD4\u3057\u307E\u3059\u3002"
50462
+ ja: "週の開始曜日(日曜または月曜)を指定して日付の週番号を返します。"
50463
50463
  },
50464
50464
  examples: ['WEEKNUM("2024-01-06")', "WEEKNUM(A1, 2)"],
50465
50465
  samples: [
@@ -50468,7 +50468,7 @@ var weekNumFunction = {
50468
50468
  output: 1,
50469
50469
  description: {
50470
50470
  en: "Week number with Sunday as first day",
50471
- ja: "\u65E5\u66DC\u59CB\u307E\u308A\u3067\u306E\u9031\u756A\u53F7"
50471
+ ja: "日曜始まりでの週番号"
50472
50472
  }
50473
50473
  },
50474
50474
  {
@@ -50476,7 +50476,7 @@ var weekNumFunction = {
50476
50476
  output: 3,
50477
50477
  description: {
50478
50478
  en: "Week number with Monday as first day",
50479
- ja: "\u6708\u66DC\u59CB\u307E\u308A\u3067\u306E\u9031\u756A\u53F7"
50479
+ ja: "月曜始まりでの週番号"
50480
50480
  }
50481
50481
  },
50482
50482
  {
@@ -50484,7 +50484,7 @@ var weekNumFunction = {
50484
50484
  output: 53,
50485
50485
  description: {
50486
50486
  en: "Last week of the year (Sunday-based)",
50487
- ja: "\u5E74\u306E\u6700\u7D42\u9031\uFF08\u65E5\u66DC\u59CB\u307E\u308A\uFF09"
50487
+ ja: "年の最終週(日曜始まり)"
50488
50488
  }
50489
50489
  }
50490
50490
  ],
@@ -50554,7 +50554,7 @@ var workdayFunction = {
50554
50554
  category: "datetime",
50555
50555
  description: {
50556
50556
  en: "Returns a date serial offset by the specified number of workdays.",
50557
- ja: "\u6307\u5B9A\u3057\u305F\u55B6\u696D\u65E5\u6570\u3060\u3051\u524D\u5F8C\u3057\u305F\u65E5\u4ED8\u30B7\u30EA\u30A2\u30EB\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
50557
+ ja: "指定した営業日数だけ前後した日付シリアル値を返します。"
50558
50558
  },
50559
50559
  examples: ["WORKDAY(A1,5)", "WORKDAY(A1,-5)", "WORKDAY(A1,5,holidays)"],
50560
50560
  evaluate: (args, helpers) => {
@@ -50578,7 +50578,7 @@ var pmtFunction = {
50578
50578
  category: "financial",
50579
50579
  description: {
50580
50580
  en: "Returns the periodic payment amount for a loan or investment.",
50581
- ja: "\u30ED\u30FC\u30F3\u3084\u6295\u8CC7\u306E\u5404\u671F\u652F\u6255\u984D\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
50581
+ ja: "ローンや投資の各期支払額を計算します。"
50582
50582
  },
50583
50583
  examples: ["PMT(0.05/12, 60, 10000)", "PMT(rate, nper, pv, fv, type)"],
50584
50584
  samples: [
@@ -50587,7 +50587,7 @@ var pmtFunction = {
50587
50587
  output: -188.71233644010877,
50588
50588
  description: {
50589
50589
  en: "Monthly payment for $10,000 loan at 5% annual rate over 5 years",
50590
- ja: "\u5E74\u52295%\u30675\u5E74\u9593\u306E10,000\u30C9\u30EB\u306E\u30ED\u30FC\u30F3\u306E\u6708\u6B21\u652F\u6255\u984D"
50590
+ ja: "年利5%で5年間の10,000ドルのローンの月次支払額"
50591
50591
  }
50592
50592
  },
50593
50593
  {
@@ -50595,7 +50595,7 @@ var pmtFunction = {
50595
50595
  output: -606.6379717767879,
50596
50596
  description: {
50597
50597
  en: "Monthly payment for $50,000 loan at 8% annual rate over 10 years",
50598
- ja: "\u5E74\u52298%\u306710\u5E74\u9593\u306E50,000\u30C9\u30EB\u306E\u30ED\u30FC\u30F3\u306E\u6708\u6B21\u652F\u6255\u984D"
50598
+ ja: "年利8%で10年間の50,000ドルのローンの月次支払額"
50599
50599
  }
50600
50600
  },
50601
50601
  {
@@ -50603,7 +50603,7 @@ var pmtFunction = {
50603
50603
  output: -640.0103245058702,
50604
50604
  description: {
50605
50605
  en: "Monthly payment with payment at beginning of period",
50606
- ja: "\u671F\u521D\u6255\u3044\u306E\u6708\u6B21\u652F\u6255\u984D"
50606
+ ja: "期初払いの月次支払額"
50607
50607
  }
50608
50608
  }
50609
50609
  ],
@@ -50629,7 +50629,7 @@ var ipmtFunction = {
50629
50629
  category: "financial",
50630
50630
  description: {
50631
50631
  en: "Returns the interest payment for a given period.",
50632
- ja: "\u6307\u5B9A\u671F\u306E\u5229\u606F\u652F\u6255\u984D\u3092\u8FD4\u3057\u307E\u3059\u3002"
50632
+ ja: "指定期の利息支払額を返します。"
50633
50633
  },
50634
50634
  examples: ["IPMT(0.05/12, 1, 60, 10000)", "IPMT(rate, per, nper, pv, fv, type)"],
50635
50635
  samples: [
@@ -50638,7 +50638,7 @@ var ipmtFunction = {
50638
50638
  output: -41.666666666666664,
50639
50639
  description: {
50640
50640
  en: "Interest portion of first payment on $10,000 loan",
50641
- ja: "10,000\u30C9\u30EB\u306E\u30ED\u30FC\u30F3\u306E\u521D\u56DE\u652F\u6255\u3044\u306E\u5229\u606F\u90E8\u5206"
50641
+ ja: "10,000ドルのローンの初回支払いの利息部分"
50642
50642
  }
50643
50643
  },
50644
50644
  {
@@ -50646,7 +50646,7 @@ var ipmtFunction = {
50646
50646
  output: -312.60937378758314,
50647
50647
  description: {
50648
50648
  en: "Interest portion of 12th payment",
50649
- ja: "12\u56DE\u76EE\u306E\u652F\u6255\u3044\u306E\u5229\u606F\u90E8\u5206"
50649
+ ja: "12回目の支払いの利息部分"
50650
50650
  }
50651
50651
  },
50652
50652
  {
@@ -50654,7 +50654,7 @@ var ipmtFunction = {
50654
50654
  output: -87.16128444806796,
50655
50655
  description: {
50656
50656
  en: "Interest portion of 6th payment",
50657
- ja: "6\u56DE\u76EE\u306E\u652F\u6255\u3044\u306E\u5229\u606F\u90E8\u5206"
50657
+ ja: "6回目の支払いの利息部分"
50658
50658
  }
50659
50659
  }
50660
50660
  ],
@@ -50719,7 +50719,7 @@ var ppmtFunction = {
50719
50719
  category: "financial",
50720
50720
  description: {
50721
50721
  en: "Returns the principal component of a payment for a given period.",
50722
- ja: "\u6307\u5B9A\u671F\u306B\u652F\u6255\u3046\u5143\u672C\u90E8\u5206\u3092\u8FD4\u3057\u307E\u3059\u3002"
50722
+ ja: "指定期に支払う元本部分を返します。"
50723
50723
  },
50724
50724
  examples: ["PPMT(0.05/12, 1, 60, 10000)", "PPMT(rate, per, nper, pv, fv, type)"],
50725
50725
  samples: [
@@ -50728,7 +50728,7 @@ var ppmtFunction = {
50728
50728
  output: -147.0456697734421,
50729
50729
  description: {
50730
50730
  en: "Principal portion of first payment on $10,000 loan",
50731
- ja: "10,000\u30C9\u30EB\u306E\u30ED\u30FC\u30F3\u306E\u521D\u56DE\u652F\u6255\u3044\u306E\u5143\u672C\u90E8\u5206"
50731
+ ja: "10,000ドルのローンの初回支払いの元本部分"
50732
50732
  }
50733
50733
  },
50734
50734
  {
@@ -50736,7 +50736,7 @@ var ppmtFunction = {
50736
50736
  output: -294.0285979892048,
50737
50737
  description: {
50738
50738
  en: "Principal portion of 12th payment",
50739
- ja: "12\u56DE\u76EE\u306E\u652F\u6255\u3044\u306E\u5143\u672C\u90E8\u5206"
50739
+ ja: "12回目の支払いの元本部分"
50740
50740
  }
50741
50741
  },
50742
50742
  {
@@ -50744,7 +50744,7 @@ var ppmtFunction = {
50744
50744
  output: -605.4116905782319,
50745
50745
  description: {
50746
50746
  en: "Principal portion of final payment",
50747
- ja: "\u6700\u7D42\u652F\u6255\u3044\u306E\u5143\u672C\u90E8\u5206"
50747
+ ja: "最終支払いの元本部分"
50748
50748
  }
50749
50749
  }
50750
50750
  ],
@@ -50783,7 +50783,7 @@ var pvFunction = {
50783
50783
  category: "financial",
50784
50784
  description: {
50785
50785
  en: "Returns the present value of an investment given rate, periods, and payment details.",
50786
- ja: "\u5229\u7387\u30FB\u671F\u9593\u30FB\u652F\u6255\u6761\u4EF6\u304B\u3089\u6295\u8CC7\u306E\u73FE\u5728\u4FA1\u5024\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
50786
+ ja: "利率・期間・支払条件から投資の現在価値を計算します。"
50787
50787
  },
50788
50788
  examples: ["PV(0.05/12, 60, -200)", "PV(rate, nper, pmt, fv, type)"],
50789
50789
  samples: [
@@ -50792,7 +50792,7 @@ var pvFunction = {
50792
50792
  output: 10598.141264785496,
50793
50793
  description: {
50794
50794
  en: "Present value of $200 monthly payments at 5% for 5 years",
50795
- ja: "\u5E74\u52295%\u30675\u5E74\u9593\u3001\u6708\u984D200\u30C9\u30EB\u306E\u73FE\u5728\u4FA1\u5024"
50795
+ ja: "年利5%で5年間、月額200ドルの現在価値"
50796
50796
  }
50797
50797
  },
50798
50798
  {
@@ -50800,7 +50800,7 @@ var pvFunction = {
50800
50800
  output: 31210.74044669055,
50801
50801
  description: {
50802
50802
  en: "Present value with future value target",
50803
- ja: "\u5C06\u6765\u4FA1\u5024\u76EE\u6A19\u3092\u542B\u3080\u73FE\u5728\u4FA1\u5024"
50803
+ ja: "将来価値目標を含む現在価値"
50804
50804
  }
50805
50805
  },
50806
50806
  {
@@ -50808,7 +50808,7 @@ var pvFunction = {
50808
50808
  output: 9910.611396138389,
50809
50809
  description: {
50810
50810
  en: "Present value with payments at beginning of period",
50811
- ja: "\u671F\u521D\u6255\u3044\u306E\u73FE\u5728\u4FA1\u5024"
50811
+ ja: "期初払いの現在価値"
50812
50812
  }
50813
50813
  }
50814
50814
  ],
@@ -50845,7 +50845,7 @@ var fvFunction = {
50845
50845
  category: "financial",
50846
50846
  description: {
50847
50847
  en: "Returns the future value of an investment given rate, periods, and payments.",
50848
- ja: "\u5229\u7387\u30FB\u671F\u9593\u30FB\u652F\u6255\u984D\u3092\u57FA\u306B\u5C06\u6765\u4FA1\u5024\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
50848
+ ja: "利率・期間・支払額を基に将来価値を計算します。"
50849
50849
  },
50850
50850
  examples: ["FV(0.05/12, 60, -200)", "FV(rate, nper, pmt, pv, type)"],
50851
50851
  samples: [
@@ -50854,7 +50854,7 @@ var fvFunction = {
50854
50854
  output: 13601.216568168675,
50855
50855
  description: {
50856
50856
  en: "Future value of $200 monthly payments at 5% annual rate for 5 years",
50857
- ja: "\u5E74\u52295%\u30675\u5E74\u9593\u3001\u6708\u984D200\u30C9\u30EB\u652F\u6255\u3063\u305F\u5834\u5408\u306E\u5C06\u6765\u4FA1\u5024"
50857
+ ja: "年利5%で5年間、月額200ドル支払った場合の将来価値"
50858
50858
  }
50859
50859
  },
50860
50860
  {
@@ -50862,7 +50862,7 @@ var fvFunction = {
50862
50862
  output: 18207.331414677887,
50863
50863
  description: {
50864
50864
  en: "Future value with initial investment and monthly payments",
50865
- ja: "\u521D\u671F\u6295\u8CC7\u3068\u6708\u6B21\u652F\u6255\u3044\u306E\u5C06\u6765\u4FA1\u5024"
50865
+ ja: "初期投資と月次支払いの将来価値"
50866
50866
  }
50867
50867
  },
50868
50868
  {
@@ -50870,7 +50870,7 @@ var fvFunction = {
50870
50870
  output: 12241.738438415496,
50871
50871
  description: {
50872
50872
  en: "Future value with payments at beginning of period",
50873
- ja: "\u671F\u521D\u6255\u3044\u306E\u5C06\u6765\u4FA1\u5024"
50873
+ ja: "期初払いの将来価値"
50874
50874
  }
50875
50875
  }
50876
50876
  ],
@@ -50907,7 +50907,7 @@ var npvFunction = {
50907
50907
  category: "financial",
50908
50908
  description: {
50909
50909
  en: "Returns the net present value of cash flows given a discount rate.",
50910
- ja: "\u6307\u5B9A\u3057\u305F\u5272\u5F15\u7387\u3067\u30AD\u30E3\u30C3\u30B7\u30E5\u30D5\u30ED\u30FC\u306E\u6B63\u5473\u73FE\u5728\u4FA1\u5024\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
50910
+ ja: "指定した割引率でキャッシュフローの正味現在価値を計算します。"
50911
50911
  },
50912
50912
  examples: ["NPV(0.1, -10000, 3000, 4200, 6800)", "NPV(rate, values)"],
50913
50913
  samples: [
@@ -50916,7 +50916,7 @@ var npvFunction = {
50916
50916
  output: 11307.29,
50917
50917
  description: {
50918
50918
  en: "NPV of three positive cash flows at 10% discount rate",
50919
- ja: "\u5272\u5F15\u738710%\u3067\u306E3\u3064\u306E\u6B63\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u30D5\u30ED\u30FC\u306ENPV"
50919
+ ja: "割引率10%での3つの正のキャッシュフローのNPV"
50920
50920
  }
50921
50921
  },
50922
50922
  {
@@ -50924,7 +50924,7 @@ var npvFunction = {
50924
50924
  output: 163.24,
50925
50925
  description: {
50926
50926
  en: "NPV including initial investment",
50927
- ja: "\u521D\u671F\u6295\u8CC7\u3092\u542B\u3080NPV"
50927
+ ja: "初期投資を含むNPV"
50928
50928
  }
50929
50929
  },
50930
50930
  {
@@ -50932,7 +50932,7 @@ var npvFunction = {
50932
50932
  output: 6641.41,
50933
50933
  description: {
50934
50934
  en: "NPV at higher discount rate",
50935
- ja: "\u9AD8\u3044\u5272\u5F15\u7387\u3067\u306ENPV"
50935
+ ja: "高い割引率でのNPV"
50936
50936
  }
50937
50937
  }
50938
50938
  ],
@@ -50980,7 +50980,7 @@ var irrFunction = {
50980
50980
  category: "financial",
50981
50981
  description: {
50982
50982
  en: "Returns the internal rate of return for a series of cash flows.",
50983
- ja: "\u30AD\u30E3\u30C3\u30B7\u30E5\u30D5\u30ED\u30FC\u5217\u306E\u5185\u90E8\u53CE\u76CA\u7387\u3092\u8FD4\u3057\u307E\u3059\u3002"
50983
+ ja: "キャッシュフロー列の内部収益率を返します。"
50984
50984
  },
50985
50985
  examples: ["IRR({-10000,3000,4200,6800})", "IRR(values, guess)"],
50986
50986
  samples: [
@@ -50989,7 +50989,7 @@ var irrFunction = {
50989
50989
  output: 0.1634056006889892,
50990
50990
  description: {
50991
50991
  en: "IRR for investment with initial outlay and three returns",
50992
- ja: "\u521D\u671F\u652F\u51FA\u30683\u56DE\u306E\u30EA\u30BF\u30FC\u30F3\u304C\u3042\u308B\u6295\u8CC7\u306EIRR"
50992
+ ja: "初期支出と3回のリターンがある投資のIRR"
50993
50993
  }
50994
50994
  },
50995
50995
  {
@@ -50997,7 +50997,7 @@ var irrFunction = {
50997
50997
  output: 0.12825726900167392,
50998
50998
  description: {
50999
50999
  en: "IRR for multi-period investment",
51000
- ja: "\u8907\u6570\u671F\u9593\u306E\u6295\u8CC7\u306EIRR"
51000
+ ja: "複数期間の投資のIRR"
51001
51001
  }
51002
51002
  },
51003
51003
  {
@@ -51005,7 +51005,7 @@ var irrFunction = {
51005
51005
  output: 0.3387497097016258,
51006
51006
  description: {
51007
51007
  en: "IRR with initial guess",
51008
- ja: "\u521D\u671F\u63A8\u5B9A\u5024\u3092\u6307\u5B9A\u3057\u305FIRR"
51008
+ ja: "初期推定値を指定したIRR"
51009
51009
  }
51010
51010
  }
51011
51011
  ],
@@ -51057,7 +51057,7 @@ var xnpvFunction = {
51057
51057
  category: "financial",
51058
51058
  description: {
51059
51059
  en: "Returns the net present value for irregular cash flows.",
51060
- ja: "\u4E0D\u898F\u5247\u306A\u30AD\u30E3\u30C3\u30B7\u30E5\u30D5\u30ED\u30FC\u306E\u6B63\u5473\u73FE\u5728\u4FA1\u5024\u3092\u7B97\u51FA\u3057\u307E\u3059\u3002"
51060
+ ja: "不規則なキャッシュフローの正味現在価値を算出します。"
51061
51061
  },
51062
51062
  examples: ["XNPV(0.1, values, dates)"],
51063
51063
  samples: [
@@ -51066,7 +51066,7 @@ var xnpvFunction = {
51066
51066
  output: 2086.647602031535,
51067
51067
  description: {
51068
51068
  en: "NPV for irregular cash flow dates",
51069
- ja: "\u4E0D\u898F\u5247\u306A\u65E5\u4ED8\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u30D5\u30ED\u30FC\u306ENPV"
51069
+ ja: "不規則な日付のキャッシュフローのNPV"
51070
51070
  }
51071
51071
  },
51072
51072
  {
@@ -51074,7 +51074,7 @@ var xnpvFunction = {
51074
51074
  output: -7596.695574984427,
51075
51075
  description: {
51076
51076
  en: "NPV for investment with irregular returns",
51077
- ja: "\u4E0D\u898F\u5247\u306A\u30EA\u30BF\u30FC\u30F3\u3092\u6301\u3064\u6295\u8CC7\u306ENPV"
51077
+ ja: "不規則なリターンを持つ投資のNPV"
51078
51078
  }
51079
51079
  }
51080
51080
  ],
@@ -51128,7 +51128,7 @@ var xirrFunction = {
51128
51128
  category: "financial",
51129
51129
  description: {
51130
51130
  en: "Returns the internal rate of return for irregular cash flows.",
51131
- ja: "\u4E0D\u898F\u5247\u306A\u30AD\u30E3\u30C3\u30B7\u30E5\u30D5\u30ED\u30FC\u5217\u306E\u5185\u90E8\u53CE\u76CA\u7387\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
51131
+ ja: "不規則なキャッシュフロー列の内部収益率を計算します。"
51132
51132
  },
51133
51133
  examples: ["XIRR(values, dates)", "XIRR(values, dates, guess)"],
51134
51134
  samples: [
@@ -51137,7 +51137,7 @@ var xirrFunction = {
51137
51137
  output: 0.3733625335188315,
51138
51138
  description: {
51139
51139
  en: "IRR for irregular cash flow dates",
51140
- ja: "\u4E0D\u898F\u5247\u306A\u65E5\u4ED8\u306E\u30AD\u30E3\u30C3\u30B7\u30E5\u30D5\u30ED\u30FC\u306EIRR"
51140
+ ja: "不規則な日付のキャッシュフローのIRR"
51141
51141
  }
51142
51142
  },
51143
51143
  {
@@ -51145,7 +51145,7 @@ var xirrFunction = {
51145
51145
  output: 0.2538601048765094,
51146
51146
  description: {
51147
51147
  en: "IRR with initial guess",
51148
- ja: "\u521D\u671F\u63A8\u5B9A\u5024\u3092\u6307\u5B9A\u3057\u305FIRR"
51148
+ ja: "初期推定値を指定したIRR"
51149
51149
  }
51150
51150
  }
51151
51151
  ],
@@ -51216,7 +51216,7 @@ var rateFunction = {
51216
51216
  category: "financial",
51217
51217
  description: {
51218
51218
  en: "Returns the interest rate per period for an annuity.",
51219
- ja: "\u5E74\u91D1\u306E\u5404\u671F\u5229\u7387\u3092\u7B97\u51FA\u3057\u307E\u3059\u3002"
51219
+ ja: "年金の各期利率を算出します。"
51220
51220
  },
51221
51221
  examples: ["RATE(60, -188.71, 10000)", "RATE(nper, pmt, pv, fv, type, guess)"],
51222
51222
  samples: [
@@ -51225,7 +51225,7 @@ var rateFunction = {
51225
51225
  output: 0.004166666666666963,
51226
51226
  description: {
51227
51227
  en: "Monthly interest rate for a loan (approximately 5% annual)",
51228
- ja: "\u30ED\u30FC\u30F3\u306E\u6708\u5229\uFF08\u5E74\u5229\u7D045%\uFF09"
51228
+ ja: "ローンの月利(年利約5%)"
51229
51229
  }
51230
51230
  },
51231
51231
  {
@@ -51233,7 +51233,7 @@ var rateFunction = {
51233
51233
  output: 0.006666666666666771,
51234
51234
  description: {
51235
51235
  en: "Monthly rate for 10-year loan",
51236
- ja: "10\u5E74\u30ED\u30FC\u30F3\u306E\u6708\u5229"
51236
+ ja: "10年ローンの月利"
51237
51237
  }
51238
51238
  },
51239
51239
  {
@@ -51241,7 +51241,7 @@ var rateFunction = {
51241
51241
  output: 0.005000000000000832,
51242
51242
  description: {
51243
51243
  en: "Rate with initial guess",
51244
- ja: "\u521D\u671F\u63A8\u5B9A\u5024\u3092\u6307\u5B9A\u3057\u305F\u5229\u7387\u8A08\u7B97"
51244
+ ja: "初期推定値を指定した利率計算"
51245
51245
  }
51246
51246
  }
51247
51247
  ],
@@ -51306,7 +51306,7 @@ var isBlankFunction = {
51306
51306
  category: "info",
51307
51307
  description: {
51308
51308
  en: "Returns TRUE if the value is empty (null).",
51309
- ja: "\u5024\u304C\u7A7A(null)\u306E\u5834\u5408\u306BTRUE\u3092\u8FD4\u3057\u307E\u3059\u3002"
51309
+ ja: "値が空(null)の場合にTRUEを返します。"
51310
51310
  },
51311
51311
  examples: ["ISBLANK(A1)", 'ISBLANK("")'],
51312
51312
  samples: [
@@ -51315,7 +51315,7 @@ var isBlankFunction = {
51315
51315
  output: false,
51316
51316
  description: {
51317
51317
  en: "Empty string is not blank (null)",
51318
- ja: "\u7A7A\u6587\u5B57\u5217\u306Fblank\uFF08null\uFF09\u3067\u306F\u306A\u3044"
51318
+ ja: "空文字列はblank(null)ではない"
51319
51319
  }
51320
51320
  },
51321
51321
  {
@@ -51323,7 +51323,7 @@ var isBlankFunction = {
51323
51323
  output: false,
51324
51324
  description: {
51325
51325
  en: "Zero is not blank",
51326
- ja: "\u30BC\u30ED\u306Fblank\u3067\u306F\u306A\u3044"
51326
+ ja: "ゼロはblankではない"
51327
51327
  }
51328
51328
  }
51329
51329
  ],
@@ -51350,7 +51350,7 @@ var isNumberFunction = {
51350
51350
  category: "info",
51351
51351
  description: {
51352
51352
  en: "Returns TRUE if the value is a finite number.",
51353
- ja: "\u5024\u304C\u6709\u9650\u306E\u6570\u5024\u3067\u3042\u308C\u3070TRUE\u3092\u8FD4\u3057\u307E\u3059\u3002"
51353
+ ja: "値が有限の数値であればTRUEを返します。"
51354
51354
  },
51355
51355
  examples: ["ISNUMBER(A1)", "ISNUMBER(42)"],
51356
51356
  samples: [
@@ -51359,7 +51359,7 @@ var isNumberFunction = {
51359
51359
  output: true,
51360
51360
  description: {
51361
51361
  en: "Check if value is a number",
51362
- ja: "\u5024\u304C\u6570\u5024\u304B\u3069\u3046\u304B\u3092\u30C1\u30A7\u30C3\u30AF"
51362
+ ja: "値が数値かどうかをチェック"
51363
51363
  }
51364
51364
  },
51365
51365
  {
@@ -51367,7 +51367,7 @@ var isNumberFunction = {
51367
51367
  output: false,
51368
51368
  description: {
51369
51369
  en: "Text is not a number",
51370
- ja: "\u30C6\u30AD\u30B9\u30C8\u306F\u6570\u5024\u3067\u306F\u306A\u3044"
51370
+ ja: "テキストは数値ではない"
51371
51371
  }
51372
51372
  },
51373
51373
  {
@@ -51375,7 +51375,7 @@ var isNumberFunction = {
51375
51375
  output: true,
51376
51376
  description: {
51377
51377
  en: "Decimal numbers are valid",
51378
- ja: "\u5C0F\u6570\u3082\u6709\u52B9\u306A\u6570\u5024"
51378
+ ja: "小数も有効な数値"
51379
51379
  }
51380
51380
  }
51381
51381
  ],
@@ -51402,7 +51402,7 @@ var isTextFunction = {
51402
51402
  category: "info",
51403
51403
  description: {
51404
51404
  en: "Returns TRUE if the value is text.",
51405
- ja: "\u5024\u304C\u6587\u5B57\u5217\u306E\u5834\u5408\u306BTRUE\u3092\u8FD4\u3057\u307E\u3059\u3002"
51405
+ ja: "値が文字列の場合にTRUEを返します。"
51406
51406
  },
51407
51407
  examples: ["ISTEXT(A1)", 'ISTEXT("hello")'],
51408
51408
  samples: [
@@ -51411,7 +51411,7 @@ var isTextFunction = {
51411
51411
  output: true,
51412
51412
  description: {
51413
51413
  en: "Check if value is text",
51414
- ja: "\u5024\u304C\u30C6\u30AD\u30B9\u30C8\u304B\u3069\u3046\u304B\u3092\u30C1\u30A7\u30C3\u30AF"
51414
+ ja: "値がテキストかどうかをチェック"
51415
51415
  }
51416
51416
  },
51417
51417
  {
@@ -51419,7 +51419,7 @@ var isTextFunction = {
51419
51419
  output: false,
51420
51420
  description: {
51421
51421
  en: "Numbers are not text",
51422
- ja: "\u6570\u5024\u306F\u30C6\u30AD\u30B9\u30C8\u3067\u306F\u306A\u3044"
51422
+ ja: "数値はテキストではない"
51423
51423
  }
51424
51424
  },
51425
51425
  {
@@ -51427,7 +51427,7 @@ var isTextFunction = {
51427
51427
  output: true,
51428
51428
  description: {
51429
51429
  en: "Empty string is text",
51430
- ja: "\u7A7A\u6587\u5B57\u5217\u3082\u30C6\u30AD\u30B9\u30C8"
51430
+ ja: "空文字列もテキスト"
51431
51431
  }
51432
51432
  }
51433
51433
  ],
@@ -51454,7 +51454,7 @@ var isLogicalFunction = {
51454
51454
  category: "info",
51455
51455
  description: {
51456
51456
  en: "Returns TRUE if the value is a boolean.",
51457
- ja: "\u5024\u304C\u8AD6\u7406\u5024\u3067\u3042\u308C\u3070TRUE\u3092\u8FD4\u3057\u307E\u3059\u3002"
51457
+ ja: "値が論理値であればTRUEを返します。"
51458
51458
  },
51459
51459
  examples: ["ISLOGICAL(A1)", "ISLOGICAL(TRUE)"],
51460
51460
  samples: [
@@ -51463,7 +51463,7 @@ var isLogicalFunction = {
51463
51463
  output: true,
51464
51464
  description: {
51465
51465
  en: "Check if value is boolean",
51466
- ja: "\u5024\u304C\u8AD6\u7406\u5024\u304B\u3069\u3046\u304B\u3092\u30C1\u30A7\u30C3\u30AF"
51466
+ ja: "値が論理値かどうかをチェック"
51467
51467
  }
51468
51468
  },
51469
51469
  {
@@ -51471,7 +51471,7 @@ var isLogicalFunction = {
51471
51471
  output: true,
51472
51472
  description: {
51473
51473
  en: "FALSE is also a boolean",
51474
- ja: "FALSE\u3082\u8AD6\u7406\u5024"
51474
+ ja: "FALSEも論理値"
51475
51475
  }
51476
51476
  },
51477
51477
  {
@@ -51479,7 +51479,7 @@ var isLogicalFunction = {
51479
51479
  output: false,
51480
51480
  description: {
51481
51481
  en: "Numbers are not boolean",
51482
- ja: "\u6570\u5024\u306F\u8AD6\u7406\u5024\u3067\u306F\u306A\u3044"
51482
+ ja: "数値は論理値ではない"
51483
51483
  }
51484
51484
  }
51485
51485
  ],
@@ -51506,7 +51506,7 @@ var isErrFunction = {
51506
51506
  category: "info",
51507
51507
  description: {
51508
51508
  en: "Returns TRUE if evaluating the value results in an error other than #N/A.",
51509
- ja: "\u5024\u306E\u8A55\u4FA1\u3067#N/A\u4EE5\u5916\u306E\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u305F\u5834\u5408\u306BTRUE\u3092\u8FD4\u3057\u307E\u3059\u3002"
51509
+ ja: "値の評価で#N/A以外のエラーが発生した場合にTRUEを返します。"
51510
51510
  },
51511
51511
  examples: ["ISERR(1/0)", "ISERR(NOT(A1))"],
51512
51512
  samples: [
@@ -51515,7 +51515,7 @@ var isErrFunction = {
51515
51515
  output: true,
51516
51516
  description: {
51517
51517
  en: "Division by zero is an error (not #N/A)",
51518
- ja: "\u30BC\u30ED\u9664\u7B97\u306F\u30A8\u30E9\u30FC\uFF08#N/A\u3067\u306F\u306A\u3044\uFF09"
51518
+ ja: "ゼロ除算はエラー(#N/Aではない)"
51519
51519
  }
51520
51520
  },
51521
51521
  {
@@ -51523,7 +51523,7 @@ var isErrFunction = {
51523
51523
  output: false,
51524
51524
  description: {
51525
51525
  en: "Valid values are not errors",
51526
- ja: "\u6709\u52B9\u306A\u5024\u306F\u30A8\u30E9\u30FC\u3067\u306F\u306A\u3044"
51526
+ ja: "有効な値はエラーではない"
51527
51527
  }
51528
51528
  }
51529
51529
  ],
@@ -51547,7 +51547,7 @@ var isNaFunction = {
51547
51547
  category: "info",
51548
51548
  description: {
51549
51549
  en: "Returns TRUE if evaluating the value results in a #N/A error.",
51550
- ja: "\u5024\u306E\u8A55\u4FA1\u3067#N/A\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u305F\u5834\u5408\u306BTRUE\u3092\u8FD4\u3057\u307E\u3059\u3002"
51550
+ ja: "値の評価で#N/Aエラーが発生した場合にTRUEを返します。"
51551
51551
  },
51552
51552
  examples: ['ISNA(VLOOKUP("x", A1:B2, 2, FALSE))', "ISNA(NA())"],
51553
51553
  samples: [
@@ -51556,7 +51556,7 @@ var isNaFunction = {
51556
51556
  output: false,
51557
51557
  description: {
51558
51558
  en: "Division by zero is not #N/A",
51559
- ja: "\u30BC\u30ED\u9664\u7B97\u306F#N/A\u3067\u306F\u306A\u3044"
51559
+ ja: "ゼロ除算は#N/Aではない"
51560
51560
  }
51561
51561
  }
51562
51562
  ],
@@ -51580,7 +51580,7 @@ var isErrorFunction = {
51580
51580
  category: "info",
51581
51581
  description: {
51582
51582
  en: "Returns TRUE if evaluating the value results in an error.",
51583
- ja: "\u5024\u306E\u8A55\u4FA1\u3067\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u305F\u5834\u5408\u306BTRUE\u3092\u8FD4\u3057\u307E\u3059\u3002"
51583
+ ja: "値の評価でエラーが発生した場合にTRUEを返します。"
51584
51584
  },
51585
51585
  examples: ["ISERROR(1/0)", 'ISERROR(VLOOKUP("=", A1:B2, 2, FALSE))'],
51586
51586
  samples: [
@@ -51589,7 +51589,7 @@ var isErrorFunction = {
51589
51589
  output: true,
51590
51590
  description: {
51591
51591
  en: "Division by zero is an error",
51592
- ja: "\u30BC\u30ED\u9664\u7B97\u306F\u30A8\u30E9\u30FC"
51592
+ ja: "ゼロ除算はエラー"
51593
51593
  }
51594
51594
  },
51595
51595
  {
@@ -51597,7 +51597,7 @@ var isErrorFunction = {
51597
51597
  output: false,
51598
51598
  description: {
51599
51599
  en: "Valid values are not errors",
51600
- ja: "\u6709\u52B9\u306A\u5024\u306F\u30A8\u30E9\u30FC\u3067\u306F\u306A\u3044"
51600
+ ja: "有効な値はエラーではない"
51601
51601
  }
51602
51602
  }
51603
51603
  ],
@@ -51621,7 +51621,7 @@ var ifErrorFunction = {
51621
51621
  category: "info",
51622
51622
  description: {
51623
51623
  en: "Returns an alternative value if an error occurs; otherwise returns the original result.",
51624
- ja: "\u30A8\u30E9\u30FC\u304C\u767A\u751F\u3057\u305F\u5834\u5408\u306F\u4EE3\u66FF\u5024\u3092\u8FD4\u3057\u3001\u305D\u3046\u3067\u306A\u3051\u308C\u3070\u5143\u306E\u7D50\u679C\u3092\u8FD4\u3057\u307E\u3059\u3002"
51624
+ ja: "エラーが発生した場合は代替値を返し、そうでなければ元の結果を返します。"
51625
51625
  },
51626
51626
  examples: ["IFERROR(1/0, 0)", 'IFERROR(VLOOKUP("x", A1:B2, 2, FALSE), "Not found")'],
51627
51627
  samples: [
@@ -51630,7 +51630,7 @@ var ifErrorFunction = {
51630
51630
  output: 0,
51631
51631
  description: {
51632
51632
  en: "Return fallback value on error",
51633
- ja: "\u30A8\u30E9\u30FC\u6642\u306B\u4EE3\u66FF\u5024\u3092\u8FD4\u3059"
51633
+ ja: "エラー時に代替値を返す"
51634
51634
  }
51635
51635
  },
51636
51636
  {
@@ -51638,7 +51638,7 @@ var ifErrorFunction = {
51638
51638
  output: 5,
51639
51639
  description: {
51640
51640
  en: "Return original value if no error",
51641
- ja: "\u30A8\u30E9\u30FC\u304C\u306A\u3051\u308C\u3070\u5143\u306E\u5024\u3092\u8FD4\u3059"
51641
+ ja: "エラーがなければ元の値を返す"
51642
51642
  }
51643
51643
  },
51644
51644
  {
@@ -51646,7 +51646,7 @@ var ifErrorFunction = {
51646
51646
  output: 100,
51647
51647
  description: {
51648
51648
  en: "Valid value is returned as-is",
51649
- ja: "\u6709\u52B9\u306A\u5024\u306F\u305D\u306E\u307E\u307E\u8FD4\u3055\u308C\u308B"
51649
+ ja: "有効な値はそのまま返される"
51650
51650
  }
51651
51651
  }
51652
51652
  ],
@@ -51674,7 +51674,7 @@ var ifNaFunction = {
51674
51674
  category: "info",
51675
51675
  description: {
51676
51676
  en: "Returns an alternative value if the original evaluation results in #N/A; otherwise returns the original result.",
51677
- ja: "\u5143\u306E\u8A55\u4FA1\u304C#N/A\u30A8\u30E9\u30FC\u3068\u306A\u3063\u305F\u5834\u5408\u306B\u4EE3\u66FF\u5024\u3092\u8FD4\u3057\u3001\u305D\u3046\u3067\u306A\u3051\u308C\u3070\u5143\u306E\u7D50\u679C\u3092\u8FD4\u3057\u307E\u3059\u3002"
51677
+ ja: "元の評価が#N/Aエラーとなった場合に代替値を返し、そうでなければ元の結果を返します。"
51678
51678
  },
51679
51679
  examples: ['IFNA(VLOOKUP("x", A1:B2, 2, FALSE), "Not found")'],
51680
51680
  samples: [
@@ -51683,7 +51683,7 @@ var ifNaFunction = {
51683
51683
  output: 100,
51684
51684
  description: {
51685
51685
  en: "Return original value if not #N/A",
51686
- ja: "#N/A\u3067\u306A\u3051\u308C\u3070\u5143\u306E\u5024\u3092\u8FD4\u3059"
51686
+ ja: "#N/Aでなければ元の値を返す"
51687
51687
  }
51688
51688
  },
51689
51689
  {
@@ -51691,7 +51691,7 @@ var ifNaFunction = {
51691
51691
  output: "result",
51692
51692
  description: {
51693
51693
  en: "Valid result is returned",
51694
- ja: "\u6709\u52B9\u306A\u7D50\u679C\u304C\u8FD4\u3055\u308C\u308B"
51694
+ ja: "有効な結果が返される"
51695
51695
  }
51696
51696
  }
51697
51697
  ],
@@ -51719,7 +51719,7 @@ var errorTypeFunction = {
51719
51719
  category: "info",
51720
51720
  description: {
51721
51721
  en: "Returns a number corresponding to an error value.",
51722
- ja: "\u30A8\u30E9\u30FC\u5024\u306B\u5BFE\u5FDC\u3059\u308B\u756A\u53F7\u3092\u8FD4\u3057\u307E\u3059\u3002"
51722
+ ja: "エラー値に対応する番号を返します。"
51723
51723
  },
51724
51724
  examples: ["ERROR.TYPE(1/0)", 'ERROR.TYPE(IFNA(A1, "Fallback"))'],
51725
51725
  samples: [
@@ -51728,7 +51728,7 @@ var errorTypeFunction = {
51728
51728
  output: 2,
51729
51729
  description: {
51730
51730
  en: "Division by zero error type",
51731
- ja: "\u30BC\u30ED\u9664\u7B97\u30A8\u30E9\u30FC\u306E\u30BF\u30A4\u30D7"
51731
+ ja: "ゼロ除算エラーのタイプ"
51732
51732
  }
51733
51733
  }
51734
51734
  ],
@@ -51775,7 +51775,7 @@ var typeFunction = {
51775
51775
  category: "info",
51776
51776
  description: {
51777
51777
  en: "Returns a number representing the type of a value.",
51778
- ja: "\u5024\u306E\u7A2E\u985E\u3092\u8868\u3059\u756A\u53F7\u3092\u8FD4\u3057\u307E\u3059\u3002"
51778
+ ja: "値の種類を表す番号を返します。"
51779
51779
  },
51780
51780
  examples: ["TYPE(42)", 'TYPE("text")', "TYPE(TRUE)", "TYPE(1/0)"],
51781
51781
  samples: [
@@ -51784,7 +51784,7 @@ var typeFunction = {
51784
51784
  output: 1,
51785
51785
  description: {
51786
51786
  en: "Number type is 1",
51787
- ja: "\u6570\u5024\u578B\u306F1"
51787
+ ja: "数値型は1"
51788
51788
  }
51789
51789
  },
51790
51790
  {
@@ -51792,7 +51792,7 @@ var typeFunction = {
51792
51792
  output: 2,
51793
51793
  description: {
51794
51794
  en: "Text type is 2",
51795
- ja: "\u30C6\u30AD\u30B9\u30C8\u578B\u306F2"
51795
+ ja: "テキスト型は2"
51796
51796
  }
51797
51797
  },
51798
51798
  {
@@ -51800,7 +51800,7 @@ var typeFunction = {
51800
51800
  output: 4,
51801
51801
  description: {
51802
51802
  en: "Boolean type is 4",
51803
- ja: "\u8AD6\u7406\u5024\u578B\u306F4"
51803
+ ja: "論理値型は4"
51804
51804
  }
51805
51805
  }
51806
51806
  ],
@@ -51824,7 +51824,7 @@ var averageFunction = {
51824
51824
  category: "statistical",
51825
51825
  description: {
51826
51826
  en: "Returns the arithmetic mean of numeric arguments, ignoring non-numeric values.",
51827
- ja: "\u6570\u5024\u4EE5\u5916\u3092\u7121\u8996\u3057\u3066\u5F15\u6570\u306E\u7B97\u8853\u5E73\u5747\u3092\u8FD4\u3057\u307E\u3059\u3002"
51827
+ ja: "数値以外を無視して引数の算術平均を返します。"
51828
51828
  },
51829
51829
  examples: ["AVERAGE(1, 2, 3)", "AVERAGE(A1:A10)"],
51830
51830
  samples: [
@@ -51833,7 +51833,7 @@ var averageFunction = {
51833
51833
  output: 3,
51834
51834
  description: {
51835
51835
  en: "Average of five numbers",
51836
- ja: "5\u3064\u306E\u6570\u5024\u306E\u5E73\u5747"
51836
+ ja: "5つの数値の平均"
51837
51837
  }
51838
51838
  },
51839
51839
  {
@@ -51841,7 +51841,7 @@ var averageFunction = {
51841
51841
  output: 20,
51842
51842
  description: {
51843
51843
  en: "Simple average",
51844
- ja: "\u5358\u7D14\u306A\u5E73\u5747"
51844
+ ja: "単純な平均"
51845
51845
  }
51846
51846
  },
51847
51847
  {
@@ -51849,7 +51849,7 @@ var averageFunction = {
51849
51849
  output: 20,
51850
51850
  description: {
51851
51851
  en: "Average of evenly spaced numbers",
51852
- ja: "\u7B49\u9593\u9694\u306E\u6570\u5024\u306E\u5E73\u5747"
51852
+ ja: "等間隔の数値の平均"
51853
51853
  }
51854
51854
  }
51855
51855
  ],
@@ -51869,7 +51869,7 @@ var averageIfFunction = {
51869
51869
  category: "statistical",
51870
51870
  description: {
51871
51871
  en: "Returns the mean of values that satisfy a single condition.",
51872
- ja: "\u5358\u4E00\u6761\u4EF6\u3092\u6E80\u305F\u3059\u5024\u306E\u5E73\u5747\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
51872
+ ja: "単一条件を満たす値の平均を計算します。"
51873
51873
  },
51874
51874
  examples: ['AVERAGEIF(A1:A10, ">0")', 'AVERAGEIF(A1:A10, "=East", B1:B10)'],
51875
51875
  samples: [
@@ -51878,7 +51878,7 @@ var averageIfFunction = {
51878
51878
  output: 17.5,
51879
51879
  description: {
51880
51880
  en: "Average of values greater than 10",
51881
- ja: "10\u3088\u308A\u5927\u304D\u3044\u5024\u306E\u5E73\u5747"
51881
+ ja: "10より大きい値の平均"
51882
51882
  }
51883
51883
  },
51884
51884
  {
@@ -51886,7 +51886,7 @@ var averageIfFunction = {
51886
51886
  output: 30,
51887
51887
  description: {
51888
51888
  en: "Average with condition",
51889
- ja: "\u6761\u4EF6\u4ED8\u304D\u306E\u5E73\u5747"
51889
+ ja: "条件付きの平均"
51890
51890
  }
51891
51891
  }
51892
51892
  ],
@@ -51931,7 +51931,7 @@ var averageIfsFunction = {
51931
51931
  category: "statistical",
51932
51932
  description: {
51933
51933
  en: "Returns the mean of values that satisfy multiple criteria across ranges.",
51934
- ja: "\u8907\u6570\u306E\u7BC4\u56F2\u3068\u6761\u4EF6\u3092\u6E80\u305F\u3059\u5024\u306E\u5E73\u5747\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
51934
+ ja: "複数の範囲と条件を満たす値の平均を計算します。"
51935
51935
  },
51936
51936
  examples: ['AVERAGEIFS(C1:C10, A1:A10, "East", B1:B10, ">=2024")', "AVERAGEIFS(A1:A5, B1:B5, 1)"],
51937
51937
  samples: [
@@ -51940,7 +51940,7 @@ var averageIfsFunction = {
51940
51940
  output: 25,
51941
51941
  description: {
51942
51942
  en: "Average with multiple criteria",
51943
- ja: "\u8907\u6570\u6761\u4EF6\u3067\u306E\u5E73\u5747"
51943
+ ja: "複数条件での平均"
51944
51944
  }
51945
51945
  }
51946
51946
  ],
@@ -51992,7 +51992,7 @@ var maxFunction = {
51992
51992
  category: "statistical",
51993
51993
  description: {
51994
51994
  en: "Returns the largest numeric value from the arguments.",
51995
- ja: "\u5F15\u6570\u306E\u4E2D\u3067\u6700\u5927\u306E\u6570\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
51995
+ ja: "引数の中で最大の数値を返します。"
51996
51996
  },
51997
51997
  examples: ["MAX(1, 5, 3)", "MAX(A1:A10)"],
51998
51998
  samples: [
@@ -52001,7 +52001,7 @@ var maxFunction = {
52001
52001
  output: 9,
52002
52002
  description: {
52003
52003
  en: "Maximum of five numbers",
52004
- ja: "5\u3064\u306E\u6570\u5024\u306E\u6700\u5927\u5024"
52004
+ ja: "5つの数値の最大値"
52005
52005
  }
52006
52006
  },
52007
52007
  {
@@ -52009,7 +52009,7 @@ var maxFunction = {
52009
52009
  output: -5,
52010
52010
  description: {
52011
52011
  en: "Maximum of negative numbers",
52012
- ja: "\u8CA0\u306E\u6570\u306E\u6700\u5927\u5024"
52012
+ ja: "負の数の最大値"
52013
52013
  }
52014
52014
  },
52015
52015
  {
@@ -52017,7 +52017,7 @@ var maxFunction = {
52017
52017
  output: 200,
52018
52018
  description: {
52019
52019
  en: "Largest value",
52020
- ja: "\u6700\u5927\u306E\u5024"
52020
+ ja: "最大の値"
52021
52021
  }
52022
52022
  }
52023
52023
  ],
@@ -52036,7 +52036,7 @@ var minFunction = {
52036
52036
  category: "statistical",
52037
52037
  description: {
52038
52038
  en: "Returns the smallest numeric value from the arguments.",
52039
- ja: "\u5F15\u6570\u306E\u4E2D\u3067\u6700\u5C0F\u306E\u6570\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
52039
+ ja: "引数の中で最小の数値を返します。"
52040
52040
  },
52041
52041
  examples: ["MIN(1, 5, 3)", "MIN(A1:A10)"],
52042
52042
  samples: [
@@ -52045,7 +52045,7 @@ var minFunction = {
52045
52045
  output: 1,
52046
52046
  description: {
52047
52047
  en: "Minimum of five numbers",
52048
- ja: "5\u3064\u306E\u6570\u5024\u306E\u6700\u5C0F\u5024"
52048
+ ja: "5つの数値の最小値"
52049
52049
  }
52050
52050
  },
52051
52051
  {
@@ -52053,7 +52053,7 @@ var minFunction = {
52053
52053
  output: -20,
52054
52054
  description: {
52055
52055
  en: "Minimum of negative numbers",
52056
- ja: "\u8CA0\u306E\u6570\u306E\u6700\u5C0F\u5024"
52056
+ ja: "負の数の最小値"
52057
52057
  }
52058
52058
  },
52059
52059
  {
@@ -52061,7 +52061,7 @@ var minFunction = {
52061
52061
  output: 50,
52062
52062
  description: {
52063
52063
  en: "Smallest value",
52064
- ja: "\u6700\u5C0F\u306E\u5024"
52064
+ ja: "最小の値"
52065
52065
  }
52066
52066
  }
52067
52067
  ],
@@ -52080,7 +52080,7 @@ var countFunction = {
52080
52080
  category: "statistical",
52081
52081
  description: {
52082
52082
  en: "Counts numeric values in the arguments, ignoring non-numeric entries.",
52083
- ja: "\u6570\u5024\u4EE5\u5916\u3092\u7121\u8996\u3057\u3066\u5F15\u6570\u5185\u306E\u6570\u5024\u3092\u6570\u3048\u307E\u3059\u3002"
52083
+ ja: "数値以外を無視して引数内の数値を数えます。"
52084
52084
  },
52085
52085
  examples: ['COUNT(1, 2, "x")', "COUNT(A1:A10)"],
52086
52086
  samples: [
@@ -52089,7 +52089,7 @@ var countFunction = {
52089
52089
  output: 4,
52090
52090
  description: {
52091
52091
  en: "Count only numeric values",
52092
- ja: "\u6570\u5024\u306E\u307F\u3092\u30AB\u30A6\u30F3\u30C8"
52092
+ ja: "数値のみをカウント"
52093
52093
  }
52094
52094
  },
52095
52095
  {
@@ -52097,7 +52097,7 @@ var countFunction = {
52097
52097
  output: 3,
52098
52098
  description: {
52099
52099
  en: "Count all numbers",
52100
- ja: "\u3059\u3079\u3066\u306E\u6570\u5024\u3092\u30AB\u30A6\u30F3\u30C8"
52100
+ ja: "すべての数値をカウント"
52101
52101
  }
52102
52102
  },
52103
52103
  {
@@ -52105,7 +52105,7 @@ var countFunction = {
52105
52105
  output: 0,
52106
52106
  description: {
52107
52107
  en: "No numeric values",
52108
- ja: "\u6570\u5024\u304C\u306A\u3044"
52108
+ ja: "数値がない"
52109
52109
  }
52110
52110
  }
52111
52111
  ],
@@ -52121,7 +52121,7 @@ var countIfFunction = {
52121
52121
  category: "statistical",
52122
52122
  description: {
52123
52123
  en: "Counts the number of values in a range that meet a single condition.",
52124
- ja: "\u7BC4\u56F2\u5185\u3067\u6761\u4EF6\u3092\u6E80\u305F\u3059\u5024\u306E\u4EF6\u6570\u3092\u6570\u3048\u307E\u3059\u3002"
52124
+ ja: "範囲内で条件を満たす値の件数を数えます。"
52125
52125
  },
52126
52126
  examples: ['COUNTIF(A1:A10, ">10")', 'COUNTIF(A1:A10, "=Yes")'],
52127
52127
  samples: [
@@ -52130,7 +52130,7 @@ var countIfFunction = {
52130
52130
  output: 2,
52131
52131
  description: {
52132
52132
  en: "Count values greater than 10",
52133
- ja: "10\u3088\u308A\u5927\u304D\u3044\u5024\u3092\u30AB\u30A6\u30F3\u30C8"
52133
+ ja: "10より大きい値をカウント"
52134
52134
  }
52135
52135
  },
52136
52136
  {
@@ -52138,7 +52138,7 @@ var countIfFunction = {
52138
52138
  output: 2,
52139
52139
  description: {
52140
52140
  en: "Count matching text values",
52141
- ja: "\u4E00\u81F4\u3059\u308B\u30C6\u30AD\u30B9\u30C8\u5024\u3092\u30AB\u30A6\u30F3\u30C8"
52141
+ ja: "一致するテキスト値をカウント"
52142
52142
  }
52143
52143
  },
52144
52144
  {
@@ -52146,7 +52146,7 @@ var countIfFunction = {
52146
52146
  output: 3,
52147
52147
  description: {
52148
52148
  en: "Count with greater-than-or-equal condition",
52149
- ja: "\u4EE5\u4E0A\u306E\u6761\u4EF6\u3067\u30AB\u30A6\u30F3\u30C8"
52149
+ ja: "以上の条件でカウント"
52150
52150
  }
52151
52151
  }
52152
52152
  ],
@@ -52168,7 +52168,7 @@ var countIfsFunction = {
52168
52168
  category: "statistical",
52169
52169
  description: {
52170
52170
  en: "Counts values that satisfy multiple range/criteria pairs.",
52171
- ja: "\u8907\u6570\u306E\u7BC4\u56F2\u3068\u6761\u4EF6\u3092\u3059\u3079\u3066\u6E80\u305F\u3059\u4EF6\u6570\u3092\u6570\u3048\u307E\u3059\u3002"
52171
+ ja: "複数の範囲と条件をすべて満たす件数を数えます。"
52172
52172
  },
52173
52173
  examples: ['COUNTIFS(A1:A10, "East", B1:B10, ">=2024")', "COUNTIFS(A1:A5, B1:B5, 1)"],
52174
52174
  samples: [
@@ -52177,7 +52177,7 @@ var countIfsFunction = {
52177
52177
  output: 2,
52178
52178
  description: {
52179
52179
  en: "Count with multiple criteria",
52180
- ja: "\u8907\u6570\u6761\u4EF6\u3067\u306E\u30AB\u30A6\u30F3\u30C8"
52180
+ ja: "複数条件でのカウント"
52181
52181
  }
52182
52182
  }
52183
52183
  ],
@@ -52211,7 +52211,7 @@ var countAFunction = {
52211
52211
  category: "statistical",
52212
52212
  description: {
52213
52213
  en: "Counts non-empty values, including text and booleans.",
52214
- ja: "\u6587\u5B57\u5217\u3084\u771F\u507D\u5024\u3092\u542B\u3080\u7A7A\u3067\u306A\u3044\u5024\u306E\u4EF6\u6570\u3092\u6570\u3048\u307E\u3059\u3002"
52214
+ ja: "文字列や真偽値を含む空でない値の件数を数えます。"
52215
52215
  },
52216
52216
  examples: ["COUNTA(A1:A10)", 'COUNTA(1, "text", TRUE, null)'],
52217
52217
  samples: [
@@ -52220,7 +52220,7 @@ var countAFunction = {
52220
52220
  output: 3,
52221
52221
  description: {
52222
52222
  en: "Count all non-empty values",
52223
- ja: "\u3059\u3079\u3066\u306E\u7A7A\u3067\u306A\u3044\u5024\u3092\u30AB\u30A6\u30F3\u30C8"
52223
+ ja: "すべての空でない値をカウント"
52224
52224
  }
52225
52225
  },
52226
52226
  {
@@ -52228,7 +52228,7 @@ var countAFunction = {
52228
52228
  output: 4,
52229
52229
  description: {
52230
52230
  en: "Empty string counts as non-empty",
52231
- ja: "\u7A7A\u6587\u5B57\u5217\u3082\u7A7A\u3067\u306A\u3044\u3068\u3057\u3066\u30AB\u30A6\u30F3\u30C8"
52231
+ ja: "空文字列も空でないとしてカウント"
52232
52232
  }
52233
52233
  },
52234
52234
  {
@@ -52236,7 +52236,7 @@ var countAFunction = {
52236
52236
  output: 3,
52237
52237
  description: {
52238
52238
  en: "Count numbers",
52239
- ja: "\u6570\u5024\u3092\u30AB\u30A6\u30F3\u30C8"
52239
+ ja: "数値をカウント"
52240
52240
  }
52241
52241
  }
52242
52242
  ],
@@ -52252,7 +52252,7 @@ var countBlankFunction = {
52252
52252
  category: "statistical",
52253
52253
  description: {
52254
52254
  en: "Counts empty cells within the provided ranges.",
52255
- ja: "\u6307\u5B9A\u3057\u305F\u7BC4\u56F2\u5185\u306E\u7A7A\u30BB\u30EB\u3092\u6570\u3048\u307E\u3059\u3002"
52255
+ ja: "指定した範囲内の空セルを数えます。"
52256
52256
  },
52257
52257
  examples: ["COUNTBLANK(A1:A10)", "COUNTBLANK(A1:C3)"],
52258
52258
  samples: [
@@ -52261,7 +52261,7 @@ var countBlankFunction = {
52261
52261
  output: 2,
52262
52262
  description: {
52263
52263
  en: "Count null and empty string",
52264
- ja: "null\u3068\u7A7A\u6587\u5B57\u5217\u3092\u30AB\u30A6\u30F3\u30C8"
52264
+ ja: "nullと空文字列をカウント"
52265
52265
  }
52266
52266
  },
52267
52267
  {
@@ -52269,7 +52269,7 @@ var countBlankFunction = {
52269
52269
  output: 0,
52270
52270
  description: {
52271
52271
  en: "No blank values",
52272
- ja: "\u7A7A\u306E\u5024\u306A\u3057"
52272
+ ja: "空の値なし"
52273
52273
  }
52274
52274
  }
52275
52275
  ],
@@ -52285,7 +52285,7 @@ var medianFunction = {
52285
52285
  category: "statistical",
52286
52286
  description: {
52287
52287
  en: "Returns the median of numeric arguments, ignoring non-numeric values.",
52288
- ja: "\u6570\u5024\u4EE5\u5916\u3092\u7121\u8996\u3057\u3066\u5F15\u6570\u306E\u4E2D\u592E\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
52288
+ ja: "数値以外を無視して引数の中央値を返します。"
52289
52289
  },
52290
52290
  examples: ["MEDIAN(1, 3, 5)", "MEDIAN(A1:A9)"],
52291
52291
  samples: [
@@ -52294,7 +52294,7 @@ var medianFunction = {
52294
52294
  output: 3,
52295
52295
  description: {
52296
52296
  en: "Median of odd count of numbers",
52297
- ja: "\u5947\u6570\u500B\u306E\u6570\u5024\u306E\u4E2D\u592E\u5024"
52297
+ ja: "奇数個の数値の中央値"
52298
52298
  }
52299
52299
  },
52300
52300
  {
@@ -52302,7 +52302,7 @@ var medianFunction = {
52302
52302
  output: 2.5,
52303
52303
  description: {
52304
52304
  en: "Median of even count (average of middle two)",
52305
- ja: "\u5076\u6570\u500B\u306E\u4E2D\u592E\u5024\uFF08\u4E2D\u592E2\u3064\u306E\u5E73\u5747\uFF09"
52305
+ ja: "偶数個の中央値(中央2つの平均)"
52306
52306
  }
52307
52307
  },
52308
52308
  {
@@ -52310,7 +52310,7 @@ var medianFunction = {
52310
52310
  output: 20,
52311
52311
  description: {
52312
52312
  en: "Median of unsorted values",
52313
- ja: "\u672A\u30BD\u30FC\u30C8\u5024\u306E\u4E2D\u592E\u5024"
52313
+ ja: "未ソート値の中央値"
52314
52314
  }
52315
52315
  }
52316
52316
  ],
@@ -52334,7 +52334,7 @@ var modeFunction = {
52334
52334
  category: "statistical",
52335
52335
  description: {
52336
52336
  en: "Returns the most frequently occurring numeric value, preferring the smallest on ties.",
52337
- ja: "\u6700\u3082\u983B\u51FA\u3059\u308B\u6570\u5024\u3092\u8FD4\u3057\u3001\u540C\u6570\u306E\u5834\u5408\u306F\u6700\u5C0F\u5024\u3092\u9078\u629E\u3057\u307E\u3059\u3002"
52337
+ ja: "最も頻出する数値を返し、同数の場合は最小値を選択します。"
52338
52338
  },
52339
52339
  examples: ["MODE(1, 2, 2, 3)", "MODE(A1:A10)"],
52340
52340
  samples: [
@@ -52343,7 +52343,7 @@ var modeFunction = {
52343
52343
  output: 3,
52344
52344
  description: {
52345
52345
  en: "Most frequent value",
52346
- ja: "\u6700\u3082\u983B\u7E41\u306B\u51FA\u73FE\u3059\u308B\u5024"
52346
+ ja: "最も頻繁に出現する値"
52347
52347
  }
52348
52348
  },
52349
52349
  {
@@ -52351,7 +52351,7 @@ var modeFunction = {
52351
52351
  output: 5,
52352
52352
  description: {
52353
52353
  en: "Smallest value when tied",
52354
- ja: "\u540C\u6570\u306E\u5834\u5408\u306F\u6700\u5C0F\u5024"
52354
+ ja: "同数の場合は最小値"
52355
52355
  }
52356
52356
  },
52357
52357
  {
@@ -52359,7 +52359,7 @@ var modeFunction = {
52359
52359
  output: 7,
52360
52360
  description: {
52361
52361
  en: "Clear mode",
52362
- ja: "\u660E\u78BA\u306A\u6700\u983B\u5024"
52362
+ ja: "明確な最頻値"
52363
52363
  }
52364
52364
  }
52365
52365
  ],
@@ -52400,7 +52400,7 @@ var varianceFunction = {
52400
52400
  category: "statistical",
52401
52401
  description: {
52402
52402
  en: "Calculates the sample variance of numeric arguments.",
52403
- ja: "\u6570\u5024\u5F15\u6570\u306E\u6A19\u672C\u5206\u6563\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
52403
+ ja: "数値引数の標本分散を計算します。"
52404
52404
  },
52405
52405
  examples: ["VAR(1, 3, 5)", "VAR(A1:A10)"],
52406
52406
  samples: [
@@ -52409,7 +52409,7 @@ var varianceFunction = {
52409
52409
  output: 6.67,
52410
52410
  description: {
52411
52411
  en: "Sample variance",
52412
- ja: "\u6A19\u672C\u5206\u6563"
52412
+ ja: "標本分散"
52413
52413
  }
52414
52414
  },
52415
52415
  {
@@ -52417,7 +52417,7 @@ var varianceFunction = {
52417
52417
  output: 100,
52418
52418
  description: {
52419
52419
  en: "Variance of evenly spaced values",
52420
- ja: "\u7B49\u9593\u9694\u306E\u5024\u306E\u5206\u6563"
52420
+ ja: "等間隔の値の分散"
52421
52421
  }
52422
52422
  }
52423
52423
  ],
@@ -52438,7 +52438,7 @@ var variancePopulationFunction = {
52438
52438
  category: "statistical",
52439
52439
  description: {
52440
52440
  en: "Calculates the population variance of numeric arguments.",
52441
- ja: "\u6570\u5024\u5F15\u6570\u306E\u6BCD\u5206\u6563\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
52441
+ ja: "数値引数の母分散を計算します。"
52442
52442
  },
52443
52443
  examples: ["VARP(1, 3, 5)", "VARP(A1:A10)"],
52444
52444
  samples: [
@@ -52447,7 +52447,7 @@ var variancePopulationFunction = {
52447
52447
  output: 5,
52448
52448
  description: {
52449
52449
  en: "Population variance",
52450
- ja: "\u6BCD\u5206\u6563"
52450
+ ja: "母分散"
52451
52451
  }
52452
52452
  },
52453
52453
  {
@@ -52455,7 +52455,7 @@ var variancePopulationFunction = {
52455
52455
  output: 66.67,
52456
52456
  description: {
52457
52457
  en: "Population variance of evenly spaced values",
52458
- ja: "\u7B49\u9593\u9694\u306E\u5024\u306E\u6BCD\u5206\u6563"
52458
+ ja: "等間隔の値の母分散"
52459
52459
  }
52460
52460
  }
52461
52461
  ],
@@ -52476,7 +52476,7 @@ var standardDeviationFunction = {
52476
52476
  category: "statistical",
52477
52477
  description: {
52478
52478
  en: "Calculates the sample standard deviation of numeric arguments.",
52479
- ja: "\u6570\u5024\u5F15\u6570\u306E\u6A19\u672C\u6A19\u6E96\u504F\u5DEE\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
52479
+ ja: "数値引数の標本標準偏差を計算します。"
52480
52480
  },
52481
52481
  examples: ["STDEV(1, 3, 5)", "STDEV(A1:A10)"],
52482
52482
  samples: [
@@ -52485,7 +52485,7 @@ var standardDeviationFunction = {
52485
52485
  output: 2.58,
52486
52486
  description: {
52487
52487
  en: "Sample standard deviation",
52488
- ja: "\u6A19\u672C\u6A19\u6E96\u504F\u5DEE"
52488
+ ja: "標本標準偏差"
52489
52489
  }
52490
52490
  },
52491
52491
  {
@@ -52493,7 +52493,7 @@ var standardDeviationFunction = {
52493
52493
  output: 10,
52494
52494
  description: {
52495
52495
  en: "Standard deviation of evenly spaced values",
52496
- ja: "\u7B49\u9593\u9694\u306E\u5024\u306E\u6A19\u6E96\u504F\u5DEE"
52496
+ ja: "等間隔の値の標準偏差"
52497
52497
  }
52498
52498
  }
52499
52499
  ],
@@ -52515,7 +52515,7 @@ var standardDeviationPopulationFunction = {
52515
52515
  category: "statistical",
52516
52516
  description: {
52517
52517
  en: "Calculates the population standard deviation of numeric arguments.",
52518
- ja: "\u6570\u5024\u5F15\u6570\u306E\u6BCD\u6A19\u6E96\u504F\u5DEE\u3092\u8A08\u7B97\u3057\u307E\u3059\u3002"
52518
+ ja: "数値引数の母標準偏差を計算します。"
52519
52519
  },
52520
52520
  examples: ["STDEVP(1, 3, 5)", "STDEVP(A1:A10)"],
52521
52521
  samples: [
@@ -52524,7 +52524,7 @@ var standardDeviationPopulationFunction = {
52524
52524
  output: 2.24,
52525
52525
  description: {
52526
52526
  en: "Population standard deviation",
52527
- ja: "\u6BCD\u6A19\u6E96\u504F\u5DEE"
52527
+ ja: "母標準偏差"
52528
52528
  }
52529
52529
  },
52530
52530
  {
@@ -52532,7 +52532,7 @@ var standardDeviationPopulationFunction = {
52532
52532
  output: 8.16,
52533
52533
  description: {
52534
52534
  en: "Population SD of evenly spaced values",
52535
- ja: "\u7B49\u9593\u9694\u306E\u5024\u306E\u6BCD\u6A19\u6E96\u504F\u5DEE"
52535
+ ja: "等間隔の値の母標準偏差"
52536
52536
  }
52537
52537
  }
52538
52538
  ],
@@ -52735,7 +52735,7 @@ var dSumFunction = {
52735
52735
  category: "database",
52736
52736
  description: {
52737
52737
  en: "Sums numeric entries in a database column that satisfy the criteria.",
52738
- ja: "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u5217\u306E\u6570\u5024\u3092\u5408\u8A08\u3057\u307E\u3059\u3002"
52738
+ ja: "条件を満たすデータベース列の数値を合計します。"
52739
52739
  },
52740
52740
  examples: ['DSUM(A1:C10, "Sales", E1:F2)'],
52741
52741
  samples: [
@@ -52744,7 +52744,7 @@ var dSumFunction = {
52744
52744
  output: 350,
52745
52745
  description: {
52746
52746
  en: "Sum amounts where Amount > 100 (200 + 150 = 350)",
52747
- ja: "\u91D1\u984D\u304C100\u3088\u308A\u5927\u304D\u3044\u5408\u8A08\uFF08200 + 150 = 350\uFF09"
52747
+ ja: "金額が100より大きい合計(200 + 150 = 350"
52748
52748
  }
52749
52749
  },
52750
52750
  {
@@ -52752,7 +52752,7 @@ var dSumFunction = {
52752
52752
  output: 225,
52753
52753
  description: {
52754
52754
  en: "Sum all sales >= 50 (50 + 100 + 75 = 225)",
52755
- ja: "50\u4EE5\u4E0A\u306E\u58F2\u4E0A\u306E\u5408\u8A08\uFF0850 + 100 + 75 = 225\uFF09"
52755
+ ja: "50以上の売上の合計(50 + 100 + 75 = 225"
52756
52756
  }
52757
52757
  },
52758
52758
  {
@@ -52760,7 +52760,7 @@ var dSumFunction = {
52760
52760
  output: 30,
52761
52761
  description: {
52762
52762
  en: "Sum prices where Price < 30 (10 + 20 = 30)",
52763
- ja: "\u4FA1\u683C\u304C30\u672A\u6E80\u306E\u5408\u8A08\uFF0810 + 20 = 30\uFF09"
52763
+ ja: "価格が30未満の合計(10 + 20 = 30"
52764
52764
  }
52765
52765
  }
52766
52766
  ],
@@ -52774,7 +52774,7 @@ var dProductFunction = {
52774
52774
  category: "database",
52775
52775
  description: {
52776
52776
  en: "Multiplies numeric entries in a database column that satisfy the criteria.",
52777
- ja: "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u5217\u306E\u6570\u5024\u3092\u639B\u3051\u5408\u308F\u305B\u307E\u3059\u3002"
52777
+ ja: "条件を満たすデータベース列の数値を掛け合わせます。"
52778
52778
  },
52779
52779
  examples: ['DPRODUCT(A1:C10, "Sales", E1:F2)'],
52780
52780
  samples: [
@@ -52783,7 +52783,7 @@ var dProductFunction = {
52783
52783
  output: 12,
52784
52784
  description: {
52785
52785
  en: "Product of factors where Factor > 2 (3 * 4 = 12)",
52786
- ja: "\u56E0\u6570\u304C2\u3088\u308A\u5927\u304D\u3044\u7A4D\uFF083 * 4 = 12\uFF09"
52786
+ ja: "因数が2より大きい積(3 * 4 = 12"
52787
52787
  }
52788
52788
  },
52789
52789
  {
@@ -52791,7 +52791,7 @@ var dProductFunction = {
52791
52791
  output: 10,
52792
52792
  description: {
52793
52793
  en: "Product of multipliers <= 5 (2 * 5 = 10)",
52794
- ja: "\u4E57\u6570\u304C5\u4EE5\u4E0B\u306E\u7A4D\uFF082 * 5 = 10\uFF09"
52794
+ ja: "乗数が5以下の積(2 * 5 = 10"
52795
52795
  }
52796
52796
  },
52797
52797
  {
@@ -52799,7 +52799,7 @@ var dProductFunction = {
52799
52799
  output: 6,
52800
52800
  description: {
52801
52801
  en: "Product of all values >= 1 (1 * 2 * 3 = 6)",
52802
- ja: "1\u4EE5\u4E0A\u306E\u3059\u3079\u3066\u306E\u5024\u306E\u7A4D\uFF081 * 2 * 3 = 6\uFF09"
52802
+ ja: "1以上のすべての値の積(1 * 2 * 3 = 6"
52803
52803
  }
52804
52804
  }
52805
52805
  ],
@@ -52815,7 +52815,7 @@ var dAverageFunction = {
52815
52815
  category: "database",
52816
52816
  description: {
52817
52817
  en: "Returns the mean of numeric entries in a database column that satisfy the criteria.",
52818
- ja: "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u5217\u306E\u6570\u5024\u306E\u5E73\u5747\u3092\u8FD4\u3057\u307E\u3059\u3002"
52818
+ ja: "条件を満たすデータベース列の数値の平均を返します。"
52819
52819
  },
52820
52820
  examples: ['DAVERAGE(A1:C10, "Sales", E1:F2)'],
52821
52821
  samples: [
@@ -52824,7 +52824,7 @@ var dAverageFunction = {
52824
52824
  output: 32.5,
52825
52825
  description: {
52826
52826
  en: "Average age where Age > 25 (30 and 35, average is 32.5)",
52827
- ja: "\u5E74\u9F62\u304C25\u3088\u308A\u5927\u304D\u3044\u5E73\u5747\uFF0830\u306835\u3001\u5E73\u5747\u306F32.5\uFF09"
52827
+ ja: "年齢が25より大きい平均(30と35、平均は32.5"
52828
52828
  }
52829
52829
  },
52830
52830
  {
@@ -52832,7 +52832,7 @@ var dAverageFunction = {
52832
52832
  output: 100,
52833
52833
  description: {
52834
52834
  en: "Average price where Product is A",
52835
- ja: "\u88FD\u54C1\u304CA\u306E\u4FA1\u683C\u306E\u5E73\u5747"
52835
+ ja: "製品がAの価格の平均"
52836
52836
  }
52837
52837
  },
52838
52838
  {
@@ -52840,7 +52840,7 @@ var dAverageFunction = {
52840
52840
  output: 25,
52841
52841
  description: {
52842
52842
  en: "Average quantity where Qty >= 20 (20 and 30, average is 25)",
52843
- ja: "\u6570\u91CF\u304C20\u4EE5\u4E0A\u306E\u5E73\u5747\uFF0820\u306830\u3001\u5E73\u5747\u306F25\uFF09"
52843
+ ja: "数量が20以上の平均(20と30、平均は25)"
52844
52844
  }
52845
52845
  }
52846
52846
  ],
@@ -52868,7 +52868,7 @@ var dCountFunction = {
52868
52868
  category: "database",
52869
52869
  description: {
52870
52870
  en: "Counts numeric entries in a database column that satisfy the criteria.",
52871
- ja: "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u5217\u306E\u6570\u5024\u306E\u4EF6\u6570\u3092\u8FD4\u3057\u307E\u3059\u3002"
52871
+ ja: "条件を満たすデータベース列の数値の件数を返します。"
52872
52872
  },
52873
52873
  examples: ['DCOUNT(A1:C10, "Sales", E1:F2)'],
52874
52874
  samples: [
@@ -52877,7 +52877,7 @@ var dCountFunction = {
52877
52877
  output: 2,
52878
52878
  description: {
52879
52879
  en: "Count ages greater than 25 (30 and 35, count is 2)",
52880
- ja: "25\u3088\u308A\u5927\u304D\u3044\u5E74\u9F62\u3092\u30AB\u30A6\u30F3\u30C8\uFF0830\u306835\u3001\u30AB\u30A6\u30F3\u30C8\u306F2\uFF09"
52880
+ ja: "25より大きい年齢をカウント(30と35、カウントは2)"
52881
52881
  }
52882
52882
  },
52883
52883
  {
@@ -52885,7 +52885,7 @@ var dCountFunction = {
52885
52885
  output: 2,
52886
52886
  description: {
52887
52887
  en: "Count prices >= 150 (150 and 200, count is 2)",
52888
- ja: "150\u4EE5\u4E0A\u306E\u4FA1\u683C\u3092\u30AB\u30A6\u30F3\u30C8\uFF08150\u3068200\u3001\u30AB\u30A6\u30F3\u30C8\u306F2\uFF09"
52888
+ ja: "150以上の価格をカウント(150と200、カウントは2)"
52889
52889
  }
52890
52890
  },
52891
52891
  {
@@ -52893,7 +52893,7 @@ var dCountFunction = {
52893
52893
  output: 3,
52894
52894
  description: {
52895
52895
  en: "Count all quantities less than 50 (all 3 match)",
52896
- ja: "50\u672A\u6E80\u306E\u6570\u91CF\u3092\u3059\u3079\u3066\u30AB\u30A6\u30F3\u30C8\uFF083\u3064\u3059\u3079\u3066\u4E00\u81F4\uFF09"
52896
+ ja: "50未満の数量をすべてカウント(3つすべて一致)"
52897
52897
  }
52898
52898
  }
52899
52899
  ],
@@ -52933,7 +52933,7 @@ var dMaxFunction = {
52933
52933
  category: "database",
52934
52934
  description: {
52935
52935
  en: "Returns the largest numeric entry in a database column that satisfies the criteria.",
52936
- ja: "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u5217\u3067\u6700\u5927\u306E\u6570\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
52936
+ ja: "条件を満たすデータベース列で最大の数値を返します。"
52937
52937
  },
52938
52938
  examples: ['DMAX(A1:C10, "Sales", E1:F2)'],
52939
52939
  samples: [
@@ -52942,7 +52942,7 @@ var dMaxFunction = {
52942
52942
  output: "Descriptive",
52943
52943
  description: {
52944
52944
  en: "Find maximum age from database A1:B4 where criteria in D1:E2 match",
52945
- ja: "\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9A1:B4\u304B\u3089\u6761\u4EF6D1:E2\u306B\u4E00\u81F4\u3059\u308B\u5E74\u9F62\u306E\u6700\u5927\u5024\u3092\u691C\u7D22"
52945
+ ja: "データベースA1:B4から条件D1:E2に一致する年齢の最大値を検索"
52946
52946
  }
52947
52947
  },
52948
52948
  {
@@ -52950,7 +52950,7 @@ var dMaxFunction = {
52950
52950
  output: "Descriptive",
52951
52951
  description: {
52952
52952
  en: "Find maximum value in column 2 matching criteria",
52953
- ja: "\u6761\u4EF6\u306B\u4E00\u81F4\u3059\u308B2\u5217\u76EE\u306E\u6700\u5927\u5024\u3092\u691C\u7D22"
52953
+ ja: "条件に一致する2列目の最大値を検索"
52954
52954
  }
52955
52955
  },
52956
52956
  {
@@ -52958,7 +52958,7 @@ var dMaxFunction = {
52958
52958
  output: "Descriptive",
52959
52959
  description: {
52960
52960
  en: "Find maximum sales value matching multiple criteria",
52961
- ja: "\u8907\u6570\u6761\u4EF6\u306B\u4E00\u81F4\u3059\u308B\u58F2\u4E0A\u306E\u6700\u5927\u5024\u3092\u691C\u7D22"
52961
+ ja: "複数条件に一致する売上の最大値を検索"
52962
52962
  }
52963
52963
  }
52964
52964
  ],
@@ -52977,7 +52977,7 @@ var dMinFunction = {
52977
52977
  category: "database",
52978
52978
  description: {
52979
52979
  en: "Returns the smallest numeric entry in a database column that satisfies the criteria.",
52980
- ja: "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9\u5217\u3067\u6700\u5C0F\u306E\u6570\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
52980
+ ja: "条件を満たすデータベース列で最小の数値を返します。"
52981
52981
  },
52982
52982
  examples: ['DMIN(A1:C10, "Sales", E1:F2)'],
52983
52983
  samples: [
@@ -52986,7 +52986,7 @@ var dMinFunction = {
52986
52986
  output: "Descriptive",
52987
52987
  description: {
52988
52988
  en: "Find minimum age from database A1:B4 where criteria in D1:E2 match",
52989
- ja: "\u30C7\u30FC\u30BF\u30D9\u30FC\u30B9A1:B4\u304B\u3089\u6761\u4EF6D1:E2\u306B\u4E00\u81F4\u3059\u308B\u5E74\u9F62\u306E\u6700\u5C0F\u5024\u3092\u691C\u7D22"
52989
+ ja: "データベースA1:B4から条件D1:E2に一致する年齢の最小値を検索"
52990
52990
  }
52991
52991
  },
52992
52992
  {
@@ -52994,7 +52994,7 @@ var dMinFunction = {
52994
52994
  output: "Descriptive",
52995
52995
  description: {
52996
52996
  en: "Find minimum value in column 2 matching criteria",
52997
- ja: "\u6761\u4EF6\u306B\u4E00\u81F4\u3059\u308B2\u5217\u76EE\u306E\u6700\u5C0F\u5024\u3092\u691C\u7D22"
52997
+ ja: "条件に一致する2列目の最小値を検索"
52998
52998
  }
52999
52999
  },
53000
53000
  {
@@ -53002,7 +53002,7 @@ var dMinFunction = {
53002
53002
  output: "Descriptive",
53003
53003
  description: {
53004
53004
  en: "Find minimum sales value matching multiple criteria",
53005
- ja: "\u8907\u6570\u6761\u4EF6\u306B\u4E00\u81F4\u3059\u308B\u58F2\u4E0A\u306E\u6700\u5C0F\u5024\u3092\u691C\u7D22"
53005
+ ja: "複数条件に一致する売上の最小値を検索"
53006
53006
  }
53007
53007
  }
53008
53008
  ],
@@ -53055,7 +53055,7 @@ var dStdevFunction = {
53055
53055
  category: "database",
53056
53056
  description: {
53057
53057
  en: "Returns the sample standard deviation of numeric entries matching the criteria.",
53058
- ja: "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u6570\u5024\u306E\u6A19\u672C\u6A19\u6E96\u504F\u5DEE\u3092\u8FD4\u3057\u307E\u3059\u3002"
53058
+ ja: "条件を満たす数値の標本標準偏差を返します。"
53059
53059
  },
53060
53060
  examples: ['DSTDEV(A1:C10, "Sales", E1:F2)'],
53061
53061
  samples: [
@@ -53064,7 +53064,7 @@ var dStdevFunction = {
53064
53064
  output: 10,
53065
53065
  description: {
53066
53066
  en: "Sample standard deviation of scores >= 80 (80, 90, 100)",
53067
- ja: "80\u4EE5\u4E0A\u306E\u30B9\u30B3\u30A2\u306E\u6A19\u672C\u6A19\u6E96\u504F\u5DEE\uFF0880\u300190\u3001100\uFF09"
53067
+ ja: "80以上のスコアの標本標準偏差(80、90、100)"
53068
53068
  }
53069
53069
  },
53070
53070
  {
@@ -53072,7 +53072,7 @@ var dStdevFunction = {
53072
53072
  output: 7.071,
53073
53073
  description: {
53074
53074
  en: "Sample standard deviation where Value > 10 (20, 30)",
53075
- ja: "\u5024\u304C10\u3088\u308A\u5927\u304D\u3044\u6A19\u672C\u6A19\u6E96\u504F\u5DEE\uFF0820\u300130\uFF09"
53075
+ ja: "値が10より大きい標本標準偏差(20、30)"
53076
53076
  }
53077
53077
  },
53078
53078
  {
@@ -53080,7 +53080,7 @@ var dStdevFunction = {
53080
53080
  output: 5,
53081
53081
  description: {
53082
53082
  en: "Sample standard deviation of all measures >= 5",
53083
- ja: "5\u4EE5\u4E0A\u306E\u3059\u3079\u3066\u306E\u6E2C\u5B9A\u5024\u306E\u6A19\u672C\u6A19\u6E96\u504F\u5DEE"
53083
+ ja: "5以上のすべての測定値の標本標準偏差"
53084
53084
  }
53085
53085
  }
53086
53086
  ],
@@ -53098,7 +53098,7 @@ var dStdevpFunction = {
53098
53098
  category: "database",
53099
53099
  description: {
53100
53100
  en: "Returns the population standard deviation of numeric entries matching the criteria.",
53101
- ja: "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u6570\u5024\u306E\u6BCD\u96C6\u56E3\u6A19\u6E96\u504F\u5DEE\u3092\u8FD4\u3057\u307E\u3059\u3002"
53101
+ ja: "条件を満たす数値の母集団標準偏差を返します。"
53102
53102
  },
53103
53103
  examples: ['DSTDEVP(A1:C10, "Sales", E1:F2)'],
53104
53104
  samples: [
@@ -53107,7 +53107,7 @@ var dStdevpFunction = {
53107
53107
  output: 8.165,
53108
53108
  description: {
53109
53109
  en: "Population standard deviation of scores >= 80 (80, 90, 100)",
53110
- ja: "80\u4EE5\u4E0A\u306E\u30B9\u30B3\u30A2\u306E\u6BCD\u96C6\u56E3\u6A19\u6E96\u504F\u5DEE\uFF0880\u300190\u3001100\uFF09"
53110
+ ja: "80以上のスコアの母集団標準偏差(80、90、100)"
53111
53111
  }
53112
53112
  },
53113
53113
  {
@@ -53115,7 +53115,7 @@ var dStdevpFunction = {
53115
53115
  output: 5,
53116
53116
  description: {
53117
53117
  en: "Population standard deviation where Value > 10 (20, 30)",
53118
- ja: "\u5024\u304C10\u3088\u308A\u5927\u304D\u3044\u6BCD\u96C6\u56E3\u6A19\u6E96\u504F\u5DEE\uFF0820\u300130\uFF09"
53118
+ ja: "値が10より大きい母集団標準偏差(20、30)"
53119
53119
  }
53120
53120
  },
53121
53121
  {
@@ -53123,7 +53123,7 @@ var dStdevpFunction = {
53123
53123
  output: 1.633,
53124
53124
  description: {
53125
53125
  en: "Population standard deviation of all measures >= 2",
53126
- ja: "2\u4EE5\u4E0A\u306E\u3059\u3079\u3066\u306E\u6E2C\u5B9A\u5024\u306E\u6BCD\u96C6\u56E3\u6A19\u6E96\u504F\u5DEE"
53126
+ ja: "2以上のすべての測定値の母集団標準偏差"
53127
53127
  }
53128
53128
  }
53129
53129
  ],
@@ -53141,7 +53141,7 @@ var dVarFunction = {
53141
53141
  category: "database",
53142
53142
  description: {
53143
53143
  en: "Returns the sample variance of numeric entries matching the criteria.",
53144
- ja: "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u6570\u5024\u306E\u6A19\u672C\u5206\u6563\u3092\u8FD4\u3057\u307E\u3059\u3002"
53144
+ ja: "条件を満たす数値の標本分散を返します。"
53145
53145
  },
53146
53146
  examples: ['DVAR(A1:C10, "Sales", E1:F2)'],
53147
53147
  samples: [
@@ -53150,7 +53150,7 @@ var dVarFunction = {
53150
53150
  output: 100,
53151
53151
  description: {
53152
53152
  en: "Sample variance of scores >= 80 (80, 90, 100)",
53153
- ja: "80\u4EE5\u4E0A\u306E\u30B9\u30B3\u30A2\u306E\u6A19\u672C\u5206\u6563\uFF0880\u300190\u3001100\uFF09"
53153
+ ja: "80以上のスコアの標本分散(80、90、100)"
53154
53154
  }
53155
53155
  },
53156
53156
  {
@@ -53158,7 +53158,7 @@ var dVarFunction = {
53158
53158
  output: 50,
53159
53159
  description: {
53160
53160
  en: "Sample variance where Value > 10 (20, 30)",
53161
- ja: "\u5024\u304C10\u3088\u308A\u5927\u304D\u3044\u6A19\u672C\u5206\u6563\uFF0820\u300130\uFF09"
53161
+ ja: "値が10より大きい標本分散(20、30)"
53162
53162
  }
53163
53163
  },
53164
53164
  {
@@ -53166,7 +53166,7 @@ var dVarFunction = {
53166
53166
  output: 25,
53167
53167
  description: {
53168
53168
  en: "Sample variance of all measures >= 5 (5, 10, 15)",
53169
- ja: "5\u4EE5\u4E0A\u306E\u3059\u3079\u3066\u306E\u6E2C\u5B9A\u5024\u306E\u6A19\u672C\u5206\u6563\uFF085\u300110\u300115\uFF09"
53169
+ ja: "5以上のすべての測定値の標本分散(5、10、15)"
53170
53170
  }
53171
53171
  }
53172
53172
  ],
@@ -53184,7 +53184,7 @@ var dVarpFunction = {
53184
53184
  category: "database",
53185
53185
  description: {
53186
53186
  en: "Returns the population variance of numeric entries matching the criteria.",
53187
- ja: "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u6570\u5024\u306E\u6BCD\u96C6\u56E3\u5206\u6563\u3092\u8FD4\u3057\u307E\u3059\u3002"
53187
+ ja: "条件を満たす数値の母集団分散を返します。"
53188
53188
  },
53189
53189
  examples: ['DVARP(A1:C10, "Sales", E1:F2)'],
53190
53190
  samples: [
@@ -53193,7 +53193,7 @@ var dVarpFunction = {
53193
53193
  output: 66.667,
53194
53194
  description: {
53195
53195
  en: "Population variance of scores >= 80 (80, 90, 100)",
53196
- ja: "80\u4EE5\u4E0A\u306E\u30B9\u30B3\u30A2\u306E\u6BCD\u96C6\u56E3\u5206\u6563\uFF0880\u300190\u3001100\uFF09"
53196
+ ja: "80以上のスコアの母集団分散(80、90、100)"
53197
53197
  }
53198
53198
  },
53199
53199
  {
@@ -53201,7 +53201,7 @@ var dVarpFunction = {
53201
53201
  output: 25,
53202
53202
  description: {
53203
53203
  en: "Population variance where Value > 10 (20, 30)",
53204
- ja: "\u5024\u304C10\u3088\u308A\u5927\u304D\u3044\u6BCD\u96C6\u56E3\u5206\u6563\uFF0820\u300130\uFF09"
53204
+ ja: "値が10より大きい母集団分散(20、30)"
53205
53205
  }
53206
53206
  },
53207
53207
  {
@@ -53209,7 +53209,7 @@ var dVarpFunction = {
53209
53209
  output: 2.667,
53210
53210
  description: {
53211
53211
  en: "Population variance of all measures >= 2 (2, 4, 6)",
53212
- ja: "2\u4EE5\u4E0A\u306E\u3059\u3079\u3066\u306E\u6E2C\u5B9A\u5024\u306E\u6BCD\u96C6\u56E3\u5206\u6563\uFF082\u30014\u30016\uFF09"
53212
+ ja: "2以上のすべての測定値の母集団分散(2、4、6)"
53213
53213
  }
53214
53214
  }
53215
53215
  ],
@@ -53229,7 +53229,7 @@ var vlookupFunction = {
53229
53229
  category: "lookup",
53230
53230
  description: {
53231
53231
  en: "Searches the first column of a table for a value and returns data from another column.",
53232
- ja: "\u8868\u306E\u6700\u521D\u306E\u5217\u3067\u5024\u3092\u691C\u7D22\u3057\u3001\u5225\u306E\u5217\u306E\u30C7\u30FC\u30BF\u3092\u8FD4\u3057\u307E\u3059\u3002"
53232
+ ja: "表の最初の列で値を検索し、別の列のデータを返します。"
53233
53233
  },
53234
53234
  examples: ["VLOOKUP(A2, Table1, 3, FALSE)", "VLOOKUP(5, A1:B10, 2)"],
53235
53235
  samples: [
@@ -53238,7 +53238,7 @@ var vlookupFunction = {
53238
53238
  output: "B",
53239
53239
  description: {
53240
53240
  en: "Exact match lookup in a 3x2 table",
53241
- ja: "3x2\u30C6\u30FC\u30D6\u30EB\u3067\u306E\u5B8C\u5168\u4E00\u81F4\u691C\u7D22"
53241
+ ja: "3x2テーブルでの完全一致検索"
53242
53242
  }
53243
53243
  },
53244
53244
  {
@@ -53246,7 +53246,7 @@ var vlookupFunction = {
53246
53246
  output: 20,
53247
53247
  description: {
53248
53248
  en: "Approximate match returns largest value less than or equal to lookup",
53249
- ja: "\u8FD1\u4F3C\u4E00\u81F4\u306F\u691C\u7D22\u5024\u4EE5\u4E0B\u306E\u6700\u5927\u5024\u3092\u8FD4\u3059"
53249
+ ja: "近似一致は検索値以下の最大値を返す"
53250
53250
  }
53251
53251
  },
53252
53252
  {
@@ -53254,7 +53254,7 @@ var vlookupFunction = {
53254
53254
  output: 10,
53255
53255
  description: {
53256
53256
  en: "Text lookup with exact match",
53257
- ja: "\u30C6\u30AD\u30B9\u30C8\u691C\u7D22\u3067\u306E\u5B8C\u5168\u4E00\u81F4"
53257
+ ja: "テキスト検索での完全一致"
53258
53258
  }
53259
53259
  }
53260
53260
  ],
@@ -53316,7 +53316,7 @@ var hlookupFunction = {
53316
53316
  category: "lookup",
53317
53317
  description: {
53318
53318
  en: "Searches the first row of a table for a value and returns data from another row.",
53319
- ja: "\u8868\u306E\u6700\u521D\u306E\u884C\u3067\u5024\u3092\u691C\u7D22\u3057\u3001\u5225\u306E\u884C\u306E\u30C7\u30FC\u30BF\u3092\u8FD4\u3057\u307E\u3059\u3002"
53319
+ ja: "表の最初の行で値を検索し、別の行のデータを返します。"
53320
53320
  },
53321
53321
  examples: ["HLOOKUP(A1, Table1, 2, FALSE)", "HLOOKUP(5, A1:J2, 2)"],
53322
53322
  samples: [
@@ -53325,7 +53325,7 @@ var hlookupFunction = {
53325
53325
  output: 20,
53326
53326
  description: {
53327
53327
  en: "Exact match in horizontal table",
53328
- ja: "\u6A2A\u65B9\u5411\u30C6\u30FC\u30D6\u30EB\u3067\u306E\u5B8C\u5168\u4E00\u81F4"
53328
+ ja: "横方向テーブルでの完全一致"
53329
53329
  }
53330
53330
  },
53331
53331
  {
@@ -53333,7 +53333,7 @@ var hlookupFunction = {
53333
53333
  output: "Y",
53334
53334
  description: {
53335
53335
  en: "Approximate match in first row",
53336
- ja: "\u6700\u521D\u306E\u884C\u3067\u306E\u8FD1\u4F3C\u4E00\u81F4"
53336
+ ja: "最初の行での近似一致"
53337
53337
  }
53338
53338
  },
53339
53339
  {
@@ -53341,7 +53341,7 @@ var hlookupFunction = {
53341
53341
  output: 10,
53342
53342
  description: {
53343
53343
  en: "Text lookup in horizontal header",
53344
- ja: "\u6A2A\u65B9\u5411\u30D8\u30C3\u30C0\u30FC\u3067\u306E\u30C6\u30AD\u30B9\u30C8\u691C\u7D22"
53344
+ ja: "横方向ヘッダーでのテキスト検索"
53345
53345
  }
53346
53346
  }
53347
53347
  ],
@@ -53412,7 +53412,7 @@ var lookupFunction = {
53412
53412
  category: "lookup",
53413
53413
  description: {
53414
53414
  en: "Searches for a value in a vector or array and returns the corresponding result.",
53415
- ja: "\u30D9\u30AF\u30BF\u30FC\u307E\u305F\u306F\u914D\u5217\u304B\u3089\u5024\u3092\u691C\u7D22\u3057\u3001\u5BFE\u5FDC\u3059\u308B\u7D50\u679C\u3092\u8FD4\u3057\u307E\u3059\u3002"
53415
+ ja: "ベクターまたは配列から値を検索し、対応する結果を返します。"
53416
53416
  },
53417
53417
  examples: ["LOOKUP(5, A1:A10, B1:B10)", 'LOOKUP("Key", A1:B2)'],
53418
53418
  samples: [
@@ -53421,7 +53421,7 @@ var lookupFunction = {
53421
53421
  output: 20,
53422
53422
  description: {
53423
53423
  en: "Exact match with separate lookup and result vectors",
53424
- ja: "\u691C\u7D22\u30D9\u30AF\u30BF\u30FC\u3068\u7D50\u679C\u30D9\u30AF\u30BF\u30FC\u304C\u5225\u306E\u5B8C\u5168\u4E00\u81F4"
53424
+ ja: "検索ベクターと結果ベクターが別の完全一致"
53425
53425
  }
53426
53426
  },
53427
53427
  {
@@ -53429,7 +53429,7 @@ var lookupFunction = {
53429
53429
  output: 20,
53430
53430
  description: {
53431
53431
  en: "Approximate match finds largest value <= lookup",
53432
- ja: "\u8FD1\u4F3C\u4E00\u81F4\u306F\u691C\u7D22\u5024\u4EE5\u4E0B\u306E\u6700\u5927\u5024\u3092\u898B\u3064\u3051\u308B"
53432
+ ja: "近似一致は検索値以下の最大値を見つける"
53433
53433
  }
53434
53434
  },
53435
53435
  {
@@ -53437,7 +53437,7 @@ var lookupFunction = {
53437
53437
  output: 10,
53438
53438
  description: {
53439
53439
  en: "Lookup in a 2-column array",
53440
- ja: "2\u5217\u914D\u5217\u3067\u306E\u691C\u7D22"
53440
+ ja: "2列配列での検索"
53441
53441
  }
53442
53442
  }
53443
53443
  ],
@@ -53516,7 +53516,7 @@ var rowFunction = {
53516
53516
  category: "lookup",
53517
53517
  description: {
53518
53518
  en: "Returns the row number of a reference, or the current row when omitted.",
53519
- ja: "\u53C2\u7167\u306E\u884C\u756A\u53F7\u3001\u307E\u305F\u306F\u5F15\u6570\u7701\u7565\u6642\u306F\u73FE\u5728\u306E\u884C\u756A\u53F7\u3092\u8FD4\u3057\u307E\u3059\u3002"
53519
+ ja: "参照の行番号、または引数省略時は現在の行番号を返します。"
53520
53520
  },
53521
53521
  examples: ["ROW()", "ROW(A1)", "ROW(B3:C4)"],
53522
53522
  samples: [
@@ -53525,7 +53525,7 @@ var rowFunction = {
53525
53525
  output: 1,
53526
53526
  description: {
53527
53527
  en: "Returns the row of the formula cell (in this evaluator, origin row=1 for samples)",
53528
- ja: "\u5F0F\u30BB\u30EB\u306E\u884C\u756A\u53F7\u3092\u8FD4\u3057\u307E\u3059\uFF08samples \u3067\u306F origin \u304C 1 \u884C\u76EE\uFF09"
53528
+ ja: "式セルの行番号を返します(samples では origin 1 行目)"
53529
53529
  }
53530
53530
  },
53531
53531
  {
@@ -53533,7 +53533,7 @@ var rowFunction = {
53533
53533
  output: 10,
53534
53534
  description: {
53535
53535
  en: "Returns the referenced row number",
53536
- ja: "\u53C2\u7167\u5148\u306E\u884C\u756A\u53F7\u3092\u8FD4\u3057\u307E\u3059"
53536
+ ja: "参照先の行番号を返します"
53537
53537
  }
53538
53538
  }
53539
53539
  ],
@@ -53561,7 +53561,7 @@ var matchFunction = {
53561
53561
  category: "lookup",
53562
53562
  description: {
53563
53563
  en: "Returns the position of a lookup value within a vector, supporting exact or approximate matches.",
53564
- ja: "\u691C\u7D22\u5024\u304C\u30D9\u30AF\u30BF\u30FC\u5185\u306E\u3069\u3053\u306B\u4F4D\u7F6E\u3059\u308B\u304B\u3092\u3001\u5B8C\u5168\u4E00\u81F4\u307E\u305F\u306F\u8FD1\u4F3C\u4E00\u81F4\u3067\u8FD4\u3057\u307E\u3059\u3002"
53564
+ ja: "検索値がベクター内のどこに位置するかを、完全一致または近似一致で返します。"
53565
53565
  },
53566
53566
  examples: ['MATCH("Key", A1:A10, 0)', "MATCH(5, A1:A10, 1)"],
53567
53567
  samples: [
@@ -53570,7 +53570,7 @@ var matchFunction = {
53570
53570
  output: 2,
53571
53571
  description: {
53572
53572
  en: "Exact match returns position (1-based index)",
53573
- ja: "\u5B8C\u5168\u4E00\u81F4\u306F\u4F4D\u7F6E\u3092\u8FD4\u3059\uFF081\u59CB\u307E\u308A\u306E\u30A4\u30F3\u30C7\u30C3\u30AF\u30B9\uFF09"
53573
+ ja: "完全一致は位置を返す(1始まりのインデックス)"
53574
53574
  }
53575
53575
  },
53576
53576
  {
@@ -53578,7 +53578,7 @@ var matchFunction = {
53578
53578
  output: 2,
53579
53579
  description: {
53580
53580
  en: "Match type 1 finds largest value less than or equal to lookup",
53581
- ja: "\u30DE\u30C3\u30C1\u30BF\u30A4\u30D71\u306F\u691C\u7D22\u5024\u4EE5\u4E0B\u306E\u6700\u5927\u5024\u3092\u898B\u3064\u3051\u308B"
53581
+ ja: "マッチタイプ1は検索値以下の最大値を見つける"
53582
53582
  }
53583
53583
  },
53584
53584
  {
@@ -53586,7 +53586,7 @@ var matchFunction = {
53586
53586
  output: 3,
53587
53587
  description: {
53588
53588
  en: "Match type -1 finds smallest value greater than or equal to lookup",
53589
- ja: "\u30DE\u30C3\u30C1\u30BF\u30A4\u30D7-1\u306F\u691C\u7D22\u5024\u4EE5\u4E0A\u306E\u6700\u5C0F\u5024\u3092\u898B\u3064\u3051\u308B"
53589
+ ja: "マッチタイプ-1は検索値以上の最小値を見つける"
53590
53590
  }
53591
53591
  }
53592
53592
  ],
@@ -53652,7 +53652,7 @@ var indexFunction = {
53652
53652
  name: "INDEX",
53653
53653
  description: {
53654
53654
  en: "Returns the value at a given row and column position within a range or array.",
53655
- ja: "\u7BC4\u56F2\u307E\u305F\u306F\u914D\u5217\u5185\u306E\u6307\u5B9A\u3057\u305F\u884C\u5217\u4F4D\u7F6E\u306E\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
53655
+ ja: "範囲または配列内の指定した行列位置の値を返します。"
53656
53656
  },
53657
53657
  examples: ["INDEX(A1:C3, 2, 3)", "INDEX(Table1, 1, 2)"],
53658
53658
  evaluate: (args, helpers) => {
@@ -53741,7 +53741,7 @@ var offsetFunction = {
53741
53741
  category: "lookup",
53742
53742
  description: {
53743
53743
  en: "Returns a range displaced from a starting reference by row and column offsets.",
53744
- ja: "\u57FA\u6E96\u30BB\u30EB\u304B\u3089\u884C\u3068\u5217\u306E\u30AA\u30D5\u30BB\u30C3\u30C8\u3067\u305A\u3089\u3057\u305F\u7BC4\u56F2\u3092\u8FD4\u3057\u307E\u3059\u3002"
53744
+ ja: "基準セルから行と列のオフセットでずらした範囲を返します。"
53745
53745
  },
53746
53746
  examples: ["OFFSET(A1, 1, 2, 2, 1)", "OFFSET(Table1, 0, 1)"],
53747
53747
  samples: [
@@ -53750,7 +53750,7 @@ var offsetFunction = {
53750
53750
  output: [[20, 30], [50, 60]],
53751
53751
  description: {
53752
53752
  en: "Offset by 1 column, same size",
53753
- ja: "1\u5217\u30AA\u30D5\u30BB\u30C3\u30C8\u3001\u540C\u3058\u30B5\u30A4\u30BA"
53753
+ ja: "1列オフセット、同じサイズ"
53754
53754
  }
53755
53755
  },
53756
53756
  {
@@ -53758,7 +53758,7 @@ var offsetFunction = {
53758
53758
  output: [[30, 40], [50, 60]],
53759
53759
  description: {
53760
53760
  en: "Offset by 1 row, specify 2x2 size",
53761
- ja: "1\u884C\u30AA\u30D5\u30BB\u30C3\u30C8\u30012x2\u30B5\u30A4\u30BA\u3092\u6307\u5B9A"
53761
+ ja: "1行オフセット、2x2サイズを指定"
53762
53762
  }
53763
53763
  },
53764
53764
  {
@@ -53766,7 +53766,7 @@ var offsetFunction = {
53766
53766
  output: [[2, 3]],
53767
53767
  description: {
53768
53768
  en: "Offset to get subset of array",
53769
- ja: "\u914D\u5217\u306E\u90E8\u5206\u96C6\u5408\u3092\u53D6\u5F97\u3059\u308B\u30AA\u30D5\u30BB\u30C3\u30C8"
53769
+ ja: "配列の部分集合を取得するオフセット"
53770
53770
  }
53771
53771
  }
53772
53772
  ],
@@ -53917,7 +53917,7 @@ var indirectFunction = {
53917
53917
  category: "lookup",
53918
53918
  description: {
53919
53919
  en: "Returns a reference specified by text, allowing dynamic ranges.",
53920
- ja: "\u6587\u5B57\u5217\u3067\u6307\u5B9A\u3057\u305F\u53C2\u7167\u3092\u8FD4\u3057\u3001\u52D5\u7684\u306A\u7BC4\u56F2\u6307\u5B9A\u3092\u53EF\u80FD\u306B\u3057\u307E\u3059\u3002"
53920
+ ja: "文字列で指定した参照を返し、動的な範囲指定を可能にします。"
53921
53921
  },
53922
53922
  examples: ['INDIRECT("A1")', 'INDIRECT("Sheet2!B3")'],
53923
53923
  samples: [
@@ -53926,7 +53926,7 @@ var indirectFunction = {
53926
53926
  output: "Reference to cell A1",
53927
53927
  description: {
53928
53928
  en: "Returns reference to cell A1",
53929
- ja: "\u30BB\u30EBA1\u3078\u306E\u53C2\u7167\u3092\u8FD4\u3059"
53929
+ ja: "セルA1への参照を返す"
53930
53930
  }
53931
53931
  },
53932
53932
  {
@@ -53934,7 +53934,7 @@ var indirectFunction = {
53934
53934
  output: "Reference to Sheet2, cell B3",
53935
53935
  description: {
53936
53936
  en: "Returns reference to cell B3 on Sheet2",
53937
- ja: "Sheet2\u306E\u30BB\u30EBB3\u3078\u306E\u53C2\u7167\u3092\u8FD4\u3059"
53937
+ ja: "Sheet2のセルB3への参照を返す"
53938
53938
  }
53939
53939
  },
53940
53940
  {
@@ -53942,7 +53942,7 @@ var indirectFunction = {
53942
53942
  output: "Range reference A1:C3",
53943
53943
  description: {
53944
53944
  en: "Returns range reference from text",
53945
- ja: "\u30C6\u30AD\u30B9\u30C8\u304B\u3089\u7BC4\u56F2\u53C2\u7167\u3092\u8FD4\u3059"
53945
+ ja: "テキストから範囲参照を返す"
53946
53946
  }
53947
53947
  }
53948
53948
  ],
@@ -53974,7 +53974,7 @@ var chooseFunction = {
53974
53974
  category: "lookup",
53975
53975
  description: {
53976
53976
  en: "Returns a value from a list by index.",
53977
- ja: "\u30A4\u30F3\u30C7\u30C3\u30AF\u30B9\u3067\u6307\u5B9A\u3057\u305F\u30EA\u30B9\u30C8\u306E\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
53977
+ ja: "インデックスで指定したリストの値を返します。"
53978
53978
  },
53979
53979
  examples: ['CHOOSE(2, "A", "B", "C")', "CHOOSE(A1, B1:B3)"],
53980
53980
  samples: [
@@ -53983,7 +53983,7 @@ var chooseFunction = {
53983
53983
  output: "Banana",
53984
53984
  description: {
53985
53985
  en: "Returns the second value from the list",
53986
- ja: "\u30EA\u30B9\u30C8\u304B\u30892\u756A\u76EE\u306E\u5024\u3092\u8FD4\u3059"
53986
+ ja: "リストから2番目の値を返す"
53987
53987
  }
53988
53988
  },
53989
53989
  {
@@ -53991,7 +53991,7 @@ var chooseFunction = {
53991
53991
  output: 100,
53992
53992
  description: {
53993
53993
  en: "Returns the first numeric value",
53994
- ja: "\u6700\u521D\u306E\u6570\u5024\u3092\u8FD4\u3059"
53994
+ ja: "最初の数値を返す"
53995
53995
  }
53996
53996
  },
53997
53997
  {
@@ -53999,7 +53999,7 @@ var chooseFunction = {
53999
53999
  output: "Z",
54000
54000
  description: {
54001
54001
  en: "Returns the third and last value",
54002
- ja: "3\u756A\u76EE\u306E\u6700\u5F8C\u306E\u5024\u3092\u8FD4\u3059"
54002
+ ja: "3番目の最後の値を返す"
54003
54003
  }
54004
54004
  }
54005
54005
  ],
@@ -54029,7 +54029,7 @@ var andFunction = {
54029
54029
  category: "logical",
54030
54030
  description: {
54031
54031
  en: "Returns TRUE if all arguments evaluate to TRUE; otherwise FALSE.",
54032
- ja: "\u3059\u3079\u3066\u306E\u5F15\u6570\u304CTRUE\u306E\u5834\u5408\u306BTRUE\u3092\u8FD4\u3057\u3001\u305D\u308C\u4EE5\u5916\u306FFALSE\u3092\u8FD4\u3057\u307E\u3059\u3002"
54032
+ ja: "すべての引数がTRUEの場合にTRUEを返し、それ以外はFALSEを返します。"
54033
54033
  },
54034
54034
  examples: ["AND(TRUE, FALSE)", "AND(A1:A3)"],
54035
54035
  samples: [
@@ -54038,7 +54038,7 @@ var andFunction = {
54038
54038
  output: true,
54039
54039
  description: {
54040
54040
  en: "All values are TRUE",
54041
- ja: "\u3059\u3079\u3066\u306E\u5024\u304CTRUE"
54041
+ ja: "すべての値がTRUE"
54042
54042
  }
54043
54043
  },
54044
54044
  {
@@ -54046,7 +54046,7 @@ var andFunction = {
54046
54046
  output: false,
54047
54047
  description: {
54048
54048
  en: "At least one FALSE",
54049
- ja: "\u5C11\u306A\u304F\u3068\u30821\u3064\u304CFALSE"
54049
+ ja: "少なくとも1つがFALSE"
54050
54050
  }
54051
54051
  },
54052
54052
  {
@@ -54054,7 +54054,7 @@ var andFunction = {
54054
54054
  output: true,
54055
54055
  description: {
54056
54056
  en: "Non-zero numbers coerce to TRUE",
54057
- ja: "\u30BC\u30ED\u4EE5\u5916\u306E\u6570\u5024\u306FTRUE\u306B\u5909\u63DB\u3055\u308C\u308B"
54057
+ ja: "ゼロ以外の数値はTRUEに変換される"
54058
54058
  }
54059
54059
  }
54060
54060
  ],
@@ -54079,7 +54079,7 @@ var orFunction = {
54079
54079
  category: "logical",
54080
54080
  description: {
54081
54081
  en: "Returns TRUE if any argument evaluates to TRUE; otherwise FALSE.",
54082
- ja: "\u5F15\u6570\u306E\u3044\u305A\u308C\u304B\u304CTRUE\u3067\u3042\u308C\u3070TRUE\u3092\u8FD4\u3057\u3001\u305D\u308C\u4EE5\u5916\u306FFALSE\u3092\u8FD4\u3057\u307E\u3059\u3002"
54082
+ ja: "引数のいずれかがTRUEであればTRUEを返し、それ以外はFALSEを返します。"
54083
54083
  },
54084
54084
  examples: ["OR(TRUE, FALSE)", "OR(A1:A3)"],
54085
54085
  samples: [
@@ -54088,7 +54088,7 @@ var orFunction = {
54088
54088
  output: true,
54089
54089
  description: {
54090
54090
  en: "At least one TRUE",
54091
- ja: "\u5C11\u306A\u304F\u3068\u30821\u3064\u304CTRUE"
54091
+ ja: "少なくとも1つがTRUE"
54092
54092
  }
54093
54093
  },
54094
54094
  {
@@ -54096,7 +54096,7 @@ var orFunction = {
54096
54096
  output: false,
54097
54097
  description: {
54098
54098
  en: "All values are FALSE",
54099
- ja: "\u3059\u3079\u3066\u306E\u5024\u304CFALSE"
54099
+ ja: "すべての値がFALSE"
54100
54100
  }
54101
54101
  },
54102
54102
  {
@@ -54104,7 +54104,7 @@ var orFunction = {
54104
54104
  output: true,
54105
54105
  description: {
54106
54106
  en: "Non-zero number is TRUE",
54107
- ja: "\u30BC\u30ED\u4EE5\u5916\u306E\u6570\u5024\u306FTRUE"
54107
+ ja: "ゼロ以外の数値はTRUE"
54108
54108
  }
54109
54109
  }
54110
54110
  ],
@@ -54129,7 +54129,7 @@ var notFunction = {
54129
54129
  category: "logical",
54130
54130
  description: {
54131
54131
  en: "Returns the logical negation of a boolean value.",
54132
- ja: "\u771F\u507D\u5024\u3092\u53CD\u8EE2\u3055\u305B\u305F\u7D50\u679C\u3092\u8FD4\u3057\u307E\u3059\u3002"
54132
+ ja: "真偽値を反転させた結果を返します。"
54133
54133
  },
54134
54134
  examples: ["NOT(TRUE)", "NOT(A1)"],
54135
54135
  samples: [
@@ -54138,7 +54138,7 @@ var notFunction = {
54138
54138
  output: false,
54139
54139
  description: {
54140
54140
  en: "Negate TRUE to FALSE",
54141
- ja: "TRUE\u3092FALSE\u306B\u53CD\u8EE2"
54141
+ ja: "TRUEをFALSEに反転"
54142
54142
  }
54143
54143
  },
54144
54144
  {
@@ -54146,7 +54146,7 @@ var notFunction = {
54146
54146
  output: true,
54147
54147
  description: {
54148
54148
  en: "Negate FALSE to TRUE",
54149
- ja: "FALSE\u3092TRUE\u306B\u53CD\u8EE2"
54149
+ ja: "FALSEをTRUEに反転"
54150
54150
  }
54151
54151
  },
54152
54152
  {
@@ -54154,7 +54154,7 @@ var notFunction = {
54154
54154
  output: true,
54155
54155
  description: {
54156
54156
  en: "Zero is FALSE, so NOT returns TRUE",
54157
- ja: "\u30BC\u30ED\u306FFALSE\u306A\u306E\u3067NOT\u306FTRUE\u3092\u8FD4\u3059"
54157
+ ja: "ゼロはFALSEなのでNOTはTRUEを返す"
54158
54158
  }
54159
54159
  }
54160
54160
  ],
@@ -54173,7 +54173,7 @@ var xorFunction = {
54173
54173
  category: "logical",
54174
54174
  description: {
54175
54175
  en: "Returns TRUE when an odd number of arguments evaluate to TRUE.",
54176
- ja: "TRUE\u3068\u306A\u308B\u5F15\u6570\u306E\u6570\u304C\u5947\u6570\u306E\u5834\u5408\u306BTRUE\u3092\u8FD4\u3057\u307E\u3059\u3002"
54176
+ ja: "TRUEとなる引数の数が奇数の場合にTRUEを返します。"
54177
54177
  },
54178
54178
  examples: ["XOR(TRUE, FALSE, TRUE)", "XOR(A1:A4)"],
54179
54179
  samples: [
@@ -54182,7 +54182,7 @@ var xorFunction = {
54182
54182
  output: true,
54183
54183
  description: {
54184
54184
  en: "Odd number (1) of TRUE values",
54185
- ja: "TRUE\u5024\u304C\u5947\u6570\u500B\uFF081\u500B\uFF09"
54185
+ ja: "TRUE値が奇数個(1個)"
54186
54186
  }
54187
54187
  },
54188
54188
  {
@@ -54190,7 +54190,7 @@ var xorFunction = {
54190
54190
  output: false,
54191
54191
  description: {
54192
54192
  en: "Even number (2) of TRUE values",
54193
- ja: "TRUE\u5024\u304C\u5076\u6570\u500B\uFF082\u500B\uFF09"
54193
+ ja: "TRUE値が偶数個(2個)"
54194
54194
  }
54195
54195
  },
54196
54196
  {
@@ -54198,7 +54198,7 @@ var xorFunction = {
54198
54198
  output: false,
54199
54199
  description: {
54200
54200
  en: "Even number (2) of TRUE values",
54201
- ja: "TRUE\u5024\u304C\u5076\u6570\u500B\uFF082\u500B\uFF09"
54201
+ ja: "TRUE値が偶数個(2個)"
54202
54202
  }
54203
54203
  }
54204
54204
  ],
@@ -54221,7 +54221,7 @@ var trueFunction = {
54221
54221
  category: "logical",
54222
54222
  description: {
54223
54223
  en: "Returns the logical constant TRUE.",
54224
- ja: "\u8AD6\u7406\u5024TRUE\u3092\u8FD4\u3057\u307E\u3059\u3002"
54224
+ ja: "論理値TRUEを返します。"
54225
54225
  },
54226
54226
  examples: ["TRUE()"],
54227
54227
  samples: [
@@ -54230,7 +54230,7 @@ var trueFunction = {
54230
54230
  output: true,
54231
54231
  description: {
54232
54232
  en: "Return logical TRUE",
54233
- ja: "\u8AD6\u7406\u5024TRUE\u3092\u8FD4\u3059"
54233
+ ja: "論理値TRUEを返す"
54234
54234
  }
54235
54235
  }
54236
54236
  ],
@@ -54248,7 +54248,7 @@ var falseFunction = {
54248
54248
  category: "logical",
54249
54249
  description: {
54250
54250
  en: "Returns the logical constant FALSE.",
54251
- ja: "\u8AD6\u7406\u5024FALSE\u3092\u8FD4\u3057\u307E\u3059\u3002"
54251
+ ja: "論理値FALSEを返します。"
54252
54252
  },
54253
54253
  examples: ["FALSE()"],
54254
54254
  samples: [
@@ -54257,7 +54257,7 @@ var falseFunction = {
54257
54257
  output: false,
54258
54258
  description: {
54259
54259
  en: "Return logical FALSE",
54260
- ja: "\u8AD6\u7406\u5024FALSE\u3092\u8FD4\u3059"
54260
+ ja: "論理値FALSEを返す"
54261
54261
  }
54262
54262
  }
54263
54263
  ],
@@ -54275,7 +54275,7 @@ var ifFunction = {
54275
54275
  category: "logical",
54276
54276
  description: {
54277
54277
  en: "Evaluates a condition and returns one value if TRUE, another if FALSE.",
54278
- ja: "\u6761\u4EF6\u3092\u8A55\u4FA1\u3057\u3066TRUE\u306A\u30891\u3064\u306E\u5024\u3001FALSE\u306A\u3089\u5225\u306E\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
54278
+ ja: "条件を評価してTRUEなら1つの値、FALSEなら別の値を返します。"
54279
54279
  },
54280
54280
  examples: ['IF(A1>0, "Positive", "Negative")', "IF(ISBLANK(A1), 0, A1)"],
54281
54281
  samples: [
@@ -54284,7 +54284,7 @@ var ifFunction = {
54284
54284
  output: "Yes",
54285
54285
  description: {
54286
54286
  en: "Condition is TRUE, return first value",
54287
- ja: "\u6761\u4EF6\u304CTRUE\u306A\u306E\u3067\u6700\u521D\u306E\u5024\u3092\u8FD4\u3059"
54287
+ ja: "条件がTRUEなので最初の値を返す"
54288
54288
  }
54289
54289
  },
54290
54290
  {
@@ -54292,7 +54292,7 @@ var ifFunction = {
54292
54292
  output: "No",
54293
54293
  description: {
54294
54294
  en: "Condition is FALSE, return second value",
54295
- ja: "\u6761\u4EF6\u304CFALSE\u306A\u306E\u30672\u756A\u76EE\u306E\u5024\u3092\u8FD4\u3059"
54295
+ ja: "条件がFALSEなので2番目の値を返す"
54296
54296
  }
54297
54297
  },
54298
54298
  {
@@ -54300,7 +54300,7 @@ var ifFunction = {
54300
54300
  output: 100,
54301
54301
  description: {
54302
54302
  en: "Return value for TRUE condition",
54303
- ja: "TRUE\u6761\u4EF6\u306E\u5024\u3092\u8FD4\u3059"
54303
+ ja: "TRUE条件の値を返す"
54304
54304
  }
54305
54305
  }
54306
54306
  ],
@@ -54326,7 +54326,7 @@ var ifsFunction = {
54326
54326
  category: "logical",
54327
54327
  description: {
54328
54328
  en: "Evaluates multiple condition/value pairs and returns the first match.",
54329
- ja: "\u8907\u6570\u306E\u6761\u4EF6\u3068\u7D50\u679C\u306E\u7D44\u3092\u9806\u306B\u8A55\u4FA1\u3057\u3001\u6700\u521D\u306B\u6210\u308A\u7ACB\u3063\u305F\u7D50\u679C\u3092\u8FD4\u3057\u307E\u3059\u3002"
54329
+ ja: "複数の条件と結果の組を順に評価し、最初に成り立った結果を返します。"
54330
54330
  },
54331
54331
  examples: ['IFS(A1>0, "Positive", A1<0, "Negative", TRUE, "Zero")'],
54332
54332
  samples: [
@@ -54335,7 +54335,7 @@ var ifsFunction = {
54335
54335
  output: "First",
54336
54336
  description: {
54337
54337
  en: "Return first matching condition",
54338
- ja: "\u6700\u521D\u306B\u4E00\u81F4\u3059\u308B\u6761\u4EF6\u3092\u8FD4\u3059"
54338
+ ja: "最初に一致する条件を返す"
54339
54339
  }
54340
54340
  },
54341
54341
  {
@@ -54343,7 +54343,7 @@ var ifsFunction = {
54343
54343
  output: "B",
54344
54344
  description: {
54345
54345
  en: "Skip FALSE, return TRUE result",
54346
- ja: "FALSE\u3092\u30B9\u30AD\u30C3\u30D7\u3057\u3066TRUE\u306E\u7D50\u679C\u3092\u8FD4\u3059"
54346
+ ja: "FALSEをスキップしてTRUEの結果を返す"
54347
54347
  }
54348
54348
  }
54349
54349
  ],
@@ -54370,7 +54370,7 @@ var switchFunction = {
54370
54370
  category: "logical",
54371
54371
  description: {
54372
54372
  en: "Matches an expression against value/result pairs and returns the first match or default.",
54373
- ja: "\u5F0F\u3092\u5024\u3068\u7D50\u679C\u306E\u30DA\u30A2\u3068\u6BD4\u8F03\u3057\u3001\u6700\u521D\u306B\u4E00\u81F4\u3057\u305F\u7D50\u679C\u307E\u305F\u306F\u65E2\u5B9A\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
54373
+ ja: "式を値と結果のペアと比較し、最初に一致した結果または既定値を返します。"
54374
54374
  },
54375
54375
  examples: ['SWITCH(A1, 1, "One", 2, "Two", "Other")'],
54376
54376
  samples: [
@@ -54379,7 +54379,7 @@ var switchFunction = {
54379
54379
  output: "Two",
54380
54380
  description: {
54381
54381
  en: "Match value and return result",
54382
- ja: "\u5024\u304C\u4E00\u81F4\u3057\u3066\u7D50\u679C\u3092\u8FD4\u3059"
54382
+ ja: "値が一致して結果を返す"
54383
54383
  }
54384
54384
  },
54385
54385
  {
@@ -54387,7 +54387,7 @@ var switchFunction = {
54387
54387
  output: "Default",
54388
54388
  description: {
54389
54389
  en: "No match, return default",
54390
- ja: "\u4E00\u81F4\u306A\u3057\u3001\u30C7\u30D5\u30A9\u30EB\u30C8\u3092\u8FD4\u3059"
54390
+ ja: "一致なし、デフォルトを返す"
54391
54391
  }
54392
54392
  }
54393
54393
  ],
@@ -54430,7 +54430,7 @@ var concatFunction = {
54430
54430
  category: "text",
54431
54431
  description: {
54432
54432
  en: "Concatenates text values, numbers, and booleans into a single string.",
54433
- ja: "\u6587\u5B57\u5217\u3084\u6570\u5024\u3001\u771F\u507D\u5024\u3092\u9023\u7D50\u3057\u30661\u3064\u306E\u6587\u5B57\u5217\u306B\u3057\u307E\u3059\u3002"
54433
+ ja: "文字列や数値、真偽値を連結して1つの文字列にします。"
54434
54434
  },
54435
54435
  examples: ['CONCAT("Hello", " ", "World")', "CONCAT(A1:A3)"],
54436
54436
  samples: [
@@ -54439,7 +54439,7 @@ var concatFunction = {
54439
54439
  output: "Hello World",
54440
54440
  description: {
54441
54441
  en: "Concatenates three text strings with a space",
54442
- ja: "3\u3064\u306E\u6587\u5B57\u5217\u3092\u30B9\u30DA\u30FC\u30B9\u3067\u9023\u7D50"
54442
+ ja: "3つの文字列をスペースで連結"
54443
54443
  }
54444
54444
  },
54445
54445
  {
@@ -54447,7 +54447,7 @@ var concatFunction = {
54447
54447
  output: "Year: 2024",
54448
54448
  description: {
54449
54449
  en: "Concatenates text and number",
54450
- ja: "\u6587\u5B57\u5217\u3068\u6570\u5024\u3092\u9023\u7D50"
54450
+ ja: "文字列と数値を連結"
54451
54451
  }
54452
54452
  },
54453
54453
  {
@@ -54455,7 +54455,7 @@ var concatFunction = {
54455
54455
  output: "Status: TRUE",
54456
54456
  description: {
54457
54457
  en: "Concatenates text and boolean value",
54458
- ja: "\u6587\u5B57\u5217\u3068\u771F\u507D\u5024\u3092\u9023\u7D50"
54458
+ ja: "文字列と真偽値を連結"
54459
54459
  }
54460
54460
  }
54461
54461
  ],
@@ -54476,7 +54476,7 @@ var concatenateFunction = {
54476
54476
  category: "text",
54477
54477
  description: {
54478
54478
  en: "Concatenates text values into a single string (legacy alias of CONCAT).",
54479
- ja: "\u6587\u5B57\u5217\u3092\u9023\u7D50\u3057\u30661\u3064\u306E\u6587\u5B57\u5217\u306B\u3057\u307E\u3059\uFF08CONCAT \u306E\u4E92\u63DB\u30FB\u65E7\u540D\uFF09\u3002"
54479
+ ja: "文字列を連結して1つの文字列にします(CONCAT の互換・旧名)。"
54480
54480
  },
54481
54481
  examples: ['CONCATENATE("Hello", " ", "World")', "CONCATENATE(A1, B1)"],
54482
54482
  evaluate: (args, helpers) => {
@@ -54496,7 +54496,7 @@ var textJoinFunction = {
54496
54496
  category: "text",
54497
54497
  description: {
54498
54498
  en: "Concatenates text items using a delimiter, optionally skipping empty strings.",
54499
- ja: "\u533A\u5207\u308A\u6587\u5B57\u3067\u9805\u76EE\u3092\u9023\u7D50\u3057\u3001\u7A7A\u6587\u5B57\u3092\u7701\u7565\u3059\u308B\u3053\u3068\u3082\u3067\u304D\u307E\u3059\u3002"
54499
+ ja: "区切り文字で項目を連結し、空文字を省略することもできます。"
54500
54500
  },
54501
54501
  examples: ['TEXTJOIN(",", true, A1:A5)', 'TEXTJOIN("-", false, "A", "B")'],
54502
54502
  samples: [
@@ -54505,7 +54505,7 @@ var textJoinFunction = {
54505
54505
  output: "Apple, Banana, Cherry",
54506
54506
  description: {
54507
54507
  en: "Joins three words with comma and space delimiter",
54508
- ja: "3\u3064\u306E\u5358\u8A9E\u3092\u30AB\u30F3\u30DE\u3068\u30B9\u30DA\u30FC\u30B9\u3067\u9023\u7D50"
54508
+ ja: "3つの単語をカンマとスペースで連結"
54509
54509
  }
54510
54510
  },
54511
54511
  {
@@ -54513,7 +54513,7 @@ var textJoinFunction = {
54513
54513
  output: "2024-01-15",
54514
54514
  description: {
54515
54515
  en: "Joins date parts with hyphen, skipping empty string",
54516
- ja: "\u30CF\u30A4\u30D5\u30F3\u3067\u65E5\u4ED8\u3092\u9023\u7D50\u3057\u3001\u7A7A\u6587\u5B57\u5217\u3092\u30B9\u30AD\u30C3\u30D7"
54516
+ ja: "ハイフンで日付を連結し、空文字列をスキップ"
54517
54517
  }
54518
54518
  },
54519
54519
  {
@@ -54521,7 +54521,7 @@ var textJoinFunction = {
54521
54521
  output: "A||B",
54522
54522
  description: {
54523
54523
  en: "Joins with pipe delimiter, keeping empty string",
54524
- ja: "\u30D1\u30A4\u30D7\u3067\u9023\u7D50\u3057\u3001\u7A7A\u6587\u5B57\u5217\u3092\u4FDD\u6301"
54524
+ ja: "パイプで連結し、空文字列を保持"
54525
54525
  }
54526
54526
  }
54527
54527
  ],
@@ -54547,7 +54547,7 @@ var leftFunction = {
54547
54547
  category: "text",
54548
54548
  description: {
54549
54549
  en: "Returns the leftmost characters from a text value.",
54550
- ja: "\u6587\u5B57\u5217\u306E\u5DE6\u7AEF\u304B\u3089\u6307\u5B9A\u3057\u305F\u6587\u5B57\u6570\u3092\u8FD4\u3057\u307E\u3059\u3002"
54550
+ ja: "文字列の左端から指定した文字数を返します。"
54551
54551
  },
54552
54552
  examples: ['LEFT("Spreadsheet", 5)', "LEFT(A1)"],
54553
54553
  samples: [
@@ -54556,7 +54556,7 @@ var leftFunction = {
54556
54556
  output: "Spread",
54557
54557
  description: {
54558
54558
  en: "Extracts first 6 characters from the left",
54559
- ja: "\u5DE6\u304B\u3089\u6700\u521D\u306E6\u6587\u5B57\u3092\u62BD\u51FA"
54559
+ ja: "左から最初の6文字を抽出"
54560
54560
  }
54561
54561
  },
54562
54562
  {
@@ -54564,7 +54564,7 @@ var leftFunction = {
54564
54564
  output: "Hello",
54565
54565
  description: {
54566
54566
  en: "Extracts first 5 characters",
54567
- ja: "\u6700\u521D\u306E5\u6587\u5B57\u3092\u62BD\u51FA"
54567
+ ja: "最初の5文字を抽出"
54568
54568
  }
54569
54569
  },
54570
54570
  {
@@ -54572,7 +54572,7 @@ var leftFunction = {
54572
54572
  output: "D",
54573
54573
  description: {
54574
54574
  en: "Defaults to 1 character when count is omitted",
54575
- ja: "\u6587\u5B57\u6570\u7701\u7565\u6642\u306F1\u6587\u5B57\u3092\u8FD4\u3059"
54575
+ ja: "文字数省略時は1文字を返す"
54576
54576
  }
54577
54577
  }
54578
54578
  ],
@@ -54602,7 +54602,7 @@ var rightFunction = {
54602
54602
  category: "text",
54603
54603
  description: {
54604
54604
  en: "Returns the rightmost characters from a text value.",
54605
- ja: "\u6587\u5B57\u5217\u306E\u53F3\u7AEF\u304B\u3089\u6307\u5B9A\u3057\u305F\u6587\u5B57\u6570\u3092\u8FD4\u3057\u307E\u3059\u3002"
54605
+ ja: "文字列の右端から指定した文字数を返します。"
54606
54606
  },
54607
54607
  examples: ['RIGHT("Spreadsheet", 4)', "RIGHT(A1, 2)"],
54608
54608
  samples: [
@@ -54611,7 +54611,7 @@ var rightFunction = {
54611
54611
  output: "sheet",
54612
54612
  description: {
54613
54613
  en: "Extracts last 5 characters from the right",
54614
- ja: "\u53F3\u304B\u3089\u6700\u5F8C\u306E5\u6587\u5B57\u3092\u62BD\u51FA"
54614
+ ja: "右から最後の5文字を抽出"
54615
54615
  }
54616
54616
  },
54617
54617
  {
@@ -54619,7 +54619,7 @@ var rightFunction = {
54619
54619
  output: "World",
54620
54620
  description: {
54621
54621
  en: "Extracts last 5 characters",
54622
- ja: "\u6700\u5F8C\u306E5\u6587\u5B57\u3092\u62BD\u51FA"
54622
+ ja: "最後の5文字を抽出"
54623
54623
  }
54624
54624
  },
54625
54625
  {
@@ -54627,7 +54627,7 @@ var rightFunction = {
54627
54627
  output: "a",
54628
54628
  description: {
54629
54629
  en: "Defaults to 1 character when count is omitted",
54630
- ja: "\u6587\u5B57\u6570\u7701\u7565\u6642\u306F1\u6587\u5B57\u3092\u8FD4\u3059"
54630
+ ja: "文字数省略時は1文字を返す"
54631
54631
  }
54632
54632
  }
54633
54633
  ],
@@ -54657,7 +54657,7 @@ var midFunction = {
54657
54657
  category: "text",
54658
54658
  description: {
54659
54659
  en: "Returns a substring starting at a given position for a specified length.",
54660
- ja: "\u6307\u5B9A\u3057\u305F\u4F4D\u7F6E\u304B\u3089\u6307\u5B9A\u3057\u305F\u9577\u3055\u306E\u90E8\u5206\u6587\u5B57\u5217\u3092\u8FD4\u3057\u307E\u3059\u3002"
54660
+ ja: "指定した位置から指定した長さの部分文字列を返します。"
54661
54661
  },
54662
54662
  examples: ['MID("Spreadsheet", 2, 5)', "MID(A1, 3, 4)"],
54663
54663
  samples: [
@@ -54666,7 +54666,7 @@ var midFunction = {
54666
54666
  output: "sheet",
54667
54667
  description: {
54668
54668
  en: "Extracts 5 characters starting at position 7",
54669
- ja: "7\u6587\u5B57\u76EE\u304B\u30895\u6587\u5B57\u3092\u62BD\u51FA"
54669
+ ja: "7文字目から5文字を抽出"
54670
54670
  }
54671
54671
  },
54672
54672
  {
@@ -54674,7 +54674,7 @@ var midFunction = {
54674
54674
  output: "World",
54675
54675
  description: {
54676
54676
  en: "Extracts 5 characters starting at position 7",
54677
- ja: "7\u6587\u5B57\u76EE\u304B\u30895\u6587\u5B57\u3092\u62BD\u51FA"
54677
+ ja: "7文字目から5文字を抽出"
54678
54678
  }
54679
54679
  },
54680
54680
  {
@@ -54682,7 +54682,7 @@ var midFunction = {
54682
54682
  output: "01",
54683
54683
  description: {
54684
54684
  en: "Extracts month portion from date string",
54685
- ja: "\u65E5\u4ED8\u6587\u5B57\u5217\u304B\u3089\u6708\u90E8\u5206\u3092\u62BD\u51FA"
54685
+ ja: "日付文字列から月部分を抽出"
54686
54686
  }
54687
54687
  }
54688
54688
  ],
@@ -54721,7 +54721,7 @@ var lenFunction = {
54721
54721
  category: "text",
54722
54722
  description: {
54723
54723
  en: "Counts the number of Unicode characters in a text value.",
54724
- ja: "\u6587\u5B57\u5217\u5185\u306EUnicode\u6587\u5B57\u6570\u3092\u8FD4\u3057\u307E\u3059\u3002"
54724
+ ja: "文字列内のUnicode文字数を返します。"
54725
54725
  },
54726
54726
  examples: ['LEN("Spreadsheet")', "LEN(A1)"],
54727
54727
  samples: [
@@ -54730,7 +54730,7 @@ var lenFunction = {
54730
54730
  output: 11,
54731
54731
  description: {
54732
54732
  en: "Counts 11 characters in the text",
54733
- ja: "\u6587\u5B57\u5217\u306E11\u6587\u5B57\u3092\u30AB\u30A6\u30F3\u30C8"
54733
+ ja: "文字列の11文字をカウント"
54734
54734
  }
54735
54735
  },
54736
54736
  {
@@ -54738,7 +54738,7 @@ var lenFunction = {
54738
54738
  output: 11,
54739
54739
  description: {
54740
54740
  en: "Counts characters including space",
54741
- ja: "\u30B9\u30DA\u30FC\u30B9\u3092\u542B\u3081\u3066\u6587\u5B57\u6570\u3092\u30AB\u30A6\u30F3\u30C8"
54741
+ ja: "スペースを含めて文字数をカウント"
54742
54742
  }
54743
54743
  },
54744
54744
  {
@@ -54746,7 +54746,7 @@ var lenFunction = {
54746
54746
  output: 0,
54747
54747
  description: {
54748
54748
  en: "Empty string has length 0",
54749
- ja: "\u7A7A\u6587\u5B57\u5217\u306E\u9577\u3055\u306F0"
54749
+ ja: "空文字列の長さは0"
54750
54750
  }
54751
54751
  }
54752
54752
  ],
@@ -54766,7 +54766,7 @@ var trimFunction = {
54766
54766
  category: "text",
54767
54767
  description: {
54768
54768
  en: "Removes leading/trailing whitespace and collapses internal spaces to a single space.",
54769
- ja: "\u524D\u5F8C\u306E\u7A7A\u767D\u3092\u524A\u9664\u3057\u3001\u5185\u90E8\u306E\u7A7A\u767D\u9023\u7D9A\u30921\u3064\u306E\u30B9\u30DA\u30FC\u30B9\u306B\u7E2E\u3081\u307E\u3059\u3002"
54769
+ ja: "前後の空白を削除し、内部の空白連続を1つのスペースに縮めます。"
54770
54770
  },
54771
54771
  examples: ['TRIM(" data ")', "TRIM(A1)"],
54772
54772
  samples: [
@@ -54775,7 +54775,7 @@ var trimFunction = {
54775
54775
  output: "Hello World",
54776
54776
  description: {
54777
54777
  en: "Removes leading and trailing spaces",
54778
- ja: "\u524D\u5F8C\u306E\u30B9\u30DA\u30FC\u30B9\u3092\u524A\u9664"
54778
+ ja: "前後のスペースを削除"
54779
54779
  }
54780
54780
  },
54781
54781
  {
@@ -54783,7 +54783,7 @@ var trimFunction = {
54783
54783
  output: "Data Analysis",
54784
54784
  description: {
54785
54785
  en: "Collapses multiple internal spaces to one",
54786
- ja: "\u5185\u90E8\u306E\u8907\u6570\u30B9\u30DA\u30FC\u30B9\u30921\u3064\u306B\u7E2E\u5C0F"
54786
+ ja: "内部の複数スペースを1つに縮小"
54787
54787
  }
54788
54788
  },
54789
54789
  {
@@ -54791,7 +54791,7 @@ var trimFunction = {
54791
54791
  output: "Multiple Spaces Everywhere",
54792
54792
  description: {
54793
54793
  en: "Removes extra spaces from all positions",
54794
- ja: "\u5168\u3066\u306E\u4F59\u5206\u306A\u30B9\u30DA\u30FC\u30B9\u3092\u524A\u9664"
54794
+ ja: "全ての余分なスペースを削除"
54795
54795
  }
54796
54796
  }
54797
54797
  ],
@@ -54811,7 +54811,7 @@ var upperFunction = {
54811
54811
  category: "text",
54812
54812
  description: {
54813
54813
  en: "Converts text to uppercase using locale-aware rules.",
54814
- ja: "\u30ED\u30B1\u30FC\u30EB\u306B\u5FDC\u3058\u305F\u898F\u5247\u3067\u6587\u5B57\u5217\u3092\u5927\u6587\u5B57\u306B\u5909\u63DB\u3057\u307E\u3059\u3002"
54814
+ ja: "ロケールに応じた規則で文字列を大文字に変換します。"
54815
54815
  },
54816
54816
  examples: ['UPPER("Spreadsheet")', "UPPER(A1)"],
54817
54817
  samples: [
@@ -54820,7 +54820,7 @@ var upperFunction = {
54820
54820
  output: "SPREADSHEET",
54821
54821
  description: {
54822
54822
  en: "Converts all letters to uppercase",
54823
- ja: "\u5168\u3066\u306E\u6587\u5B57\u3092\u5927\u6587\u5B57\u306B\u5909\u63DB"
54823
+ ja: "全ての文字を大文字に変換"
54824
54824
  }
54825
54825
  },
54826
54826
  {
@@ -54828,7 +54828,7 @@ var upperFunction = {
54828
54828
  output: "HELLO WORLD",
54829
54829
  description: {
54830
54830
  en: "Converts lowercase text to uppercase",
54831
- ja: "\u5C0F\u6587\u5B57\u30C6\u30AD\u30B9\u30C8\u3092\u5927\u6587\u5B57\u306B\u5909\u63DB"
54831
+ ja: "小文字テキストを大文字に変換"
54832
54832
  }
54833
54833
  },
54834
54834
  {
@@ -54836,7 +54836,7 @@ var upperFunction = {
54836
54836
  output: "MIXEDCASE123",
54837
54837
  description: {
54838
54838
  en: "Converts letters while preserving numbers",
54839
- ja: "\u6570\u5B57\u3092\u4FDD\u6301\u3057\u3066\u6587\u5B57\u3092\u5927\u6587\u5B57\u5316"
54839
+ ja: "数字を保持して文字を大文字化"
54840
54840
  }
54841
54841
  }
54842
54842
  ],
@@ -54856,7 +54856,7 @@ var lowerFunction = {
54856
54856
  category: "text",
54857
54857
  description: {
54858
54858
  en: "Converts text to lowercase using locale-aware rules.",
54859
- ja: "\u30ED\u30B1\u30FC\u30EB\u306B\u5FDC\u3058\u305F\u898F\u5247\u3067\u6587\u5B57\u5217\u3092\u5C0F\u6587\u5B57\u306B\u5909\u63DB\u3057\u307E\u3059\u3002"
54859
+ ja: "ロケールに応じた規則で文字列を小文字に変換します。"
54860
54860
  },
54861
54861
  examples: ['LOWER("SpreadSheet")', "LOWER(A1)"],
54862
54862
  samples: [
@@ -54865,7 +54865,7 @@ var lowerFunction = {
54865
54865
  output: "spreadsheet",
54866
54866
  description: {
54867
54867
  en: "Converts all letters to lowercase",
54868
- ja: "\u5168\u3066\u306E\u6587\u5B57\u3092\u5C0F\u6587\u5B57\u306B\u5909\u63DB"
54868
+ ja: "全ての文字を小文字に変換"
54869
54869
  }
54870
54870
  },
54871
54871
  {
@@ -54873,7 +54873,7 @@ var lowerFunction = {
54873
54873
  output: "hello world",
54874
54874
  description: {
54875
54875
  en: "Converts uppercase text to lowercase",
54876
- ja: "\u5927\u6587\u5B57\u30C6\u30AD\u30B9\u30C8\u3092\u5C0F\u6587\u5B57\u306B\u5909\u63DB"
54876
+ ja: "大文字テキストを小文字に変換"
54877
54877
  }
54878
54878
  },
54879
54879
  {
@@ -54881,7 +54881,7 @@ var lowerFunction = {
54881
54881
  output: "mixedcase123",
54882
54882
  description: {
54883
54883
  en: "Converts letters while preserving numbers",
54884
- ja: "\u6570\u5B57\u3092\u4FDD\u6301\u3057\u3066\u6587\u5B57\u3092\u5C0F\u6587\u5B57\u5316"
54884
+ ja: "数字を保持して文字を小文字化"
54885
54885
  }
54886
54886
  }
54887
54887
  ],
@@ -54903,7 +54903,7 @@ var properFunction = {
54903
54903
  category: "text",
54904
54904
  description: {
54905
54905
  en: "Capitalizes the first letter of each word and lowercases the rest.",
54906
- ja: "\u5404\u5358\u8A9E\u306E\u5148\u982D\u6587\u5B57\u3092\u5927\u6587\u5B57\u306B\u3057\u3001\u6B8B\u308A\u3092\u5C0F\u6587\u5B57\u306B\u5909\u63DB\u3057\u307E\u3059\u3002"
54906
+ ja: "各単語の先頭文字を大文字にし、残りを小文字に変換します。"
54907
54907
  },
54908
54908
  examples: ['PROPER("hello WORLD")', "PROPER(A1)"],
54909
54909
  samples: [
@@ -54912,7 +54912,7 @@ var properFunction = {
54912
54912
  output: "Hello World",
54913
54913
  description: {
54914
54914
  en: "Capitalizes first letter of each word",
54915
- ja: "\u5404\u5358\u8A9E\u306E\u5148\u982D\u6587\u5B57\u3092\u5927\u6587\u5B57\u5316"
54915
+ ja: "各単語の先頭文字を大文字化"
54916
54916
  }
54917
54917
  },
54918
54918
  {
@@ -54920,7 +54920,7 @@ var properFunction = {
54920
54920
  output: "Spreadsheet Data",
54921
54921
  description: {
54922
54922
  en: "Converts to proper case from uppercase",
54923
- ja: "\u5927\u6587\u5B57\u304B\u3089\u9069\u5207\u306A\u5927\u6587\u5B57\u5C0F\u6587\u5B57\u306B\u5909\u63DB"
54923
+ ja: "大文字から適切な大文字小文字に変換"
54924
54924
  }
54925
54925
  },
54926
54926
  {
@@ -54928,7 +54928,7 @@ var properFunction = {
54928
54928
  output: "John Doe",
54929
54929
  description: {
54930
54930
  en: "Normalizes mixed case names",
54931
- ja: "\u6DF7\u5408\u30B1\u30FC\u30B9\u306E\u540D\u524D\u3092\u6B63\u898F\u5316"
54931
+ ja: "混合ケースの名前を正規化"
54932
54932
  }
54933
54933
  }
54934
54934
  ],
@@ -54959,7 +54959,7 @@ var replaceFunction = {
54959
54959
  category: "text",
54960
54960
  description: {
54961
54961
  en: "Replaces part of a text string with new text based on position and length.",
54962
- ja: "\u6587\u5B57\u5217\u306E\u6307\u5B9A\u4F4D\u7F6E\u3068\u9577\u3055\u306B\u57FA\u3065\u3044\u3066\u65B0\u3057\u3044\u6587\u5B57\u5217\u306B\u7F6E\u304D\u63DB\u3048\u307E\u3059\u3002"
54962
+ ja: "文字列の指定位置と長さに基づいて新しい文字列に置き換えます。"
54963
54963
  },
54964
54964
  examples: ['REPLACE("Spreadsheet", 7, 4, "book")', 'REPLACE(A1, 1, 2, "X")'],
54965
54965
  samples: [
@@ -54968,7 +54968,7 @@ var replaceFunction = {
54968
54968
  output: "Spreadbook",
54969
54969
  description: {
54970
54970
  en: "Replaces 5 characters at position 7 with 'book'",
54971
- ja: "7\u6587\u5B57\u76EE\u304B\u30895\u6587\u5B57\u3092'book'\u306B\u7F6E\u63DB"
54971
+ ja: "7文字目から5文字を'book'に置換"
54972
54972
  }
54973
54973
  },
54974
54974
  {
@@ -54976,7 +54976,7 @@ var replaceFunction = {
54976
54976
  output: "2024-12-15",
54977
54977
  description: {
54978
54978
  en: "Replaces month in date string",
54979
- ja: "\u65E5\u4ED8\u6587\u5B57\u5217\u306E\u6708\u90E8\u5206\u3092\u7F6E\u63DB"
54979
+ ja: "日付文字列の月部分を置換"
54980
54980
  }
54981
54981
  },
54982
54982
  {
@@ -54984,7 +54984,7 @@ var replaceFunction = {
54984
54984
  output: "Hi World",
54985
54985
  description: {
54986
54986
  en: "Replaces first word with shorter text",
54987
- ja: "\u6700\u521D\u306E\u5358\u8A9E\u3092\u3088\u308A\u77ED\u3044\u30C6\u30AD\u30B9\u30C8\u306B\u7F6E\u63DB"
54987
+ ja: "最初の単語をより短いテキストに置換"
54988
54988
  }
54989
54989
  }
54990
54990
  ],
@@ -55020,7 +55020,7 @@ var substituteFunction = {
55020
55020
  category: "text",
55021
55021
  description: {
55022
55022
  en: "Replaces occurrences of text with new text, optionally targeting a specific instance.",
55023
- ja: "\u6587\u5B57\u5217\u306E\u51FA\u73FE\u7B87\u6240\u3092\u65B0\u3057\u3044\u6587\u5B57\u5217\u306B\u7F6E\u304D\u63DB\u3048\u3001\u6307\u5B9A\u56DE\u306E\u307F\u7F6E\u63DB\u3059\u308B\u3053\u3068\u3082\u53EF\u80FD\u3067\u3059\u3002"
55023
+ ja: "文字列の出現箇所を新しい文字列に置き換え、指定回のみ置換することも可能です。"
55024
55024
  },
55025
55025
  examples: ['SUBSTITUTE("banana", "a", "o")', 'SUBSTITUTE(A1, ".", "-", 1)'],
55026
55026
  samples: [
@@ -55029,7 +55029,7 @@ var substituteFunction = {
55029
55029
  output: "bonono",
55030
55030
  description: {
55031
55031
  en: "Replaces all occurrences of 'a' with 'o'",
55032
- ja: "\u5168\u3066\u306E'a'\u3092'o'\u306B\u7F6E\u63DB"
55032
+ ja: "全ての'a''o'に置換"
55033
55033
  }
55034
55034
  },
55035
55035
  {
@@ -55037,7 +55037,7 @@ var substituteFunction = {
55037
55037
  output: "banona",
55038
55038
  description: {
55039
55039
  en: "Replaces only the second occurrence of 'a'",
55040
- ja: "2\u756A\u76EE\u306E'a'\u306E\u307F\u3092\u7F6E\u63DB"
55040
+ ja: "2番目の'a'のみを置換"
55041
55041
  }
55042
55042
  },
55043
55043
  {
@@ -55045,7 +55045,7 @@ var substituteFunction = {
55045
55045
  output: "2024-01-15",
55046
55046
  description: {
55047
55047
  en: "Replaces all dots with hyphens",
55048
- ja: "\u5168\u3066\u306E\u30C9\u30C3\u30C8\u3092\u30CF\u30A4\u30D5\u30F3\u306B\u7F6E\u63DB"
55048
+ ja: "全てのドットをハイフンに置換"
55049
55049
  }
55050
55050
  }
55051
55051
  ],
@@ -55101,7 +55101,7 @@ var findFunction = {
55101
55101
  category: "text",
55102
55102
  description: {
55103
55103
  en: "Locates one text value within another, matching case and returning the position.",
55104
- ja: "\u5927\u6587\u5B57\u5C0F\u6587\u5B57\u3092\u533A\u5225\u3057\u3066\u6587\u5B57\u5217\u5185\u306E\u4F4D\u7F6E\u3092\u691C\u7D22\u3057\u307E\u3059\u3002"
55104
+ ja: "大文字小文字を区別して文字列内の位置を検索します。"
55105
55105
  },
55106
55106
  examples: ['FIND("sheet", "Spreadsheet")', 'FIND("-", A1, 3)'],
55107
55107
  samples: [
@@ -55110,7 +55110,7 @@ var findFunction = {
55110
55110
  output: 7,
55111
55111
  description: {
55112
55112
  en: "Finds 'sheet' starting at position 7 (case-sensitive)",
55113
- ja: "'sheet'\u304C7\u6587\u5B57\u76EE\u304B\u3089\u59CB\u307E\u308B\uFF08\u5927\u6587\u5B57\u5C0F\u6587\u5B57\u533A\u5225\uFF09"
55113
+ ja: "'sheet'が7文字目から始まる(大文字小文字区別)"
55114
55114
  }
55115
55115
  },
55116
55116
  {
@@ -55118,7 +55118,7 @@ var findFunction = {
55118
55118
  output: 5,
55119
55119
  description: {
55120
55120
  en: "Finds first hyphen at position 5",
55121
- ja: "\u6700\u521D\u306E\u30CF\u30A4\u30D5\u30F3\u304C5\u6587\u5B57\u76EE"
55121
+ ja: "最初のハイフンが5文字目"
55122
55122
  }
55123
55123
  },
55124
55124
  {
@@ -55126,7 +55126,7 @@ var findFunction = {
55126
55126
  output: 8,
55127
55127
  description: {
55128
55128
  en: "Finds next hyphen starting from position 6",
55129
- ja: "6\u6587\u5B57\u76EE\u4EE5\u964D\u306E\u6B21\u306E\u30CF\u30A4\u30D5\u30F3\u3092\u691C\u7D22"
55129
+ ja: "6文字目以降の次のハイフンを検索"
55130
55130
  }
55131
55131
  }
55132
55132
  ],
@@ -55179,7 +55179,7 @@ var searchFunction = {
55179
55179
  category: "text",
55180
55180
  description: {
55181
55181
  en: "Locates one text value within another without matching case.",
55182
- ja: "\u5927\u6587\u5B57\u5C0F\u6587\u5B57\u3092\u533A\u5225\u305B\u305A\u306B\u6587\u5B57\u5217\u306E\u4F4D\u7F6E\u3092\u691C\u7D22\u3057\u307E\u3059\u3002"
55182
+ ja: "大文字小文字を区別せずに文字列の位置を検索します。"
55183
55183
  },
55184
55184
  examples: ['SEARCH("SHEET", "Spreadsheet")', 'SEARCH("-", A1, 2)'],
55185
55185
  samples: [
@@ -55188,7 +55188,7 @@ var searchFunction = {
55188
55188
  output: 7,
55189
55189
  description: {
55190
55190
  en: "Finds 'sheet' at position 7 (case-insensitive)",
55191
- ja: "'sheet'\u304C7\u6587\u5B57\u76EE\u304B\u3089\u59CB\u307E\u308B\uFF08\u5927\u6587\u5B57\u5C0F\u6587\u5B57\u533A\u5225\u306A\u3057\uFF09"
55191
+ ja: "'sheet'が7文字目から始まる(大文字小文字区別なし)"
55192
55192
  }
55193
55193
  },
55194
55194
  {
@@ -55196,7 +55196,7 @@ var searchFunction = {
55196
55196
  output: 1,
55197
55197
  description: {
55198
55198
  en: "Finds 'data' at position 1 ignoring case",
55199
- ja: "\u5927\u6587\u5B57\u5C0F\u6587\u5B57\u3092\u7121\u8996\u3057\u3066'data'\u30921\u6587\u5B57\u76EE\u306B\u767A\u898B"
55199
+ ja: "大文字小文字を無視して'data'を1文字目に発見"
55200
55200
  }
55201
55201
  },
55202
55202
  {
@@ -55204,7 +55204,7 @@ var searchFunction = {
55204
55204
  output: 8,
55205
55205
  description: {
55206
55206
  en: "Finds hyphen starting from position 6",
55207
- ja: "6\u6587\u5B57\u76EE\u4EE5\u964D\u306E\u30CF\u30A4\u30D5\u30F3\u3092\u691C\u7D22"
55207
+ ja: "6文字目以降のハイフンを検索"
55208
55208
  }
55209
55209
  }
55210
55210
  ],
@@ -56464,7 +56464,7 @@ var textFunction = {
56464
56464
  category: "text",
56465
56465
  description: {
56466
56466
  en: "Formats a value as text according to a specified number format code.",
56467
- ja: "\u6307\u5B9A\u3057\u305F\u6570\u5024\u66F8\u5F0F\u30B3\u30FC\u30C9\u306B\u5F93\u3063\u3066\u5024\u3092\u6587\u5B57\u5217\u306B\u5909\u63DB\u3057\u307E\u3059\u3002"
56467
+ ja: "指定した数値書式コードに従って値を文字列に変換します。"
56468
56468
  },
56469
56469
  examples: ['TEXT(12.34, "0.00")', 'TEXT(314159, "#,##0.00")', 'TEXT(A1, "000.00")'],
56470
56470
  samples: [
@@ -56501,7 +56501,7 @@ var sinFunction = {
56501
56501
  category: "engineering",
56502
56502
  description: {
56503
56503
  en: "Returns the sine of an angle specified in radians.",
56504
- ja: "\u30E9\u30B8\u30A2\u30F3\u3067\u6307\u5B9A\u3057\u305F\u89D2\u5EA6\u306E\u30B5\u30A4\u30F3\u3092\u8FD4\u3057\u307E\u3059\u3002"
56504
+ ja: "ラジアンで指定した角度のサインを返します。"
56505
56505
  },
56506
56506
  examples: ["SIN(PI()/2)"],
56507
56507
  samples: [
@@ -56510,23 +56510,23 @@ var sinFunction = {
56510
56510
  output: 0,
56511
56511
  description: {
56512
56512
  en: "Sine of 0 radians is 0",
56513
- ja: "0\u30E9\u30B8\u30A2\u30F3\u306E\u30B5\u30A4\u30F3\u306F0"
56513
+ ja: "0ラジアンのサインは0"
56514
56514
  }
56515
56515
  },
56516
56516
  {
56517
56517
  input: "SIN(1.5708)",
56518
56518
  output: 1,
56519
56519
  description: {
56520
- en: "Sine of \u03C0/2 (approximately 1.5708) is 1",
56521
- ja: "\u03C0/2\uFF08\u7D041.5708\uFF09\u306E\u30B5\u30A4\u30F3\u306F1"
56520
+ en: "Sine of π/2 (approximately 1.5708) is 1",
56521
+ ja: "π/2(約1.5708)のサインは1"
56522
56522
  }
56523
56523
  },
56524
56524
  {
56525
56525
  input: "SIN(3.14159)",
56526
56526
  output: 0,
56527
56527
  description: {
56528
- en: "Sine of \u03C0 (approximately 3.14159) is approximately 0",
56529
- ja: "\u03C0\uFF08\u7D043.14159\uFF09\u306E\u30B5\u30A4\u30F3\u306F\u7D040"
56528
+ en: "Sine of π (approximately 3.14159) is approximately 0",
56529
+ ja: "π(約3.14159)のサインは約0"
56530
56530
  }
56531
56531
  }
56532
56532
  ],
@@ -56541,7 +56541,7 @@ var cosFunction = {
56541
56541
  category: "engineering",
56542
56542
  description: {
56543
56543
  en: "Returns the cosine of an angle specified in radians.",
56544
- ja: "\u30E9\u30B8\u30A2\u30F3\u3067\u6307\u5B9A\u3057\u305F\u89D2\u5EA6\u306E\u30B3\u30B5\u30A4\u30F3\u3092\u8FD4\u3057\u307E\u3059\u3002"
56544
+ ja: "ラジアンで指定した角度のコサインを返します。"
56545
56545
  },
56546
56546
  examples: ["COS(0)"],
56547
56547
  samples: [
@@ -56550,23 +56550,23 @@ var cosFunction = {
56550
56550
  output: 1,
56551
56551
  description: {
56552
56552
  en: "Cosine of 0 radians is 1",
56553
- ja: "0\u30E9\u30B8\u30A2\u30F3\u306E\u30B3\u30B5\u30A4\u30F3\u306F1"
56553
+ ja: "0ラジアンのコサインは1"
56554
56554
  }
56555
56555
  },
56556
56556
  {
56557
56557
  input: "COS(1.5708)",
56558
56558
  output: 0,
56559
56559
  description: {
56560
- en: "Cosine of \u03C0/2 (approximately 1.5708) is 0",
56561
- ja: "\u03C0/2\uFF08\u7D041.5708\uFF09\u306E\u30B3\u30B5\u30A4\u30F3\u306F0"
56560
+ en: "Cosine of π/2 (approximately 1.5708) is 0",
56561
+ ja: "π/2(約1.5708)のコサインは0"
56562
56562
  }
56563
56563
  },
56564
56564
  {
56565
56565
  input: "COS(3.14159)",
56566
56566
  output: -1,
56567
56567
  description: {
56568
- en: "Cosine of \u03C0 (approximately 3.14159) is -1",
56569
- ja: "\u03C0\uFF08\u7D043.14159\uFF09\u306E\u30B3\u30B5\u30A4\u30F3\u306F-1"
56568
+ en: "Cosine of π (approximately 3.14159) is -1",
56569
+ ja: "π(約3.14159)のコサインは-1"
56570
56570
  }
56571
56571
  }
56572
56572
  ],
@@ -56581,7 +56581,7 @@ var tanFunction = {
56581
56581
  category: "engineering",
56582
56582
  description: {
56583
56583
  en: "Returns the tangent of an angle specified in radians.",
56584
- ja: "\u30E9\u30B8\u30A2\u30F3\u3067\u6307\u5B9A\u3057\u305F\u89D2\u5EA6\u306E\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u3092\u8FD4\u3057\u307E\u3059\u3002"
56584
+ ja: "ラジアンで指定した角度のタンジェントを返します。"
56585
56585
  },
56586
56586
  examples: ["TAN(PI()/4)"],
56587
56587
  samples: [
@@ -56590,15 +56590,15 @@ var tanFunction = {
56590
56590
  output: 0,
56591
56591
  description: {
56592
56592
  en: "Tangent of 0 radians is 0",
56593
- ja: "0\u30E9\u30B8\u30A2\u30F3\u306E\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u306F0"
56593
+ ja: "0ラジアンのタンジェントは0"
56594
56594
  }
56595
56595
  },
56596
56596
  {
56597
56597
  input: "TAN(0.7854)",
56598
56598
  output: 1,
56599
56599
  description: {
56600
- en: "Tangent of \u03C0/4 (approximately 0.7854) is 1",
56601
- ja: "\u03C0/4\uFF08\u7D040.7854\uFF09\u306E\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u306F1"
56600
+ en: "Tangent of π/4 (approximately 0.7854) is 1",
56601
+ ja: "π/4(約0.7854)のタンジェントは1"
56602
56602
  }
56603
56603
  },
56604
56604
  {
@@ -56606,7 +56606,7 @@ var tanFunction = {
56606
56606
  output: 1.5574,
56607
56607
  description: {
56608
56608
  en: "Tangent of 1 radian is approximately 1.5574",
56609
- ja: "1\u30E9\u30B8\u30A2\u30F3\u306E\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u306F\u7D041.5574"
56609
+ ja: "1ラジアンのタンジェントは約1.5574"
56610
56610
  }
56611
56611
  }
56612
56612
  ],
@@ -56621,7 +56621,7 @@ var asinFunction = {
56621
56621
  category: "engineering",
56622
56622
  description: {
56623
56623
  en: "Returns the arcsine of a value, in radians.",
56624
- ja: "\u5024\u306E\u9006\u30B5\u30A4\u30F3\u3092\u30E9\u30B8\u30A2\u30F3\u3067\u8FD4\u3057\u307E\u3059\u3002"
56624
+ ja: "値の逆サインをラジアンで返します。"
56625
56625
  },
56626
56626
  examples: ["ASIN(1)"],
56627
56627
  samples: [
@@ -56630,23 +56630,23 @@ var asinFunction = {
56630
56630
  output: 0,
56631
56631
  description: {
56632
56632
  en: "Arcsine of 0 is 0 radians",
56633
- ja: "0\u306E\u9006\u30B5\u30A4\u30F3\u306F0\u30E9\u30B8\u30A2\u30F3"
56633
+ ja: "0の逆サインは0ラジアン"
56634
56634
  }
56635
56635
  },
56636
56636
  {
56637
56637
  input: "ASIN(0.5)",
56638
56638
  output: 0.5236,
56639
56639
  description: {
56640
- en: "Arcsine of 0.5 is \u03C0/6 (approximately 0.5236)",
56641
- ja: "0.5\u306E\u9006\u30B5\u30A4\u30F3\u306F\u03C0/6\uFF08\u7D040.5236\uFF09"
56640
+ en: "Arcsine of 0.5 is π/6 (approximately 0.5236)",
56641
+ ja: "0.5の逆サインはπ/6(約0.5236"
56642
56642
  }
56643
56643
  },
56644
56644
  {
56645
56645
  input: "ASIN(1)",
56646
56646
  output: 1.5708,
56647
56647
  description: {
56648
- en: "Arcsine of 1 is \u03C0/2 (approximately 1.5708)",
56649
- ja: "1\u306E\u9006\u30B5\u30A4\u30F3\u306F\u03C0/2\uFF08\u7D041.5708\uFF09"
56648
+ en: "Arcsine of 1 is π/2 (approximately 1.5708)",
56649
+ ja: "1の逆サインはπ/2(約1.5708"
56650
56650
  }
56651
56651
  }
56652
56652
  ],
@@ -56664,7 +56664,7 @@ var acosFunction = {
56664
56664
  category: "engineering",
56665
56665
  description: {
56666
56666
  en: "Returns the arccosine of a value, in radians.",
56667
- ja: "\u5024\u306E\u9006\u30B3\u30B5\u30A4\u30F3\u3092\u30E9\u30B8\u30A2\u30F3\u3067\u8FD4\u3057\u307E\u3059\u3002"
56667
+ ja: "値の逆コサインをラジアンで返します。"
56668
56668
  },
56669
56669
  examples: ["ACOS(0)"],
56670
56670
  samples: [
@@ -56673,23 +56673,23 @@ var acosFunction = {
56673
56673
  output: 0,
56674
56674
  description: {
56675
56675
  en: "Arccosine of 1 is 0 radians",
56676
- ja: "1\u306E\u9006\u30B3\u30B5\u30A4\u30F3\u306F0\u30E9\u30B8\u30A2\u30F3"
56676
+ ja: "1の逆コサインは0ラジアン"
56677
56677
  }
56678
56678
  },
56679
56679
  {
56680
56680
  input: "ACOS(0.5)",
56681
56681
  output: 1.0472,
56682
56682
  description: {
56683
- en: "Arccosine of 0.5 is \u03C0/3 (approximately 1.0472)",
56684
- ja: "0.5\u306E\u9006\u30B3\u30B5\u30A4\u30F3\u306F\u03C0/3\uFF08\u7D041.0472\uFF09"
56683
+ en: "Arccosine of 0.5 is π/3 (approximately 1.0472)",
56684
+ ja: "0.5の逆コサインはπ/3(約1.0472"
56685
56685
  }
56686
56686
  },
56687
56687
  {
56688
56688
  input: "ACOS(0)",
56689
56689
  output: 1.5708,
56690
56690
  description: {
56691
- en: "Arccosine of 0 is \u03C0/2 (approximately 1.5708)",
56692
- ja: "0\u306E\u9006\u30B3\u30B5\u30A4\u30F3\u306F\u03C0/2\uFF08\u7D041.5708\uFF09"
56691
+ en: "Arccosine of 0 is π/2 (approximately 1.5708)",
56692
+ ja: "0の逆コサインはπ/2(約1.5708"
56693
56693
  }
56694
56694
  }
56695
56695
  ],
@@ -56707,7 +56707,7 @@ var atanFunction = {
56707
56707
  category: "engineering",
56708
56708
  description: {
56709
56709
  en: "Returns the arctangent of a value, in radians.",
56710
- ja: "\u5024\u306E\u9006\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u3092\u30E9\u30B8\u30A2\u30F3\u3067\u8FD4\u3057\u307E\u3059\u3002"
56710
+ ja: "値の逆タンジェントをラジアンで返します。"
56711
56711
  },
56712
56712
  examples: ["ATAN(1)"],
56713
56713
  samples: [
@@ -56716,23 +56716,23 @@ var atanFunction = {
56716
56716
  output: 0,
56717
56717
  description: {
56718
56718
  en: "Arctangent of 0 is 0 radians",
56719
- ja: "0\u306E\u9006\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u306F0\u30E9\u30B8\u30A2\u30F3"
56719
+ ja: "0の逆タンジェントは0ラジアン"
56720
56720
  }
56721
56721
  },
56722
56722
  {
56723
56723
  input: "ATAN(1)",
56724
56724
  output: 0.7854,
56725
56725
  description: {
56726
- en: "Arctangent of 1 is \u03C0/4 (approximately 0.7854)",
56727
- ja: "1\u306E\u9006\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u306F\u03C0/4\uFF08\u7D040.7854\uFF09"
56726
+ en: "Arctangent of 1 is π/4 (approximately 0.7854)",
56727
+ ja: "1の逆タンジェントはπ/4(約0.7854"
56728
56728
  }
56729
56729
  },
56730
56730
  {
56731
56731
  input: "ATAN(-1)",
56732
56732
  output: -0.7854,
56733
56733
  description: {
56734
- en: "Arctangent of -1 is -\u03C0/4 (approximately -0.7854)",
56735
- ja: "-1\u306E\u9006\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u306F-\u03C0/4\uFF08\u7D04-0.7854\uFF09"
56734
+ en: "Arctangent of -1 is -π/4 (approximately -0.7854)",
56735
+ ja: "-1の逆タンジェントは-π/4(約-0.7854"
56736
56736
  }
56737
56737
  }
56738
56738
  ],
@@ -56754,7 +56754,7 @@ var sinhFunction = {
56754
56754
  category: "engineering",
56755
56755
  description: {
56756
56756
  en: "Returns the hyperbolic sine of a number.",
56757
- ja: "\u6570\u5024\u306E\u53CC\u66F2\u7DDA\u30B5\u30A4\u30F3\u3092\u8FD4\u3057\u307E\u3059\u3002"
56757
+ ja: "数値の双曲線サインを返します。"
56758
56758
  },
56759
56759
  examples: ["SINH(0.5)"],
56760
56760
  samples: [
@@ -56763,7 +56763,7 @@ var sinhFunction = {
56763
56763
  output: 0,
56764
56764
  description: {
56765
56765
  en: "Hyperbolic sine of 0 is 0",
56766
- ja: "0\u306E\u53CC\u66F2\u7DDA\u30B5\u30A4\u30F3\u306F0"
56766
+ ja: "0の双曲線サインは0"
56767
56767
  }
56768
56768
  },
56769
56769
  {
@@ -56771,7 +56771,7 @@ var sinhFunction = {
56771
56771
  output: 1.1752,
56772
56772
  description: {
56773
56773
  en: "Hyperbolic sine of 1 is approximately 1.1752",
56774
- ja: "1\u306E\u53CC\u66F2\u7DDA\u30B5\u30A4\u30F3\u306F\u7D041.1752"
56774
+ ja: "1の双曲線サインは約1.1752"
56775
56775
  }
56776
56776
  },
56777
56777
  {
@@ -56779,7 +56779,7 @@ var sinhFunction = {
56779
56779
  output: -1.1752,
56780
56780
  description: {
56781
56781
  en: "Hyperbolic sine of -1 is approximately -1.1752",
56782
- ja: "-1\u306E\u53CC\u66F2\u7DDA\u30B5\u30A4\u30F3\u306F\u7D04-1.1752"
56782
+ ja: "-1の双曲線サインは約-1.1752"
56783
56783
  }
56784
56784
  }
56785
56785
  ],
@@ -56794,7 +56794,7 @@ var coshFunction = {
56794
56794
  category: "engineering",
56795
56795
  description: {
56796
56796
  en: "Returns the hyperbolic cosine of a number.",
56797
- ja: "\u6570\u5024\u306E\u53CC\u66F2\u7DDA\u30B3\u30B5\u30A4\u30F3\u3092\u8FD4\u3057\u307E\u3059\u3002"
56797
+ ja: "数値の双曲線コサインを返します。"
56798
56798
  },
56799
56799
  examples: ["COSH(0.5)"],
56800
56800
  samples: [
@@ -56803,7 +56803,7 @@ var coshFunction = {
56803
56803
  output: 1,
56804
56804
  description: {
56805
56805
  en: "Hyperbolic cosine of 0 is 1",
56806
- ja: "0\u306E\u53CC\u66F2\u7DDA\u30B3\u30B5\u30A4\u30F3\u306F1"
56806
+ ja: "0の双曲線コサインは1"
56807
56807
  }
56808
56808
  },
56809
56809
  {
@@ -56811,7 +56811,7 @@ var coshFunction = {
56811
56811
  output: 1.5431,
56812
56812
  description: {
56813
56813
  en: "Hyperbolic cosine of 1 is approximately 1.5431",
56814
- ja: "1\u306E\u53CC\u66F2\u7DDA\u30B3\u30B5\u30A4\u30F3\u306F\u7D041.5431"
56814
+ ja: "1の双曲線コサインは約1.5431"
56815
56815
  }
56816
56816
  },
56817
56817
  {
@@ -56819,7 +56819,7 @@ var coshFunction = {
56819
56819
  output: 3.7622,
56820
56820
  description: {
56821
56821
  en: "Hyperbolic cosine of 2 is approximately 3.7622",
56822
- ja: "2\u306E\u53CC\u66F2\u7DDA\u30B3\u30B5\u30A4\u30F3\u306F\u7D043.7622"
56822
+ ja: "2の双曲線コサインは約3.7622"
56823
56823
  }
56824
56824
  }
56825
56825
  ],
@@ -56834,7 +56834,7 @@ var tanhFunction = {
56834
56834
  category: "engineering",
56835
56835
  description: {
56836
56836
  en: "Returns the hyperbolic tangent of a number.",
56837
- ja: "\u6570\u5024\u306E\u53CC\u66F2\u7DDA\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u3092\u8FD4\u3057\u307E\u3059\u3002"
56837
+ ja: "数値の双曲線タンジェントを返します。"
56838
56838
  },
56839
56839
  examples: ["TANH(0.5)"],
56840
56840
  samples: [
@@ -56843,7 +56843,7 @@ var tanhFunction = {
56843
56843
  output: 0,
56844
56844
  description: {
56845
56845
  en: "Hyperbolic tangent of 0 is 0",
56846
- ja: "0\u306E\u53CC\u66F2\u7DDA\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u306F0"
56846
+ ja: "0の双曲線タンジェントは0"
56847
56847
  }
56848
56848
  },
56849
56849
  {
@@ -56851,7 +56851,7 @@ var tanhFunction = {
56851
56851
  output: 0.7616,
56852
56852
  description: {
56853
56853
  en: "Hyperbolic tangent of 1 is approximately 0.7616",
56854
- ja: "1\u306E\u53CC\u66F2\u7DDA\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u306F\u7D040.7616"
56854
+ ja: "1の双曲線タンジェントは約0.7616"
56855
56855
  }
56856
56856
  },
56857
56857
  {
@@ -56859,7 +56859,7 @@ var tanhFunction = {
56859
56859
  output: 0.964,
56860
56860
  description: {
56861
56861
  en: "Hyperbolic tangent of 2 is approximately 0.9640",
56862
- ja: "2\u306E\u53CC\u66F2\u7DDA\u30BF\u30F3\u30B8\u30A7\u30F3\u30C8\u306F\u7D040.9640"
56862
+ ja: "2の双曲線タンジェントは約0.9640"
56863
56863
  }
56864
56864
  }
56865
56865
  ],
@@ -56883,7 +56883,7 @@ var degreesFunction = {
56883
56883
  category: "engineering",
56884
56884
  description: {
56885
56885
  en: "Converts radians to degrees.",
56886
- ja: "\u30E9\u30B8\u30A2\u30F3\u5024\u3092\u5EA6\u306B\u5909\u63DB\u3057\u307E\u3059\u3002"
56886
+ ja: "ラジアン値を度に変換します。"
56887
56887
  },
56888
56888
  examples: ["DEGREES(PI())"],
56889
56889
  samples: [
@@ -56892,23 +56892,23 @@ var degreesFunction = {
56892
56892
  output: 0,
56893
56893
  description: {
56894
56894
  en: "0 radians equals 0 degrees",
56895
- ja: "0\u30E9\u30B8\u30A2\u30F3\u306F0\u5EA6"
56895
+ ja: "0ラジアンは0度"
56896
56896
  }
56897
56897
  },
56898
56898
  {
56899
56899
  input: "DEGREES(1.5708)",
56900
56900
  output: 90,
56901
56901
  description: {
56902
- en: "\u03C0/2 radians (approximately 1.5708) equals 90 degrees",
56903
- ja: "\u03C0/2\u30E9\u30B8\u30A2\u30F3\uFF08\u7D041.5708\uFF09\u306F90\u5EA6"
56902
+ en: "π/2 radians (approximately 1.5708) equals 90 degrees",
56903
+ ja: "π/2ラジアン(約1.5708)は90度"
56904
56904
  }
56905
56905
  },
56906
56906
  {
56907
56907
  input: "DEGREES(3.14159)",
56908
56908
  output: 180,
56909
56909
  description: {
56910
- en: "\u03C0 radians (approximately 3.14159) equals 180 degrees",
56911
- ja: "\u03C0\u30E9\u30B8\u30A2\u30F3\uFF08\u7D043.14159\uFF09\u306F180\u5EA6"
56910
+ en: "π radians (approximately 3.14159) equals 180 degrees",
56911
+ ja: "πラジアン(約3.14159)は180度"
56912
56912
  }
56913
56913
  }
56914
56914
  ],
@@ -56923,7 +56923,7 @@ var radiansFunction = {
56923
56923
  category: "engineering",
56924
56924
  description: {
56925
56925
  en: "Converts degrees to radians.",
56926
- ja: "\u5EA6\u3092\u30E9\u30B8\u30A2\u30F3\u5024\u306B\u5909\u63DB\u3057\u307E\u3059\u3002"
56926
+ ja: "度をラジアン値に変換します。"
56927
56927
  },
56928
56928
  examples: ["RADIANS(180)"],
56929
56929
  samples: [
@@ -56932,23 +56932,23 @@ var radiansFunction = {
56932
56932
  output: 0,
56933
56933
  description: {
56934
56934
  en: "0 degrees equals 0 radians",
56935
- ja: "0\u5EA6\u306F0\u30E9\u30B8\u30A2\u30F3"
56935
+ ja: "0度は0ラジアン"
56936
56936
  }
56937
56937
  },
56938
56938
  {
56939
56939
  input: "RADIANS(90)",
56940
56940
  output: 1.5708,
56941
56941
  description: {
56942
- en: "90 degrees equals \u03C0/2 radians (approximately 1.5708)",
56943
- ja: "90\u5EA6\u306F\u03C0/2\u30E9\u30B8\u30A2\u30F3\uFF08\u7D041.5708\uFF09"
56942
+ en: "90 degrees equals π/2 radians (approximately 1.5708)",
56943
+ ja: "90度はπ/2ラジアン(約1.5708"
56944
56944
  }
56945
56945
  },
56946
56946
  {
56947
56947
  input: "RADIANS(180)",
56948
56948
  output: 3.14159,
56949
56949
  description: {
56950
- en: "180 degrees equals \u03C0 radians (approximately 3.14159)",
56951
- ja: "180\u5EA6\u306F\u03C0\u30E9\u30B8\u30A2\u30F3\uFF08\u7D043.14159\uFF09"
56950
+ en: "180 degrees equals π radians (approximately 3.14159)",
56951
+ ja: "180度はπラジアン(約3.14159"
56952
56952
  }
56953
56953
  }
56954
56954
  ],
@@ -56996,7 +56996,7 @@ var besseliFunction = {
56996
56996
  category: "engineering",
56997
56997
  description: {
56998
56998
  en: "Returns the modified Bessel function of the first kind.",
56999
- ja: "\u7B2C1\u7A2E\u5909\u5F62\u30D9\u30C3\u30BB\u30EB\u95A2\u6570\u3092\u8FD4\u3057\u307E\u3059\u3002"
56999
+ ja: "第1種変形ベッセル関数を返します。"
57000
57000
  },
57001
57001
  examples: ["BESSELI(1, 0)", "BESSELI(2, 1.5)"],
57002
57002
  samples: [
@@ -57004,24 +57004,24 @@ var besseliFunction = {
57004
57004
  input: "BESSELI(0, 0)",
57005
57005
  output: 1,
57006
57006
  description: {
57007
- en: "Modified Bessel I\u2080(0) equals 1",
57008
- ja: "\u5909\u5F62\u30D9\u30C3\u30BB\u30EBI\u2080(0)\u306F1"
57007
+ en: "Modified Bessel I(0) equals 1",
57008
+ ja: "変形ベッセルI₀(0)は1"
57009
57009
  }
57010
57010
  },
57011
57011
  {
57012
57012
  input: "BESSELI(1, 0)",
57013
57013
  output: 1.2661,
57014
57014
  description: {
57015
- en: "Modified Bessel I\u2080(1) is approximately 1.2661",
57016
- ja: "\u5909\u5F62\u30D9\u30C3\u30BB\u30EBI\u2080(1)\u306F\u7D041.2661"
57015
+ en: "Modified Bessel I(1) is approximately 1.2661",
57016
+ ja: "変形ベッセルI₀(1)は約1.2661"
57017
57017
  }
57018
57018
  },
57019
57019
  {
57020
57020
  input: "BESSELI(1, 1)",
57021
57021
  output: 0.5652,
57022
57022
  description: {
57023
- en: "Modified Bessel I\u2081(1) is approximately 0.5652",
57024
- ja: "\u5909\u5F62\u30D9\u30C3\u30BB\u30EBI\u2081(1)\u306F\u7D040.5652"
57023
+ en: "Modified Bessel I(1) is approximately 0.5652",
57024
+ ja: "変形ベッセルI₁(1)は約0.5652"
57025
57025
  }
57026
57026
  }
57027
57027
  ],
@@ -57043,7 +57043,7 @@ var besseljFunction = {
57043
57043
  category: "engineering",
57044
57044
  description: {
57045
57045
  en: "Returns the Bessel function of the first kind.",
57046
- ja: "\u7B2C1\u7A2E\u30D9\u30C3\u30BB\u30EB\u95A2\u6570\u3092\u8FD4\u3057\u307E\u3059\u3002"
57046
+ ja: "第1種ベッセル関数を返します。"
57047
57047
  },
57048
57048
  examples: ["BESSELJ(0, 1)", "BESSELJ(1, 2.5)"],
57049
57049
  samples: [
@@ -57051,24 +57051,24 @@ var besseljFunction = {
57051
57051
  input: "BESSELJ(0, 0)",
57052
57052
  output: 1,
57053
57053
  description: {
57054
- en: "Bessel J\u2080(0) equals 1",
57055
- ja: "\u30D9\u30C3\u30BB\u30EBJ\u2080(0)\u306F1"
57054
+ en: "Bessel J(0) equals 1",
57055
+ ja: "ベッセルJ₀(0)は1"
57056
57056
  }
57057
57057
  },
57058
57058
  {
57059
57059
  input: "BESSELJ(1, 0)",
57060
57060
  output: 0.7652,
57061
57061
  description: {
57062
- en: "Bessel J\u2080(1) is approximately 0.7652",
57063
- ja: "\u30D9\u30C3\u30BB\u30EBJ\u2080(1)\u306F\u7D040.7652"
57062
+ en: "Bessel J(1) is approximately 0.7652",
57063
+ ja: "ベッセルJ₀(1)は約0.7652"
57064
57064
  }
57065
57065
  },
57066
57066
  {
57067
57067
  input: "BESSELJ(1, 1)",
57068
57068
  output: 0.4401,
57069
57069
  description: {
57070
- en: "Bessel J\u2081(1) is approximately 0.4401",
57071
- ja: "\u30D9\u30C3\u30BB\u30EBJ\u2081(1)\u306F\u7D040.4401"
57070
+ en: "Bessel J(1) is approximately 0.4401",
57071
+ ja: "ベッセルJ₁(1)は約0.4401"
57072
57072
  }
57073
57073
  }
57074
57074
  ],
@@ -57092,7 +57092,7 @@ var deltaFunction = {
57092
57092
  category: "engineering",
57093
57093
  description: {
57094
57094
  en: "Tests whether two numbers are equal.",
57095
- ja: "2\u3064\u306E\u6570\u5024\u304C\u7B49\u3057\u3044\u304B\u3069\u3046\u304B\u3092\u5224\u5B9A\u3057\u307E\u3059\u3002"
57095
+ ja: "2つの数値が等しいかどうかを判定します。"
57096
57096
  },
57097
57097
  examples: ["DELTA(5, 5)", "DELTA(3)"],
57098
57098
  samples: [
@@ -57101,7 +57101,7 @@ var deltaFunction = {
57101
57101
  output: 1,
57102
57102
  description: {
57103
57103
  en: "Returns 1 when numbers are equal",
57104
- ja: "\u6570\u5024\u304C\u7B49\u3057\u3044\u3068\u304D\u306F1\u3092\u8FD4\u3059"
57104
+ ja: "数値が等しいときは1を返す"
57105
57105
  }
57106
57106
  },
57107
57107
  {
@@ -57109,7 +57109,7 @@ var deltaFunction = {
57109
57109
  output: 0,
57110
57110
  description: {
57111
57111
  en: "Returns 0 when numbers are different",
57112
- ja: "\u6570\u5024\u304C\u7570\u306A\u308B\u3068\u304D\u306F0\u3092\u8FD4\u3059"
57112
+ ja: "数値が異なるときは0を返す"
57113
57113
  }
57114
57114
  },
57115
57115
  {
@@ -57117,7 +57117,7 @@ var deltaFunction = {
57117
57117
  output: 1,
57118
57118
  description: {
57119
57119
  en: "Single argument compares with 0 (returns 1 when value is 0)",
57120
- ja: "\u5F15\u65701\u3064\u306E\u5834\u5408\u306F0\u3068\u6BD4\u8F03\uFF08\u5024\u304C0\u306E\u5834\u5408\u306F1\u3092\u8FD4\u3059\uFF09"
57120
+ ja: "引数1つの場合は0と比較(値が0の場合は1を返す)"
57121
57121
  }
57122
57122
  }
57123
57123
  ],
@@ -57197,7 +57197,7 @@ var erfFunction = {
57197
57197
  category: "engineering",
57198
57198
  description: {
57199
57199
  en: "Returns the integral of the Gaussian distribution.",
57200
- ja: "\u30AC\u30A6\u30B9\u5206\u5E03\u306E\u7A4D\u5206\u5024\uFF08\u8AA4\u5DEE\u95A2\u6570\uFF09\u3092\u8FD4\u3057\u307E\u3059\u3002"
57200
+ ja: "ガウス分布の積分値(誤差関数)を返します。"
57201
57201
  },
57202
57202
  examples: ["ERF(1)", "ERF(0, 1)"],
57203
57203
  samples: [
@@ -57206,7 +57206,7 @@ var erfFunction = {
57206
57206
  output: 0,
57207
57207
  description: {
57208
57208
  en: "Error function of 0 is 0",
57209
- ja: "0\u306E\u8AA4\u5DEE\u95A2\u6570\u306F0"
57209
+ ja: "0の誤差関数は0"
57210
57210
  }
57211
57211
  },
57212
57212
  {
@@ -57214,7 +57214,7 @@ var erfFunction = {
57214
57214
  output: 0.8427,
57215
57215
  description: {
57216
57216
  en: "Error function of 1 is approximately 0.8427",
57217
- ja: "1\u306E\u8AA4\u5DEE\u95A2\u6570\u306F\u7D040.8427"
57217
+ ja: "1の誤差関数は約0.8427"
57218
57218
  }
57219
57219
  },
57220
57220
  {
@@ -57222,7 +57222,7 @@ var erfFunction = {
57222
57222
  output: 0.8427,
57223
57223
  description: {
57224
57224
  en: "Error function between 0 and 1",
57225
- ja: "0\u304B\u30891\u307E\u3067\u306E\u8AA4\u5DEE\u95A2\u6570"
57225
+ ja: "0から1までの誤差関数"
57226
57226
  }
57227
57227
  }
57228
57228
  ],
@@ -57243,7 +57243,7 @@ var erfcFunction = {
57243
57243
  category: "engineering",
57244
57244
  description: {
57245
57245
  en: "Returns the complementary error function.",
57246
- ja: "\u76F8\u88DC\u8AA4\u5DEE\u95A2\u6570\u3092\u8FD4\u3057\u307E\u3059\u3002"
57246
+ ja: "相補誤差関数を返します。"
57247
57247
  },
57248
57248
  examples: ["ERFC(1)"],
57249
57249
  samples: [
@@ -57252,7 +57252,7 @@ var erfcFunction = {
57252
57252
  output: 1,
57253
57253
  description: {
57254
57254
  en: "Complementary error function of 0 is 1",
57255
- ja: "0\u306E\u76F8\u88DC\u8AA4\u5DEE\u95A2\u6570\u306F1"
57255
+ ja: "0の相補誤差関数は1"
57256
57256
  }
57257
57257
  },
57258
57258
  {
@@ -57260,7 +57260,7 @@ var erfcFunction = {
57260
57260
  output: 0.1573,
57261
57261
  description: {
57262
57262
  en: "Complementary error function of 1 is approximately 0.1573",
57263
- ja: "1\u306E\u76F8\u88DC\u8AA4\u5DEE\u95A2\u6570\u306F\u7D040.1573"
57263
+ ja: "1の相補誤差関数は約0.1573"
57264
57264
  }
57265
57265
  },
57266
57266
  {
@@ -57268,7 +57268,7 @@ var erfcFunction = {
57268
57268
  output: 0.0047,
57269
57269
  description: {
57270
57270
  en: "Complementary error function of 2 is approximately 0.0047",
57271
- ja: "2\u306E\u76F8\u88DC\u8AA4\u5DEE\u95A2\u6570\u306F\u7D040.0047"
57271
+ ja: "2の相補誤差関数は約0.0047"
57272
57272
  }
57273
57273
  }
57274
57274
  ],
@@ -57345,7 +57345,7 @@ var mmultFunction = {
57345
57345
  category: "matrix",
57346
57346
  description: {
57347
57347
  en: "Returns the matrix product of two arrays.",
57348
- ja: "2\u3064\u306E\u914D\u5217\u306E\u884C\u5217\u7A4D\u3092\u8FD4\u3057\u307E\u3059\u3002"
57348
+ ja: "2つの配列の行列積を返します。"
57349
57349
  },
57350
57350
  examples: ["MMULT({1,2;3,4},{5;6})", "MMULT(A1:B2, C1:D2)"],
57351
57351
  samples: [
@@ -57354,7 +57354,7 @@ var mmultFunction = {
57354
57354
  output: [[17], [39]],
57355
57355
  description: {
57356
57356
  en: "2x2 matrix multiplied by 2x1 column vector",
57357
- ja: "2x2\u884C\u5217\u30682x1\u5217\u30D9\u30AF\u30C8\u30EB\u306E\u4E57\u7B97"
57357
+ ja: "2x2行列と2x1列ベクトルの乗算"
57358
57358
  }
57359
57359
  },
57360
57360
  {
@@ -57362,7 +57362,7 @@ var mmultFunction = {
57362
57362
  output: [[13, 16]],
57363
57363
  description: {
57364
57364
  en: "1x2 row vector multiplied by 2x2 matrix",
57365
- ja: "1x2\u884C\u30D9\u30AF\u30C8\u30EB\u30682x2\u884C\u5217\u306E\u4E57\u7B97"
57365
+ ja: "1x2行ベクトルと2x2行列の乗算"
57366
57366
  }
57367
57367
  },
57368
57368
  {
@@ -57370,7 +57370,7 @@ var mmultFunction = {
57370
57370
  output: [[2, 3], [4, 5]],
57371
57371
  description: {
57372
57372
  en: "Identity matrix multiplied by 2x2 matrix",
57373
- ja: "\u5358\u4F4D\u884C\u5217\u30682x2\u884C\u5217\u306E\u4E57\u7B97"
57373
+ ja: "単位行列と2x2行列の乗算"
57374
57374
  }
57375
57375
  }
57376
57376
  ],
@@ -57448,7 +57448,7 @@ var minverseFunction = {
57448
57448
  category: "matrix",
57449
57449
  description: {
57450
57450
  en: "Returns the inverse matrix for a square array.",
57451
- ja: "\u6B63\u65B9\u884C\u5217\u306E\u9006\u884C\u5217\u3092\u8FD4\u3057\u307E\u3059\u3002"
57451
+ ja: "正方行列の逆行列を返します。"
57452
57452
  },
57453
57453
  examples: ["MINVERSE({1,2;3,4})", "MINVERSE(A1:C3)"],
57454
57454
  samples: [
@@ -57457,7 +57457,7 @@ var minverseFunction = {
57457
57457
  output: [[1, 0], [0, 1]],
57458
57458
  description: {
57459
57459
  en: "Inverse of identity matrix is itself",
57460
- ja: "\u5358\u4F4D\u884C\u5217\u306E\u9006\u884C\u5217\u306F\u81EA\u5206\u81EA\u8EAB"
57460
+ ja: "単位行列の逆行列は自分自身"
57461
57461
  }
57462
57462
  },
57463
57463
  {
@@ -57465,7 +57465,7 @@ var minverseFunction = {
57465
57465
  output: [[-2, 1], [1.5, -0.5]],
57466
57466
  description: {
57467
57467
  en: "Inverse of a 2x2 matrix",
57468
- ja: "2x2\u884C\u5217\u306E\u9006\u884C\u5217"
57468
+ ja: "2x2行列の逆行列"
57469
57469
  }
57470
57470
  },
57471
57471
  {
@@ -57473,7 +57473,7 @@ var minverseFunction = {
57473
57473
  output: [[0.5, 0], [0, 0.5]],
57474
57474
  description: {
57475
57475
  en: "Inverse of a diagonal matrix",
57476
- ja: "\u5BFE\u89D2\u884C\u5217\u306E\u9006\u884C\u5217"
57476
+ ja: "対角行列の逆行列"
57477
57477
  }
57478
57478
  }
57479
57479
  ],
@@ -57560,7 +57560,7 @@ var mdetermFunction = {
57560
57560
  category: "matrix",
57561
57561
  description: {
57562
57562
  en: "Returns the determinant of a square matrix.",
57563
- ja: "\u6B63\u65B9\u884C\u5217\u306E\u884C\u5217\u5F0F\u3092\u8FD4\u3057\u307E\u3059\u3002"
57563
+ ja: "正方行列の行列式を返します。"
57564
57564
  },
57565
57565
  examples: ["MDETERM({1,2;3,4})", "MDETERM(A1:C3)"],
57566
57566
  samples: [
@@ -57569,7 +57569,7 @@ var mdetermFunction = {
57569
57569
  output: 1,
57570
57570
  description: {
57571
57571
  en: "Determinant of identity matrix is 1",
57572
- ja: "\u5358\u4F4D\u884C\u5217\u306E\u884C\u5217\u5F0F\u306F1"
57572
+ ja: "単位行列の行列式は1"
57573
57573
  }
57574
57574
  },
57575
57575
  {
@@ -57577,7 +57577,7 @@ var mdetermFunction = {
57577
57577
  output: -2,
57578
57578
  description: {
57579
57579
  en: "Determinant of a 2x2 matrix is (1*4 - 2*3) = -2",
57580
- ja: "2x2\u884C\u5217\u306E\u884C\u5217\u5F0F\u306F(1*4 - 2*3) = -2"
57580
+ ja: "2x2行列の行列式は(1*4 - 2*3) = -2"
57581
57581
  }
57582
57582
  },
57583
57583
  {
@@ -57585,7 +57585,7 @@ var mdetermFunction = {
57585
57585
  output: 24,
57586
57586
  description: {
57587
57587
  en: "Determinant of diagonal matrix is product of diagonal (2*3*4 = 24)",
57588
- ja: "\u5BFE\u89D2\u884C\u5217\u306E\u884C\u5217\u5F0F\u306F\u5BFE\u89D2\u8981\u7D20\u306E\u7A4D(2*3*4 = 24)"
57588
+ ja: "対角行列の行列式は対角要素の積(2*3*4 = 24)"
57589
57589
  }
57590
57590
  }
57591
57591
  ],
@@ -57604,7 +57604,7 @@ var transposeFunction = {
57604
57604
  category: "matrix",
57605
57605
  description: {
57606
57606
  en: "Returns the transpose of an array.",
57607
- ja: "\u914D\u5217\u306E\u8EE2\u7F6E\u3092\u8FD4\u3057\u307E\u3059\u3002"
57607
+ ja: "配列の転置を返します。"
57608
57608
  },
57609
57609
  examples: ["TRANSPOSE({1,2,3})", "TRANSPOSE(A1:C2)"],
57610
57610
  samples: [
@@ -57613,7 +57613,7 @@ var transposeFunction = {
57613
57613
  output: [[1], [2], [3]],
57614
57614
  description: {
57615
57615
  en: "Transpose row vector to column vector",
57616
- ja: "\u884C\u30D9\u30AF\u30C8\u30EB\u3092\u5217\u30D9\u30AF\u30C8\u30EB\u306B\u8EE2\u7F6E"
57616
+ ja: "行ベクトルを列ベクトルに転置"
57617
57617
  }
57618
57618
  },
57619
57619
  {
@@ -57621,7 +57621,7 @@ var transposeFunction = {
57621
57621
  output: [[1, 3], [2, 4]],
57622
57622
  description: {
57623
57623
  en: "Transpose 2x2 matrix",
57624
- ja: "2x2\u884C\u5217\u306E\u8EE2\u7F6E"
57624
+ ja: "2x2行列の転置"
57625
57625
  }
57626
57626
  },
57627
57627
  {
@@ -57629,7 +57629,7 @@ var transposeFunction = {
57629
57629
  output: [[1, 4], [2, 5], [3, 6]],
57630
57630
  description: {
57631
57631
  en: "Transpose 2x3 to 3x2 matrix",
57632
- ja: "2x3\u884C\u5217\u30923x2\u884C\u5217\u306B\u8EE2\u7F6E"
57632
+ ja: "2x3行列を3x2行列に転置"
57633
57633
  }
57634
57634
  }
57635
57635
  ],
@@ -57686,7 +57686,7 @@ var frequencyFunction = {
57686
57686
  category: "matrix",
57687
57687
  description: {
57688
57688
  en: "Returns a frequency distribution as a vertical array.",
57689
- ja: "\u5EA6\u6570\u5206\u5E03\u3092\u7E26\u65B9\u5411\u306E\u914D\u5217\u3068\u3057\u3066\u8FD4\u3057\u307E\u3059\u3002"
57689
+ ja: "度数分布を縦方向の配列として返します。"
57690
57690
  },
57691
57691
  examples: ["FREQUENCY(A1:A10, B1:B3)"],
57692
57692
  samples: [
@@ -57695,7 +57695,7 @@ var frequencyFunction = {
57695
57695
  output: [[2], [2], [2]],
57696
57696
  description: {
57697
57697
  en: "Count values <=2, 2<x<=4, >4 (returns 2, 2, 2)",
57698
- ja: "\u5024\u3092<=2\u30012<x<=4\u3001>4\u3067\u30AB\u30A6\u30F3\u30C8\uFF082\u30012\u30012\u3092\u8FD4\u3059\uFF09"
57698
+ ja: "値を<=2、2<x<=4、>4でカウント(2、2、2を返す)"
57699
57699
  }
57700
57700
  },
57701
57701
  {
@@ -57703,7 +57703,7 @@ var frequencyFunction = {
57703
57703
  output: [[1], [1], [1], [1]],
57704
57704
  description: {
57705
57705
  en: "Count data in bins <=15, 15<x<=25, 25<x<=35, >35",
57706
- ja: "<=15\u300115<x<=25\u300125<x<=35\u3001>35\u306E\u7BC4\u56F2\u3067\u30C7\u30FC\u30BF\u3092\u30AB\u30A6\u30F3\u30C8"
57706
+ ja: "<=15、15<x<=25、25<x<=35、>35の範囲でデータをカウント"
57707
57707
  }
57708
57708
  },
57709
57709
  {
@@ -57711,7 +57711,7 @@ var frequencyFunction = {
57711
57711
  output: [[3], [1], [2]],
57712
57712
  description: {
57713
57713
  en: "Count values <=10 (3), 10<x<=20 (1), >20 (2)",
57714
- ja: "<=10 (3)\u300110<x<=20 (1)\u3001>20 (2)\u306E\u5024\u3092\u30AB\u30A6\u30F3\u30C8"
57714
+ ja: "<=10 (3)、10<x<=20 (1)、>20 (2)の値をカウント"
57715
57715
  }
57716
57716
  }
57717
57717
  ],
@@ -58029,7 +58029,7 @@ var xlookupFunction = {
58029
58029
  category: "lookup",
58030
58030
  description: {
58031
58031
  en: "Searches a range or array and returns an item corresponding to the first match.",
58032
- ja: "\u7BC4\u56F2/\u914D\u5217\u3092\u691C\u7D22\u3057\u3001\u4E00\u81F4\u3059\u308B\u8981\u7D20\u306B\u5BFE\u5FDC\u3059\u308B\u5024\u3092\u8FD4\u3057\u307E\u3059\u3002"
58032
+ ja: "範囲/配列を検索し、一致する要素に対応する値を返します。"
58033
58033
  },
58034
58034
  examples: ["XLOOKUP(E2, C2:C7, B2:B7)", "XLOOKUP(B2, B5:B14, C5:D14)"],
58035
58035
  evaluate: (args, helpers) => {
@@ -58221,7 +58221,7 @@ var xmatchFunction = {
58221
58221
  category: "lookup",
58222
58222
  description: {
58223
58223
  en: "Returns the relative position of an item in a range/array (Excel XMATCH).",
58224
- ja: "\u7BC4\u56F2/\u914D\u5217\u5185\u3067\u306E\u9805\u76EE\u306E\u76F8\u5BFE\u4F4D\u7F6E\u3092\u8FD4\u3057\u307E\u3059\uFF08Excel XMATCH\uFF09\u3002"
58224
+ ja: "範囲/配列内での項目の相対位置を返します(Excel XMATCH)。"
58225
58225
  },
58226
58226
  examples: ["XMATCH(15000, C3:C9, -1)", 'XMATCH("Key", A1:A10)'],
58227
58227
  evaluate: (args, helpers) => {
@@ -59893,7 +59893,7 @@ function formatVerifyPretty3(data) {
59893
59893
  const lines = [`Results: ${data.passed} passed, ${data.failed} failed`];
59894
59894
  lines.push("");
59895
59895
  for (const result of data.results) {
59896
- const status = result.passed ? "\u2713" : "\u2717";
59896
+ const status = result.passed ? "" : "";
59897
59897
  lines.push(`${status} ${result.name}`);
59898
59898
  if (!result.passed) {
59899
59899
  for (const assertion of result.assertions.filter((a) => !a.passed)) {