Component | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
Glossary Glossary | 0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
datafusion
|
0 | 0 | 0 | 0 | 6 | 0 | 0 | ||
|
|||||||||
decison
|
0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
foundation | 99% | 4 | 4 | 80 | 4 | 819 | 0 | 0 | |
|
|||||||||
spider
|
0 | 0 | 0 | 0 | 37 | 0 | 0 | ||
|
|||||||||
swift
|
0 | 0 | 0 | 0 | 0 | 0 | 0 | ||
|
|||||||||
v7web | 99% | 1 | 1 | 13 | 0 | 237 | 0 | 0 | |
|
Overview
Project website | code.fineres.com/users/inter/repos/data-fusion-web/browse |
---|---|
Project maintainers |
![]() |
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 6,186 | 8,933 | 111,117 | |||
Translated | 99% | 6,181 | 99% | 8,928 | 99% | 111,024 |
Needs editing | 1% | 1 | 1% | 1 | 1% | 13 |
Read-only | 1% | 12 | 1% | 8 | 1% | 174 |
Failing checks | 17% | 1,099 | 23% | 2,142 | 33% | 37,070 |
Strings with suggestions | 0% | 0 | 0% | 0 | 0% | 0 |
Untranslated strings | 1% | 4 | 1% | 4 | 1% | 80 |
Quick numbers
8,933
Hosted words
6,186
Hosted strings
99%
Translated
3
Contributors
and previous 30 days
Trends of last 30 days
—
Hosted words
+91%
+1%
Hosted strings
+88%
—
Translated
+29%
—
Contributors
+33%
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
![]() Translation changed |
|
• 参数说明
find_text:需要查找的文本。
within_text:包含需要查找文本的文本。
start_num:指定进行查找字符的索引位置。
within_text里的索引从1开始。如果省略start_num,则假设值为1。
• 示例
FIND("I","Information")等于1。
FIND("i","Information")等于9。
FIND("o","Information",2)等于4。
FIND("o","Information",12)等于0。
FIND("o","Information",-1)返回空。
find_text: text to be found.
within_text: text containing the text to be found.
start_num: index from which the character search starts.
The index in within_text starts from 1. If start_num is left empty, 1 is used by default.
Example:
FIND("I","Information") returns 1.
FIND("i","Information") returns 9.
FIND("o","Information",2) returns 4.
FIND("o","Information",12) returns 0.
FIND("o","Information",-1) returns null.