Results 1 to 2 of 2

Thread: Stringtable.xml format question/problem

  1. #1

    Stringtable.xml format question/problem

    Question about the format of stringtable.xml. I am receiving this error in the RPT:

    Unsupported language English in stringtable

    This is the top of my stringtable.xml:

    Code:
    <Project name="POOK_GL">
    	<Package name="POOK_GL">
    	<Container name="STR_DISP">
    		<Key ID="STR_NAME_pook_GL_RG6">
    			<Original>RG-6</Original> 
    			<German>RG6</German> 
    			<English>RG-6</English> 
    			<Italian>RG6</Italian> 
    			<Spanish>RG6</Spanish> 
    			<French>RG6</French> 
    			<Czech>RG6</Czech> 
    			<Russian>РГ-6</Russian> 
    			<Polish>RG6</Polish> 
    			<Hungarian>RG6</Hungarian>
    		</Key>
     (snip)

    So I've tried removing the <English> line and I've tried removing the <Original> line. I assume I'm missing a line of code...?

  2. #2
    FIXED! Apparently the XML file I imported had trailing spaces which the XML didn't like. Removed all spaces and no more errors! Final result:

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <Project name="POOK_GL">
    	<Package name="POOK_GL">
    	<Container name="STR_DISP">
    		<Key ID="STR_NAME_pook_GL_RG6">
    			<English>RG-6</English>
    			<German>RG6</German>
    			<Italian>RG6</Italian>
    			<Spanish>RG6</Spanish>
    			<French>RG6</French>
    			<Czech>RG6</Czech>
    			<Russian>РГ-6</Russian>
    			<Polish>RG6</Polish>
    			<Hungarian>RG6</Hungarian>
    		</Key>
     (snip)...

Similar Threads

  1. DAO Stringtable XML (webbased)
    By Kochleffel in forum ARMA 2 & OA : Community Made Utilities
    Replies: 0
    Last Post: Oct 4 2011, 20:38
  2. Stringtable.xml preload
    By Wass in forum ARMA 2 & OA : MISSIONS - Editing & Scripting
    Replies: 3
    Last Post: Jan 25 2010, 03:20
  3. a2 stringtable.xml converted to csv
    By .kju [PvPscene] in forum ARMA 2 & OA : ADDONS - Configs & Scripting
    Replies: 1
    Last Post: Sep 10 2009, 09:46
  4. Squad.xml logo File format etc
    By KJAM in forum ARMA 2 & OA - MULTIPLAYER
    Replies: 8
    Last Post: Jul 27 2009, 21:47
  5. STRINGTABLE.String manipulations / Format ["%1.1"]
    By shlomo in forum OFP : MISSION EDITING & SCRIPTING
    Replies: 3
    Last Post: Aug 23 2004, 11:52

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •