Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
1.7k views
in Q2A Core by
edited by
Thank you for awesome system.
I'm translating into Japanese. There is one request.
I want to gather CSS of vote-block(blue) and answer-block(orange).
Because: When translate "answer" into Japanese short string(回答), that short string(回答) is displayed without a letter being turned down.

1. vote-block

<span class="qa-netvote-count">
  <span class="qa-netvote-count-data">0</span>
  <span class="qa-netvote-count-pad">vote</span>
</span>

.qa-netvote-count-data  {
  display:block;
  font-size:20px;
  font-weight:bold;
  padding-top:1px;
}

2. answer-block

<span class="qa-a-count">
  <span class="qa-a-count-data">3</span>
  <span class="qa-a-count-pad">answer</span>
</span>

.qa-a-count-data {
  display:block;  <<<<<<===== Please add !!
  font-size:24px;
  font-weight:bold;
}

Thanks in advance.
by
Looks OK, but I'll need to check this out in more detail across all browser platforms - should have an answer in a few days.
by
Thank you gidgreen. ^^
If translation is over, I submit it. Now, 30% are finished.

2 Answers

+2 votes
by
I've looked into it, and that CSS change seems not to be a problem for English content in any browser. So once the Japanese translation is available online, I'll make a new version of Q2A available with the CSS change.

BTW, it would be great if you could also check how your Japanese translation looks with the Candy theme, and if there are any problems there. Thanks!
by
Thank you gidgreen.
Now, about 60% are finished. If translation is over, please confirm it.
And, I will test the Candy theme too. Please wait slightly. ^^
by
I tested even Candy theme. Title and value are inline at Candy theme's CSS. I tried to deal by devising translation string of "x_answers", but influence Candy Theme... ToT   If possible, i hope to consider fix in Default theme's CSS at next release with compatibility of major browsers.
Thanks in advance.
0 votes
by
edited by
I made temporary theme(Default_ja) to add 1-line to Default theme for Japanese user.

folder: qa-theme/Default_ja

file: qa-styles.css
--- SOF ---
@import url("../Default/qa-styles.css");  
/* Here is comments same as Candy theme. */
/* Answer count */
.qa-a-count-data {display:block;} /* changes is only this. */
--- EOF ---

Thanks for flexible system.
...