Check today's New Posts or your PMs

Welcome Guest ( Log In | Register )

Tags
This content has not been tagged yet
 Digg this topic · Save to del.icio.us · Slashdot It · Post to Technorati · Post to Furl · Submit to Reddit · Share on Facebook · Fark It · Googlize This Post · Add to ma.gnolia · Tag to Wink · Add to MyWeb · Add to Netscape
Reply to this topicStart new topic
Polish special char test ąśżźćółĄŚŻŹĆ
yacenty
post Dec 14 2007, 05:16 PM
Post #1


Advanced Member
***

Group: Customers
Posts: 456
Joined: 14-July 07
From: Wrocław / Poland
Member No.: 335



only test

could You improve it?
in the title there is:
ąśżźćółĄŚŻŹĆ
but in the generated link Polish-special-char-test-Ae-t2973.html

I know that on polish ipb board it were described how to solve it for FURL script

regards,
YacentY

This post has been edited by yacenty: Dec 14 2007, 05:18 PM
Go to the top of the page
 
+Quote Post
admin
post Dec 15 2007, 05:28 AM
Post #2


Administrator
***

Group: Root Admin
Posts: 4,946
Joined: 25-January 07
Member No.: 1



Our software supports transliteration that allows for the characters to be converted into ASCII characters - it just needs to be configured in the transliteration file (there are too many languages, none of which we speak besides English, for us to configure each one by default).

Example default file

CODE
$text = str_replace( "ä", "ae", $text);
$text = str_replace( "ö", "oe", $text);
$text = str_replace( "ü", "ue", $text);
$text = str_replace( "Ä", "Ae", $text);
$text = str_replace( "Ö", "Oe", $text);
$text = str_replace( "Ü", "Ue", $text);

$text = str_replace( "ß", "ss", $text);    

$text = str_replace( "é", "e", $text );
$text = str_replace( "è", "e", $text );
$text = str_replace( "à", "a", $text );
$text = str_replace( "û", "u", $text );
$text = str_replace( "ç", "c", $text );
$text = str_replace( "ê", "e", $text );
Go to the top of the page
 
+Quote Post
Guest_goseo*
post Jan 5 2008, 10:11 AM
Post #3





Guests






QUOTE (admin @ Dec 15 2007, 11:38 AM) *
Our software supports transliteration that allows for the characters to be converted into ASCII characters - it just needs to be configured in the transliteration file (there are too many languages, none of which we speak besides English, for us to configure each one by default).

Example default file

CODE
$text = str_replace( "ä", "ae", $text);
  $text = str_replace( "ö", "oe", $text);
  $text = str_replace( "ü", "ue", $text);
  $text = str_replace( "Ä", "Ae", $text);
  $text = str_replace( "Ö", "Oe", $text);
  $text = str_replace( "Ü", "Ue", $text);
  
  $text = str_replace( "ß", "ss", $text);    
  
  $text = str_replace( "é", "e", $text );
  $text = str_replace( "è", "e", $text );
  $text = str_replace( "à", "a", $text );
  $text = str_replace( "û", "u", $text );
  $text = str_replace( "ç", "c", $text );
  $text = str_replace( "ê", "e", $text );



Where I can find this file would like to change I also as?

EDIT:

OK, I have found proper file, I edited and now everything there is ok.

This post has been edited by goseo: Jan 5 2008, 02:43 PM
Go to the top of the page
 
+Quote Post
admin
post Jan 6 2008, 04:49 AM
Post #4


Administrator
***

Group: Root Admin
Posts: 4,946
Joined: 25-January 07
Member No.: 1



QUOTE (goseo @ Jan 5 2008, 10:21 AM) *
Where I can find this file would like to change I also as?

EDIT:

OK, I have found proper file, I edited and now everything there is ok.


Great. smile.gif
Go to the top of the page
 
+Quote Post
Donald
post Jan 14 2008, 02:44 PM
Post #5


Advanced Member
***

Group: Customers
Posts: 42
Joined: 4-October 07
Member No.: 511



Can we know which file it is ? biggrin.gif
I'm also really interested, having a board with different languages like Polish, German, Spanish and French.


--------------------
Go to the top of the page
 
+Quote Post
SKiZZ
post Jan 14 2008, 07:55 PM
Post #6


Advanced Member
***

Group: Customers
Posts: 209
Joined: 23-March 07
From: Birmingham, AL
Member No.: 57



I believe its translit.php
Go to the top of the page
 
+Quote Post
Donald
post Jan 15 2008, 03:22 AM
Post #7


Advanced Member
***

Group: Customers
Posts: 42
Joined: 4-October 07
Member No.: 511



QUOTE (SKiZZ @ Jan 15 2008, 02:05 AM) *
I believe its translit.php

Thank you, i'll take a look soon wink.gif


--------------------
Go to the top of the page
 
+Quote Post
admin
post Jan 15 2008, 05:37 AM
Post #8


Administrator
***

Group: Root Admin
Posts: 4,946
Joined: 25-January 07
Member No.: 1



Yes, cache/seo_translit.php
Go to the top of the page
 
+Quote Post
dextasy
post Jun 11 2008, 02:33 PM
Post #9


Newbie
*

Group: Customers
Posts: 9
Joined: 10-June 08
Member No.: 1,101



So, what i can change it now ? smile.gif

I have a similar problem with polish chars. How can I improve it? In the ACP i wrote variables.
Go to the top of the page
 
+Quote Post
yacenty
post Jun 12 2008, 01:24 AM
Post #10


Advanced Member
***

Group: Customers
Posts: 456
Joined: 14-July 07
From: Wrocław / Poland
Member No.: 335



Hello, where do You have problem? Could I help You somehow? - [pl] Moge ci jakos pomoc? gdzie lezy problem?[/pl]

Have You tried edit this variables in ACP? [pl] edytowałes zmiennie literki w linkach w Panelu ACP?[/pl]

Best regards
YacentY
Go to the top of the page
 
+Quote Post
admin
post Jun 12 2008, 04:46 AM
Post #11


Administrator
***

Group: Root Admin
Posts: 4,946
Joined: 25-January 07
Member No.: 1



Yes, this topic is rather old - the transliteration is actually controlled from the ACP now in the CSEO settings, rather than in the flat file previously mentioned (which no longer exists). smile.gif
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 


Collapse

> Links to this thread

Page Date Hits
polish char - Cãutare Google 15th January 2008 - 05:24 AM 1
polish script ascii - Google Search 17th January 2008 - 10:07 AM 1
community seo polish characters - Google Search 19th January 2008 - 07:05 AM 1
str_replace polish - Recherche Google 23rd January 2008 - 10:30 AM 1
Live Search: replace 28th January 2008 - 12:05 PM 1
AE text - Google Search 29th January 2008 - 11:03 PM 1
special chars test - Google Search 31st January 2008 - 02:45 AM 1
special chars in polish - Cãutare Google 8th February 2008 - 03:44 AM 1
transliteration polish - Recherche Google 9th April 2008 - 04:27 PM 1
Moved Temporarily 11th June 2008 - 03:09 PM 1
polish characters str_replace - Google Search 19th June 2008 - 06:38 AM 1
polish - Live Search 1st July 2008 - 04:49 PM 1
special char - Google Search 30th July 2008 - 04:29 AM 1


RSS Lo-Fi Version Time is now: 20th November 2008 - 07:20 PM